diff --git a/app/client/cypress/e2e/Regression/ClientSide/AdminSettings/Admin_settings_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/AdminSettings/Admin_settings_spec.ts index d7924b495df7..ce16b7bf43c7 100644 --- a/app/client/cypress/e2e/Regression/ClientSide/AdminSettings/Admin_settings_spec.ts +++ b/app/client/cypress/e2e/Regression/ClientSide/AdminSettings/Admin_settings_spec.ts @@ -206,29 +206,33 @@ describe("Admin settings page", { tags: ["@tag.Settings"] }, function () { .then(($text) => expect($text).to.eq("Appsmith")); }); - it("11. Verify all admin setting sections are accessible", () => { - cy.visit("/applications", { timeout: 60000 }); - agHelper.GetNClick(adminSettingsHelper._adminSettingsBtn); - cy.wait("@getEnvVariables"); - agHelper.GetNClick(adminsSettings.generalTab); - agHelper.AssertURL(adminSettingsHelper.routes.GENERAL); - agHelper.GetNClick(adminsSettings.advancedTab); - agHelper.AssertURL(adminSettingsHelper.routes.ADVANCED); - agHelper.GetNClick(adminsSettings.authenticationTab); - agHelper.AssertURL(adminSettingsHelper.routes.AUTHENTICATION); - agHelper.GetNClick(adminsSettings.emailTab); - agHelper.AssertURL(adminSettingsHelper.routes.EMAIL); - agHelper.GetNClick(adminsSettings.developerSettingsTab); - agHelper.AssertURL(adminSettingsHelper.routes.DEVELOPER_SETTINGS); - agHelper.GetNClick(adminsSettings.versionTab); - agHelper.AssertURL(adminSettingsHelper.routes.VERSION); - agHelper.GetNClick(adminsSettings.branding); - agHelper.AssertURL(adminSettingsHelper.routes.BRANDING); - agHelper.GetNClick(adminsSettings.provisioning); - agHelper.AssertURL(adminSettingsHelper.routes.PROVISIONING); - agHelper.GetNClick(adminsSettings.accessControl); - agHelper.AssertURL(adminSettingsHelper.routes.ACCESS_CONTROL); - agHelper.GetNClick(adminsSettings.auditLogs); - agHelper.AssertURL(adminSettingsHelper.routes.AUDIT_LOGS); - }); + it( + "11. Verify all admin setting sections are accessible", + { tags: ["@tag.excludeForAirgap"] }, + () => { + cy.visit("/applications", { timeout: 60000 }); + agHelper.GetNClick(adminSettingsHelper._adminSettingsBtn); + cy.wait("@getEnvVariables"); + agHelper.GetNClick(adminsSettings.generalTab); + agHelper.AssertURL(adminSettingsHelper.routes.GENERAL); + agHelper.GetNClick(adminsSettings.advancedTab); + agHelper.AssertURL(adminSettingsHelper.routes.ADVANCED); + agHelper.GetNClick(adminsSettings.authenticationTab); + agHelper.AssertURL(adminSettingsHelper.routes.AUTHENTICATION); + agHelper.GetNClick(adminsSettings.emailTab); + agHelper.AssertURL(adminSettingsHelper.routes.EMAIL); + agHelper.GetNClick(adminsSettings.developerSettingsTab); + agHelper.AssertURL(adminSettingsHelper.routes.DEVELOPER_SETTINGS); + agHelper.GetNClick(adminsSettings.versionTab); + agHelper.AssertURL(adminSettingsHelper.routes.VERSION); + agHelper.GetNClick(adminsSettings.branding); + agHelper.AssertURL(adminSettingsHelper.routes.BRANDING); + agHelper.GetNClick(adminsSettings.provisioning); + agHelper.AssertURL(adminSettingsHelper.routes.PROVISIONING); + agHelper.GetNClick(adminsSettings.accessControl); + agHelper.AssertURL(adminSettingsHelper.routes.ACCESS_CONTROL); + agHelper.GetNClick(adminsSettings.auditLogs); + agHelper.AssertURL(adminSettingsHelper.routes.AUDIT_LOGS); + }, + ); }); 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 000000000000..ea2d5aa1d042 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_ForkApp_spec.ts @@ -0,0 +1,59 @@ +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 with Jsobjects", {}, function () { + //https://github.com/appsmithorg/appsmith/issues/36277 + it("1. Fork app and verify all the elements", () => { + homePage.ImportApp("jsObjectTesting.json"); + agHelper.GetNClick(homePage._applicationName); + agHelper.GetNClickByContains; + agHelper.GetNClickByContains( + HomePage.applicationEditMenu, + "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/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 000000000000..a85b257f5686 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/JSObject/JSObject_Tests_spec.ts @@ -0,0 +1,293 @@ +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"); + }); + + 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); + }); + }); + }); + //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); + }); + + //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); + 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/fixtures/jsObjectTesting.json b/app/client/cypress/fixtures/jsObjectTesting.json new file mode 100644 index 000000000000..46fda77fa276 --- /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/Objects/CommonLocators.ts b/app/client/cypress/support/Objects/CommonLocators.ts index ebf4f547697e..49b61efaaa38 100644 --- a/app/client/cypress/support/Objects/CommonLocators.ts +++ b/app/client/cypress/support/Objects/CommonLocators.ts @@ -346,4 +346,7 @@ export class CommonLocators { _showBoundary = ".show-boundary"; _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}"]`; } diff --git a/app/client/cypress/support/Pages/EntityExplorer.ts b/app/client/cypress/support/Pages/EntityExplorer.ts index aa68aa3b8c84..5166d520622e 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/HomePage.ts b/app/client/cypress/support/Pages/HomePage.ts index b482db49d58b..b231b0f12dd1 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() { diff --git a/app/client/cypress/support/Pages/JSEditor.ts b/app/client/cypress/support/Pages/JSEditor.ts index 957ca929a5c4..2a5e073913b4 100644 --- a/app/client/cypress/support/Pages/JSEditor.ts +++ b/app/client/cypress/support/Pages/JSEditor.ts @@ -90,6 +90,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 diff --git a/app/client/src/PluginActionEditor/components/PluginActionResponse/PluginActionResponse.tsx b/app/client/src/PluginActionEditor/components/PluginActionResponse/PluginActionResponse.tsx index e450a2b7821b..ef8fdb3f4558 100644 --- a/app/client/src/PluginActionEditor/components/PluginActionResponse/PluginActionResponse.tsx +++ b/app/client/src/PluginActionEditor/components/PluginActionResponse/PluginActionResponse.tsx @@ -9,20 +9,15 @@ import { DEBUGGER_TAB_KEYS } from "components/editorComponents/Debugger/constant import AnalyticsUtil from "ee/utils/AnalyticsUtil"; import { usePluginActionResponseTabs } from "./hooks"; import { usePluginActionContext } from "../../PluginActionContext"; -import { doesPluginRequireDatasource } from "ee/entities/Engine/actionHelpers"; -import useShowSchema from "./hooks/useShowSchema"; import { actionResponseDisplayDataFormats } from "pages/Editor/utils"; -import { PluginType } from "entities/Action"; import { hasFailed } from "./utils"; +import { useDefaultTab } from "ee/PluginActionEditor/components/PluginActionResponse/hooks/useDefaultTab"; function PluginActionResponse() { const dispatch = useDispatch(); - const { actionResponse, plugin } = usePluginActionContext(); + const { actionResponse } = usePluginActionContext(); const tabs = usePluginActionResponseTabs(); - const pluginRequireDatasource = doesPluginRequireDatasource(plugin); - - const showSchema = useShowSchema(plugin?.id || "") && pluginRequireDatasource; // TODO combine API and Query Debugger state const { open, responseTabHeight, selectedTab } = useSelector( @@ -75,26 +70,7 @@ function PluginActionResponse() { [executionFailed, dispatch], ); - useEffect( - function openDefaultTabWhenNoTabIsSelected() { - if (showSchema && !selectedTab) { - dispatch( - setPluginActionEditorDebuggerState({ - open: true, - selectedTab: DEBUGGER_TAB_KEYS.DATASOURCE_TAB, - }), - ); - } else if (plugin.type === PluginType.API && !selectedTab) { - dispatch( - setPluginActionEditorDebuggerState({ - open: true, - selectedTab: DEBUGGER_TAB_KEYS.RESPONSE_TAB, - }), - ); - } - }, - [showSchema, selectedTab, dispatch, plugin.type], - ); + useDefaultTab(); const toggleHide = useCallback( () => dispatch(setPluginActionEditorDebuggerState({ open: !open })), diff --git a/app/client/src/ce/PluginActionEditor/components/PluginActionResponse/hooks/useDefaultTab.tsx b/app/client/src/ce/PluginActionEditor/components/PluginActionResponse/hooks/useDefaultTab.tsx new file mode 100644 index 000000000000..399b32064751 --- /dev/null +++ b/app/client/src/ce/PluginActionEditor/components/PluginActionResponse/hooks/useDefaultTab.tsx @@ -0,0 +1,40 @@ +import { useEffect } from "react"; +import { useDispatch, useSelector } from "react-redux"; +import { DEBUGGER_TAB_KEYS } from "components/editorComponents/Debugger/constants"; +import { PluginType } from "entities/Action"; +import { usePluginActionContext } from "PluginActionEditor"; +import useShowSchema from "PluginActionEditor/components/PluginActionResponse/hooks/useShowSchema"; +import { + getPluginActionDebuggerState, + setPluginActionEditorDebuggerState, +} from "PluginActionEditor/store"; +import { doesPluginRequireDatasource } from "ee/entities/Engine/actionHelpers"; + +export function useDefaultTab() { + const dispatch = useDispatch(); + const { plugin } = usePluginActionContext(); + const pluginRequireDatasource = doesPluginRequireDatasource(plugin); + const showSchema = useShowSchema(plugin?.id || "") && pluginRequireDatasource; + const { selectedTab } = useSelector(getPluginActionDebuggerState); + + useEffect( + function openDefaultTabWhenNoTabIsSelected() { + if (showSchema && !selectedTab) { + dispatch( + setPluginActionEditorDebuggerState({ + open: true, + selectedTab: DEBUGGER_TAB_KEYS.DATASOURCE_TAB, + }), + ); + } else if (plugin.type === PluginType.API && !selectedTab) { + dispatch( + setPluginActionEditorDebuggerState({ + open: true, + selectedTab: DEBUGGER_TAB_KEYS.RESPONSE_TAB, + }), + ); + } + }, + [showSchema, selectedTab, dispatch, plugin.type], + ); +} diff --git a/app/client/src/ee/PluginActionEditor/components/PluginActionResponse/hooks/useDefaultTab.tsx b/app/client/src/ee/PluginActionEditor/components/PluginActionResponse/hooks/useDefaultTab.tsx new file mode 100644 index 000000000000..82827533ab5c --- /dev/null +++ b/app/client/src/ee/PluginActionEditor/components/PluginActionResponse/hooks/useDefaultTab.tsx @@ -0,0 +1,5 @@ +import { useDefaultTab as CE_useDefaultTab } from "ce/PluginActionEditor/components/PluginActionResponse/hooks/useDefaultTab"; + +export function useDefaultTab() { + return CE_useDefaultTab(); +} diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/CentralGitServiceCE.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/CentralGitServiceCE.java index a084fbc51ff5..23e668a80ea9 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/CentralGitServiceCE.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/CentralGitServiceCE.java @@ -9,6 +9,7 @@ import com.appsmith.server.dtos.ArtifactImportDTO; import com.appsmith.server.dtos.AutoCommitResponseDTO; import com.appsmith.server.dtos.GitConnectDTO; +import com.appsmith.server.dtos.GitPullDTO; import reactor.core.publisher.Mono; import java.util.List; @@ -42,13 +43,14 @@ Mono fetchRemoteChanges( Mono getStatus( String branchedArtifactId, boolean compareRemote, ArtifactType artifactType, GitType gitType); + Mono pullArtifact(String branchedArtifactId, ArtifactType artifactType, GitType gitType); + Mono checkoutReference( String referenceArtifactId, - String referenceToBeCheckedOut, + GitRefDTO gitRefDTO, boolean addFileLock, ArtifactType artifactType, - GitType gitType, - RefType refType); + GitType gitType); Mono createReference( String referencedArtifactId, GitRefDTO refDTO, ArtifactType artifactType, GitType gitType); diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/CentralGitServiceCEImpl.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/CentralGitServiceCEImpl.java index d235ed7611d7..460be19c7813 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/CentralGitServiceCEImpl.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/CentralGitServiceCEImpl.java @@ -3,6 +3,7 @@ import com.appsmith.external.constants.AnalyticsEvents; import com.appsmith.external.dtos.GitRefDTO; import com.appsmith.external.dtos.GitStatusDTO; +import com.appsmith.external.dtos.MergeStatusDTO; import com.appsmith.external.git.constants.GitConstants; import com.appsmith.external.git.constants.GitSpan; import com.appsmith.external.git.constants.ce.RefType; @@ -28,6 +29,7 @@ import com.appsmith.server.dtos.ArtifactImportDTO; import com.appsmith.server.dtos.AutoCommitResponseDTO; import com.appsmith.server.dtos.GitConnectDTO; +import com.appsmith.server.dtos.GitPullDTO; import com.appsmith.server.exceptions.AppsmithError; import com.appsmith.server.exceptions.AppsmithException; import com.appsmith.server.exports.internal.ExportService; @@ -63,6 +65,7 @@ import reactor.util.function.Tuple3; import java.io.IOException; +import java.nio.file.Path; import java.time.Instant; import java.util.ArrayList; import java.util.List; @@ -349,36 +352,40 @@ private boolean checkIsDatasourceNameConflict( @Override public Mono checkoutReference( String referenceArtifactId, - String referenceToBeCheckedOut, + GitRefDTO gitRefDTO, boolean addFileLock, ArtifactType artifactType, - GitType gitType, - RefType refType) { + GitType gitType) { - if (!hasText(referenceToBeCheckedOut)) { + if (gitRefDTO == null || !hasText(gitRefDTO.getRefName())) { return Mono.error(new AppsmithException(AppsmithError.INVALID_PARAMETER, FieldName.REF_NAME)); } + if (gitRefDTO.getRefType() == null) { + return Mono.error(new AppsmithException(AppsmithError.INVALID_PARAMETER, REF_TYPE)); + } + Mono> baseAndBranchedArtifactMono = getBaseAndBranchedArtifacts(referenceArtifactId, artifactType); return baseAndBranchedArtifactMono.flatMap(artifactTuples -> { Artifact sourceArtifact = artifactTuples.getT1(); - return checkoutReference(sourceArtifact, referenceToBeCheckedOut, addFileLock, gitType, refType); + return checkoutReference(sourceArtifact, gitRefDTO, addFileLock, gitType); }); } protected Mono checkoutReference( - Artifact baseArtifact, - String referenceToBeCheckedOut, - boolean addFileLock, - GitType gitType, - RefType refType) { + Artifact baseArtifact, GitRefDTO gitRefDTO, boolean addFileLock, GitType gitType) { - if (!hasText(referenceToBeCheckedOut)) { + if (gitRefDTO == null || !hasText(gitRefDTO.getRefName())) { return Mono.error(new AppsmithException(AppsmithError.INVALID_PARAMETER, FieldName.REF_NAME)); } + if (gitRefDTO.getRefType() == null) { + return Mono.error(new AppsmithException(AppsmithError.INVALID_PARAMETER, REF_TYPE)); + } + + RefType refType = gitRefDTO.getRefType(); GitArtifactMetadata baseGitMetadata = baseArtifact.getGitArtifactMetadata(); if (isBaseGitMetadataInvalid(baseGitMetadata, gitType)) { @@ -386,7 +393,7 @@ protected Mono checkoutReference( } String baseArtifactId = baseGitMetadata.getDefaultArtifactId(); - final String finalRefName = referenceToBeCheckedOut.replaceFirst(ORIGIN, REMOTE_NAME_REPLACEMENT); + final String finalRefName = gitRefDTO.getRefName().replaceFirst(ORIGIN, REMOTE_NAME_REPLACEMENT); GitArtifactHelper gitArtifactHelper = gitArtifactHelperResolver.getArtifactHelper(baseArtifact.getArtifactType()); @@ -405,24 +412,23 @@ protected Mono checkoutReference( jsonTransformationDTO.setArtifactType(baseArtifact.getArtifactType()); jsonTransformationDTO.setRepoName(baseGitMetadata.getRepoName()); - if (referenceToBeCheckedOut.startsWith(ORIGIN)) { - + if (gitRefDTO.getRefName().startsWith(ORIGIN)) { // checking for local present references first checkedOutArtifactMono = gitHandlingService - .listReferences(jsonTransformationDTO, FALSE, refType) + .listReferences(jsonTransformationDTO, FALSE) .flatMap(gitRefs -> { long branchMatchCount = gitRefs.stream() .filter(gitRef -> gitRef.equals(finalRefName)) .count(); if (branchMatchCount == 0) { - return checkoutRemoteBranch(baseArtifact, finalRefName); + return checkoutRemoteReference(baseArtifact, gitRefDTO, gitType); } return Mono.error(new AppsmithException( AppsmithError.GIT_ACTION_FAILED, "checkout", - referenceToBeCheckedOut + " already exists in local - " + finalRefName)); + gitRefDTO.getRefName() + " already exists in local - " + finalRefName)); }); } else { // TODO refactor method to account for RefName as well @@ -452,9 +458,88 @@ protected Mono checkoutReference( .tap(Micrometer.observation(observationRegistry)); } - // TODO @Manish: add checkout Remote Branch - protected Mono checkoutRemoteBranch(Artifact baseArtifact, String finalRefName) { - return null; + protected Mono checkoutRemoteReference( + String baseArtifactId, GitRefDTO gitRefDTO, ArtifactType artifactType, GitType gitType) { + + GitArtifactHelper gitArtifactHelper = gitArtifactHelperResolver.getArtifactHelper(artifactType); + AclPermission artifactEditPermission = gitArtifactHelper.getArtifactEditPermission(); + + Mono baseArtifactMono = gitArtifactHelper + .getArtifactById(baseArtifactId, artifactEditPermission) + .switchIfEmpty(Mono.error(new AppsmithException(AppsmithError.GIT_GENERIC_ERROR))) + .cache(); + + return baseArtifactMono.flatMap(baseArtifact -> checkoutRemoteReference(baseArtifact, gitRefDTO, gitType)); + } + + private Mono checkoutRemoteReference( + Artifact baseArtifact, GitRefDTO gitRefDTO, GitType gitType) { + + GitHandlingService gitHandlingService = gitHandlingServiceResolver.getGitHandlingService(gitType); + GitArtifactHelper gitArtifactHelper = + gitArtifactHelperResolver.getArtifactHelper(baseArtifact.getArtifactType()); + + GitArtifactMetadata baseGitMetadata = baseArtifact.getGitArtifactMetadata(); + + if (isBaseGitMetadataInvalid(baseGitMetadata, gitType)) { + return Mono.error(new AppsmithException(AppsmithError.INVALID_GIT_SSH_CONFIGURATION)); + } + + final String repoName = baseGitMetadata.getRepoName(); + final String baseArtifactId = baseGitMetadata.getDefaultArtifactId(); + final String baseBranchName = baseGitMetadata.getBranchName(); + final String workspaceId = baseArtifact.getWorkspaceId(); + final String finalRemoteRefName = gitRefDTO.getRefName().replaceFirst(ORIGIN, REMOTE_NAME_REPLACEMENT); + + ArtifactJsonTransformationDTO jsonTransformationDTO = new ArtifactJsonTransformationDTO(); + jsonTransformationDTO.setRepoName(repoName); + jsonTransformationDTO.setRefType(gitRefDTO.getRefType()); + jsonTransformationDTO.setRefName(finalRemoteRefName); + jsonTransformationDTO.setWorkspaceId(workspaceId); + jsonTransformationDTO.setBaseArtifactId(baseArtifactId); + jsonTransformationDTO.setArtifactType(baseArtifact.getArtifactType()); + + Mono artifactMono; + if (baseBranchName.equals(finalRemoteRefName)) { + /* + in this case, user deleted the initial default branch and now wants to check out to that branch. + as we didn't delete the application object but only the branch from git repo, + we can just use this existing application without creating a new one. + */ + artifactMono = Mono.just(baseArtifact); + } else { + // create new Artifact + artifactMono = gitArtifactHelper.createNewArtifactForCheckout(baseArtifact, finalRemoteRefName); + } + + Mono checkedOutRemoteArtifactMono = gitHandlingService + .fetchRemoteChanges(jsonTransformationDTO, baseGitMetadata.getGitAuth(), false) + .onErrorResume(error -> Mono.error( + new AppsmithException(AppsmithError.GIT_ACTION_FAILED, "checkout branch", error.getMessage()))) + .flatMap(ignoreRemoteChanges -> { + return gitHandlingService + .reconstructArtifactJsonFromGitRepository(jsonTransformationDTO) + .zipWith(artifactMono); + }) + .flatMap(tuple -> { + // Get the latest artifact mono with all the changes + ArtifactExchangeJson artifactExchangeJson = tuple.getT1(); + Artifact artifact = tuple.getT2(); + return importService.importArtifactInWorkspaceFromGit( + artifact.getWorkspaceId(), artifact.getId(), artifactExchangeJson, finalRemoteRefName); + }) + .flatMap(importedArtifact -> gitArtifactHelper.publishArtifact(importedArtifact, false)) + .flatMap(publishedArtifact -> gitAnalyticsUtils.addAnalyticsForGitOperation( + AnalyticsEvents.GIT_CHECKOUT_REMOTE_BRANCH, + publishedArtifact, + Boolean.TRUE.equals( + publishedArtifact.getGitArtifactMetadata().getIsRepoPrivate()))) + .tag(GitConstants.GitMetricConstants.CHECKOUT_REMOTE, TRUE.toString()) + .name(GitSpan.OPS_CHECKOUT_BRANCH) + .tap(Micrometer.observation(observationRegistry)); + + return Mono.create(sink -> + checkedOutRemoteArtifactMono.subscribe(sink::success, sink::error, null, sink.currentContext())); } @Override @@ -526,7 +611,7 @@ protected Mono createReference( .flatMap(ignoreLockAcquisition -> fetchRemoteMono.onErrorResume( error -> Mono.error(new AppsmithException(AppsmithError.GIT_ACTION_FAILED, "fetch", error)))) .flatMap(ignoreFetchString -> gitHandlingService - .listReferences(jsonTransformationDTO, TRUE, refType) + .listReferences(jsonTransformationDTO, TRUE) .flatMap(refList -> { boolean isDuplicateName = refList.stream() // We are only supporting origin as the remote name so this is safe @@ -1499,6 +1584,175 @@ protected Mono getStatus( .tap(Micrometer.observation(observationRegistry)); } + /** + * Method to pull artifact json files from remote repo, make a commit with the changes present in local DB and + * make a system commit to remote repo + * + * @param branchedArtifactId artifact for which we want to pull remote changes and merge + * @param artifactType + * @return return the status of pull operation + */ + @Override + public Mono pullArtifact(String branchedArtifactId, ArtifactType artifactType, GitType gitType) { + /* + * 1.Dehydrate the artifact from DB so that the file system has the latest artifact data + * 2.Do git pull after the rehydration and merge the remote changes to the current branch + * On Merge conflict - throw exception and ask user to resolve these conflicts on remote + * TODO create new branch and push the changes to remote and ask the user to resolve it on github/gitlab UI + * 3.Then rehydrate from the file system to DB so that the latest changes from remote are rendered to the artifact + * 4.Get the latest artifact from the DB and send it back to client + * */ + + GitArtifactHelper gitArtifactHelper = gitArtifactHelperResolver.getArtifactHelper(artifactType); + AclPermission artifactEditPermission = gitArtifactHelper.getArtifactEditPermission(); + + Mono> baseAndBranchedArtifactMono = + getBaseAndBranchedArtifacts(branchedArtifactId, artifactType, artifactEditPermission); + + return baseAndBranchedArtifactMono.flatMap(artifactTuple -> { + Artifact baseArtifact = artifactTuple.getT1(); + Artifact branchedArtifact = artifactTuple.getT2(); + + return pullArtifact(baseArtifact, branchedArtifact, gitType); + }); + } + + protected Mono pullArtifact(Artifact baseArtifact, Artifact branchedArtifact, GitType gitType) { + + GitArtifactMetadata branchedGitMetadata = branchedArtifact.getGitArtifactMetadata(); + Mono statusMono = getStatus(baseArtifact, branchedArtifact, false, true, gitType); + + Mono pullDTOMono = gitRedisUtils + .acquireGitLock(branchedGitMetadata.getDefaultArtifactId(), GitConstants.GitCommandConstants.PULL, TRUE) + .then(Mono.defer(() -> statusMono)) + .flatMap(status -> { + // Check if the repo is clean + if (!CollectionUtils.isEmpty(status.getModified())) { + return gitRedisUtils + .releaseFileLock(branchedGitMetadata.getDefaultArtifactId(), TRUE) + .then( + Mono.error( + new AppsmithException( + AppsmithError.GIT_ACTION_FAILED, + "pull", + "There are uncommitted changes present in your local. Please commit them first and then try git pull"))); + } + + return pullAndRehydrateArtifact(baseArtifact, branchedArtifact, gitType) + // Release file lock after the pull operation + .flatMap(gitPullDTO -> gitRedisUtils + .releaseFileLock(branchedGitMetadata.getDefaultArtifactId(), TRUE) + .then(Mono.just(gitPullDTO))); + }) + .onErrorResume(error -> { + log.error( + "An error occurred while trying to pull the artifact with base id: {} and branchName: {}", + branchedGitMetadata.getDefaultArtifactId(), + branchedGitMetadata.getBranchName()); + + return gitRedisUtils + .releaseFileLock(branchedGitMetadata.getDefaultArtifactId(), TRUE) + .then(Mono.error(error)); + }) + .name(GitSpan.OPS_PULL) + .tap(Micrometer.observation(observationRegistry)); + + return Mono.create(sink -> pullDTOMono.subscribe(sink::success, sink::error, null, sink.currentContext())); + } + + /** + * Method to pull the files from remote repo and rehydrate the application + * + * @param baseArtifact : base artifact + * @param branchedArtifact : a branch created from branches of base artifact + * @return pull DTO with updated application + */ + private Mono pullAndRehydrateArtifact( + Artifact baseArtifact, Artifact branchedArtifact, GitType gitType) { + /* + 1. Checkout to the concerned branch + 2. Do git pull after + On Merge conflict - throw exception and ask user to resolve these conflicts on remote + TODO create new branch and push the changes to remote and ask the user to resolve it on github/gitlab UI + 3. Rehydrate the application from filesystem so that the latest changes from remote are rendered to the application + */ + + ArtifactType artifactType = baseArtifact.getArtifactType(); + GitArtifactHelper gitArtifactHelper = gitArtifactHelperResolver.getArtifactHelper(artifactType); + GitHandlingService gitHandlingService = gitHandlingServiceResolver.getGitHandlingService(gitType); + + GitArtifactMetadata baseGitMetadata = baseArtifact.getGitArtifactMetadata(); + + if (isBaseGitMetadataInvalid(baseGitMetadata, gitType)) { + return Mono.error(new AppsmithException(AppsmithError.INVALID_GIT_CONFIGURATION, GIT_CONFIG_ERROR)); + } + + GitArtifactMetadata branchedGitMetadata = branchedArtifact.getGitArtifactMetadata(); + + final String workspaceId = branchedArtifact.getWorkspaceId(); + final String baseArtifactId = branchedGitMetadata.getDefaultArtifactId(); + final String repoName = branchedGitMetadata.getRepoName(); + final String branchName = branchedGitMetadata.getBranchName(); + + ArtifactJsonTransformationDTO jsonTransformationDTO = new ArtifactJsonTransformationDTO(); + jsonTransformationDTO.setRepoName(repoName); + jsonTransformationDTO.setRefType(RefType.BRANCH); + jsonTransformationDTO.setRefName(branchName); + jsonTransformationDTO.setWorkspaceId(workspaceId); + jsonTransformationDTO.setBaseArtifactId(baseArtifactId); + jsonTransformationDTO.setArtifactType(baseArtifact.getArtifactType()); + + Path repoSuffix = gitArtifactHelper.getRepoSuffixPath(workspaceId, baseArtifactId, repoName); + + return Mono.defer(() -> { + // Rehydrate the artifact from git system + + Mono mergeStatusDTOMono = gitHandlingService + .pullArtifact(jsonTransformationDTO, baseGitMetadata) + .cache(); + Mono artifactExchangeJsonMono = mergeStatusDTOMono.flatMap(status -> + gitHandlingService.reconstructArtifactJsonFromGitRepository(jsonTransformationDTO)); + + return Mono.zip(mergeStatusDTOMono, artifactExchangeJsonMono); + }) + .flatMap(tuple -> { + MergeStatusDTO status = tuple.getT1(); + ArtifactExchangeJson artifactExchangeJson = tuple.getT2(); + // Get the latest artifact with all the changes + // Commit and push changes to sync with remote + return importService + .importArtifactInWorkspaceFromGit( + workspaceId, branchedArtifact.getId(), artifactExchangeJson, branchName) + .flatMap(importedBranchedArtifact -> gitAnalyticsUtils.addAnalyticsForGitOperation( + AnalyticsEvents.GIT_PULL, + importedBranchedArtifact, + importedBranchedArtifact + .getGitArtifactMetadata() + .getIsRepoPrivate())) + .flatMap(importedBranchedArtifact -> { + CommitDTO commitDTO = new CommitDTO(); + commitDTO.setMessage(DEFAULT_COMMIT_MESSAGE + + GitDefaultCommitMessage.SYNC_WITH_REMOTE_AFTER_PULL.getReason()); + + GitPullDTO gitPullDTO = new GitPullDTO(); + gitPullDTO.setMergeStatus(status); + gitPullDTO.setArtifact(importedBranchedArtifact); + + return gitArtifactHelper + .publishArtifact(importedBranchedArtifact, false) + // TODO: Verify if we need to commit after pulling? (Gonna be a product + // decision, hence got + .then(Mono.defer(() -> commitArtifact( + commitDTO, + baseArtifact, + importedBranchedArtifact, + gitType, + false)) + .thenReturn(gitPullDTO)); + }); + }); + } + public Mono fetchRemoteChanges( Artifact baseArtifact, Artifact refArtifact, boolean isFileLock, GitType gitType, RefType refType) { diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/GitHandlingServiceCE.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/GitHandlingServiceCE.java index ddbb91643550..89b3d7d64a0e 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/GitHandlingServiceCE.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/git/central/GitHandlingServiceCE.java @@ -2,7 +2,7 @@ import com.appsmith.external.dtos.GitRefDTO; import com.appsmith.external.dtos.GitStatusDTO; -import com.appsmith.external.git.constants.ce.RefType; +import com.appsmith.external.dtos.MergeStatusDTO; import com.appsmith.git.dto.CommitDTO; import com.appsmith.server.domains.Artifact; import com.appsmith.server.domains.GitArtifactMetadata; @@ -48,9 +48,7 @@ Mono> listBranches( Mono> listBranches(ArtifactJsonTransformationDTO artifactJsonTransformationDTO); Mono> listReferences( - ArtifactJsonTransformationDTO artifactJsonTransformationDTO, - Boolean checkRemoteReferences, - RefType refType); + ArtifactJsonTransformationDTO artifactJsonTransformationDTO, Boolean checkRemoteReferences); Mono validateEmptyRepository(ArtifactJsonTransformationDTO artifactJsonTransformationDTO); @@ -82,4 +80,7 @@ Mono recreateArtifactJsonFromLastCommit( Mono deleteGitReference(ArtifactJsonTransformationDTO jsonTransformationDTO); Mono checkoutArtifact(ArtifactJsonTransformationDTO jsonTransformationDTO); + + Mono pullArtifact( + ArtifactJsonTransformationDTO jsonTransformationDTO, GitArtifactMetadata baseMetadata); } diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/git/fs/GitFSServiceCEImpl.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/git/fs/GitFSServiceCEImpl.java index 4ba699bc0575..84f772930dc6 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/git/fs/GitFSServiceCEImpl.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/git/fs/GitFSServiceCEImpl.java @@ -4,6 +4,7 @@ import com.appsmith.external.dtos.GitBranchDTO; import com.appsmith.external.dtos.GitRefDTO; import com.appsmith.external.dtos.GitStatusDTO; +import com.appsmith.external.dtos.MergeStatusDTO; import com.appsmith.external.git.constants.GitConstants; import com.appsmith.external.git.constants.GitSpan; import com.appsmith.external.git.constants.ce.RefType; @@ -294,14 +295,12 @@ public Mono> listBranches( @Override public Mono> listReferences( - ArtifactJsonTransformationDTO artifactJsonTransformationDTO, - Boolean checkRemoteReferences, - RefType refType) { - if (RefType.BRANCH.equals(refType)) { - listBranches(artifactJsonTransformationDTO, checkRemoteReferences); + ArtifactJsonTransformationDTO artifactJsonTransformationDTO, Boolean checkRemoteReferences) { + if (RefType.BRANCH.equals(artifactJsonTransformationDTO.getRefType())) { + return listBranches(artifactJsonTransformationDTO, checkRemoteReferences); } - // TODO: include ref type for tags in fsGit Handler + // TODO: Add logic for other reference types (e.g., tags) return Mono.just(List.of()); } @@ -619,13 +618,13 @@ public Mono fetchRemoteChanges( GitArtifactHelper gitArtifactHelper = gitArtifactHelperResolver.getArtifactHelper(artifactType); Path repoSuffix = gitArtifactHelper.getRepoSuffixPath(workspaceId, baseArtifactId, repoName); - Path repoPath = fsGitHandler.createRepoPath(repoSuffix); - Mono checkoutBranchMono = fsGitHandler.checkoutToBranch(repoSuffix, refName); - Mono fetchRemoteMono = fsGitHandler.fetchRemote( - repoPath, gitAuth.getPublicKey(), gitAuth.getPrivateKey(), true, refName, isFetchAll); + repoSuffix, gitAuth.getPublicKey(), gitAuth.getPrivateKey(), false, refName, isFetchAll); - return checkoutBranchMono.then(Mono.defer(() -> fetchRemoteMono)); + // TODO : check if we require to checkout the reference + Mono checkoutBranchMono = fsGitHandler.checkoutToBranch(repoSuffix, refName); + + return fetchRemoteMono.flatMap(remoteFetched -> checkoutBranchMono.thenReturn(remoteFetched)); } @Override @@ -719,4 +718,45 @@ public Mono checkoutArtifact(ArtifactJsonTransformationDTO jsonTransfor // Tags and branch checkout with the same mechanism. return fsGitHandler.checkoutToBranch(repoSuffix, jsonTransformationDTO.getRefName()); } + + @Override + public Mono pullArtifact( + ArtifactJsonTransformationDTO jsonTransformationDTO, GitArtifactMetadata baseMetadata) { + GitArtifactHelper gitArtifactHelper = + gitArtifactHelperResolver.getArtifactHelper(jsonTransformationDTO.getArtifactType()); + + Path repoSuffix = gitArtifactHelper.getRepoSuffixPath( + jsonTransformationDTO.getWorkspaceId(), + jsonTransformationDTO.getBaseArtifactId(), + jsonTransformationDTO.getRepoName()); + + String branchName = jsonTransformationDTO.getRefName(); + + // git checkout and pull origin branchName + try { + return fsGitHandler + .checkoutToBranch(repoSuffix, jsonTransformationDTO.getRefName()) + .then(fsGitHandler.pullApplication( + repoSuffix, + baseMetadata.getRemoteUrl(), + branchName, + baseMetadata.getGitAuth().getPrivateKey(), + baseMetadata.getGitAuth().getPublicKey())) + .onErrorResume(error -> { + if (error.getMessage().contains("conflict")) { + return Mono.error( + new AppsmithException(AppsmithError.GIT_PULL_CONFLICTS, error.getMessage())); + } else if (error.getMessage().contains("Nothing to fetch")) { + MergeStatusDTO mergeStatus = new MergeStatusDTO(); + mergeStatus.setStatus("Nothing to fetch from remote. All changes are up to date."); + mergeStatus.setMergeAble(true); + return Mono.just(mergeStatus); + } + return Mono.error( + new AppsmithException(AppsmithError.GIT_ACTION_FAILED, "pull", error.getMessage())); + }); + } catch (IOException e) { + return Mono.error(new AppsmithException(AppsmithError.GIT_FILE_SYSTEM_ERROR, e.getMessage())); + } + } } diff --git a/deploy/helm/Chart.lock b/deploy/helm/Chart.lock deleted file mode 100644 index 95e1eacd743c..000000000000 --- a/deploy/helm/Chart.lock +++ /dev/null @@ -1,9 +0,0 @@ -dependencies: -- name: redis - repository: https://charts.bitnami.com/bitnami - version: 16.11.2 -- name: mongodb - repository: https://charts.bitnami.com/bitnami - version: 12.1.16 -digest: sha256:5c331a59e883c66893d2896c24aa2c4edf53423b12d440d1ec832e2c18637805 -generated: "2023-01-26T10:40:02.874578+05:30" diff --git a/deploy/helm/Chart.yaml b/deploy/helm/Chart.yaml index d4fae9cfa7a9..d8eebe8250b1 100644 --- a/deploy/helm/Chart.yaml +++ b/deploy/helm/Chart.yaml @@ -11,15 +11,25 @@ sources: - https://github.com/appsmithorg/appsmith home: https://www.appsmith.com/ icon: https://assets.appsmith.com/appsmith-icon.png -version: 2.3.0 +version: 3.6.0 dependencies: -- condition: redis.enabled - name: redis - version: 16.11.2 - appVersion: 6.2.7 - repository: https://charts.bitnami.com/bitnami -- condition: mongodb.enabled - name: mongodb - version: 12.1.16 - appVersion: 6.0.10 - repository: https://charts.bitnami.com/bitnami + - condition: redis.enabled + name: redis + version: 16.11.2 + appVersion: 6.2.7 + repository: https://charts.bitnami.com/bitnami + - condition: mongodb.enabled + name: mongodb + version: 12.1.16 + appVersion: 6.0.10 + repository: https://charts.bitnami.com/bitnami + - condition: postgresql.enabled + name: postgresql + version: 11.9.5 + appVersion: 14.12.0 + repository: https://charts.bitnami.com/bitnami + - condition: prometheus.enabled + name: prometheus + version: 25.27.0 + appVersion: 2.54.1 + repository: https://prometheus-community.github.io/helm-charts diff --git a/deploy/helm/README.md b/deploy/helm/README.md index f0ca5697e9bc..f4b3d087be6f 100644 --- a/deploy/helm/README.md +++ b/deploy/helm/README.md @@ -174,6 +174,8 @@ To change Appsmith configurations, you can use configuration UI in application o | `applicationConfig.APPSMITH_OAUTH2_GOOGLE_CLIENT_SECRET`| `""` | | `applicationConfig.APPSMITH_OAUTH2_GITHUB_CLIENT_ID` | `""` | | `applicationConfig.APPSMITH_OAUTH2_GITHUB_CLIENT_SECRET`| `""` | +| `applicationConfig.APPSMITH_OAUTH2_OIDC_CLIENT_ID` | `""` | +| `applicationConfig.APPSMITH_OAUTH2_OIDC_CLIENT_SECRET` | `""` | | `applicationConfig.APPSMITH_CLIENT_LOG_LEVEL` | `""` | | `applicationConfig.APPSMITH_MAIL_ENABLED` | `""` | | `applicationConfig.APPSMITH_MAIL_HOST` | `""` | diff --git a/deploy/helm/templates/configMap.yaml b/deploy/helm/templates/configMap.yaml index 4e3ea9a7934c..2b870dc86656 100644 --- a/deploy/helm/templates/configMap.yaml +++ b/deploy/helm/templates/configMap.yaml @@ -1,8 +1,10 @@ {{- $nameSpace := include "appsmith.namespace" . -}} -{{- $name := include "appsmith.fullname" . -}} {{- $mongoUser := .Values.mongodb.auth.rootUser -}} {{- $mongoPassword := .Values.mongodb.auth.rootPassword -}} {{- $mongoServicename := .Values.mongodb.service.nameOverride -}} +{{- $postgresqlUser := .Values.postgresql.auth.username -}} +{{- $postgresqlPassword := .Values.postgresql.auth.password -}} +{{- $postgresqlDatabase := .Values.postgresql.auth.database -}} {{- $releaseName := .Release.Name -}} apiVersion: v1 kind: ConfigMap @@ -18,11 +20,28 @@ data: {{- end }} {{- range $key, $value := .Values.applicationConfig }} + {{- if and (eq "APPSMITH_KEYCLOAK_DB_DRIVER" $key) ( not $value) }} + {{ $key }}: {{ $.Values.postgresql.enabled | ternary "postgresql" "h2" | quote }} + {{- end }} + + {{- if and (eq "APPSMITH_KEYCLOAK_DB_URL" $key) ( not $value) }} + {{ $key }}: {{ $.Values.postgresql.enabled | ternary (printf "%s-postgresql.%s.svc.cluster.local:5432/%s" $releaseName $nameSpace $postgresqlDatabase) "${jboss.server.data.dir}" | quote }} + {{- end }} + + {{- if and (eq "APPSMITH_KEYCLOAK_DB_USERNAME" $key) ( not $value) }} + {{ $key }}: {{ $.Values.postgresql.enabled | ternary $postgresqlUser "sa" | quote }} + {{- end }} + + {{- if and (eq "APPSMITH_KEYCLOAK_DB_PASSWORD" $key) ( not $value) }} + {{ $key }}: {{ $.Values.postgresql.enabled | ternary $postgresqlPassword "sa" | quote }} + {{- end }} + {{- if and (eq "APPSMITH_REDIS_URL" $key) ( not $value) }} {{- if $.Values.redis.enabled }} {{ $key }}: redis://{{ $releaseName }}-redis-master.{{ $nameSpace }}.svc.cluster.local:6379 {{- end }} {{- end }} + {{- if $value }} {{ $key }}: {{ $value | quote }} {{- end }} diff --git a/deploy/helm/templates/statefulset.yaml b/deploy/helm/templates/deployment.yaml similarity index 53% rename from deploy/helm/templates/statefulset.yaml rename to deploy/helm/templates/deployment.yaml index 9a17907b27cd..08d981366f22 100644 --- a/deploy/helm/templates/statefulset.yaml +++ b/deploy/helm/templates/deployment.yaml @@ -1,15 +1,27 @@ +{{- $updateStrategy := .Values.updateStrategy | default dict }} +{{- $postgresuser := .Values.postgresql.auth.username }} +{{- $postgrespass := .Values.postgresql.auth.password }} +{{- $postgrespass := .Values.postgresql.auth.password }} +{{- $releaseName := include "appsmith.fullname" . -}} apiVersion: apps/v1 -kind: StatefulSet +kind: {{ if not .Values.autoscaling.enabled }}StatefulSet{{- else }}Deployment{{- end }} metadata: name: {{ include "appsmith.fullname" . }} namespace: {{ include "appsmith.namespace" . }} labels: {{- include "appsmith.labels" . | nindent 4 }} spec: + {{- if not .Values.autoscaling.enabled }} replicas: 1 serviceName: {{ include "appsmith.fullname" . }} updateStrategy: - type: {{ .Values.strategyType }} + {{- else }} + strategy: + type: {{ .Values.strategyType | default "RollingUpdate" }} + rollingUpdate: + maxSurge: {{ dig "maxSurge" 1 $updateStrategy }} + maxUnavailable: {{ dig "maxUnavailable" "0" $updateStrategy }} + {{- end }} selector: matchLabels: {{- include "appsmith.selectorLabels" . | nindent 6 }} @@ -25,6 +37,10 @@ spec: {{- toYaml .Values.podLabels | nindent 8 }} {{- end }} spec: + {{- with .Values.topologySpreadConstraints }} + topologySpreadConstraints: + {{- toYaml . | nindent 8 }} + {{- end }} {{- if .Values.schedulerName }} schedulerName: {{ .Values.schedulerName | quote }} {{- end }} @@ -58,16 +74,26 @@ spec: {{- if ((.Values.initContainer.mongodb).image) }} image: {{ .Values.initContainer.mongodb.image }} {{- else }} - image: "docker.io/bitnami/mongodb:5.0.21-debian-11-r5" + image: "docker.io/bitnami/mongodb:6.0.13" + {{- end }} + command: ['sh', '-c', "until mongosh --host appsmith-mongodb.{{.Release.Namespace}}.svc.cluster.local --eval 'db.runCommand({ping:1})' ; do echo waiting for mongo; sleep 2; done"] {{- end }} - command: ['sh', '-c', "until mongo --host appsmith-mongodb.{{.Release.Namespace}}.svc.cluster.local --eval 'db.runCommand({ping:1})' ; do echo waiting for mongo; sleep 2; done"] + {{- if .Values.postgresql.enabled }} + - name: psql-init-container + {{- if ((.Values.initContainer.postgresql).image) }} + image: {{ .Values.initContainer.postgresql.image }} + {{- else}} + image: docker.io/bitnami/postgresql:14.5.0-debian-11-r21 + {{- end}} + command: ['sh', '-c', "until pg_isready -U $postgresuser -d $postgresdb -h {{.Release.Name}}-postgresql.{{.Release.Namespace}}.svc.cluster.local; do echo waiting for postgresql; sleep 2; done"] {{- end }} containers: - name: {{ .Values.containerName }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} - image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} + {{- $customImage := .Values._image | default dict }} + image: {{ dig "registry" "index.docker.io" $customImage }}/{{ dig "repository" "appsmith/appsmith-ee" $customImage }}:{{ dig "tag" (.Values.image.tag | default "latest") $customImage }} + imagePullPolicy: {{ dig "pullPolicy" "IfNotPresent" $customImage }} ports: - name: http containerPort: {{ .Values.HTTPContainerPort | default 80 }} @@ -75,23 +101,26 @@ spec: - name: https containerPort: 443 protocol: TCP + - name: metrics + containerPort: {{ .Values.metrics.port }} + protocol: TCP {{- $probes := .Values.probes | default dict }} startupProbe: # The `livenessProbe` and `readinessProbe` will be disabled until the `startupProbe` is successful. httpGet: - port: http + port: {{ dig "startupProbe" "port" "80" $probes }} path: {{ dig "startupProbe" "api" "/api/v1/health" $probes }} failureThreshold: {{ dig "startupProbe" "failureThreshold" 3 $probes }} periodSeconds: {{ dig "startupProbe" "periodSeconds" 60 $probes }} livenessProbe: httpGet: - port: http + port: {{ dig "livenessProbe" "port" "80" $probes }} path: {{ dig "livenessProbe" "api" "/api/v1/health" $probes }} failureThreshold: {{ dig "livenessProbe" "failureThreshold" 3 $probes }} periodSeconds: {{ dig "livenessProbe" "periodSeconds" 60 $probes }} readinessProbe: httpGet: - port: http + port: {{ dig "readinessProbe" "port" "80" $probes }} path: {{ dig "readinessProbe" "api" "/api/v1/health" $probes }} failureThreshold: {{ dig "readinessProbe" "failureThreshold" 3 $probes }} periodSeconds: {{ dig "readinessProbe" "periodSeconds" 60 $probes }} @@ -100,6 +129,10 @@ spec: volumeMounts: - name: data mountPath: /appsmith-stacks + {{- if .Values.customCAcert }} + - name: ca-cert + mountPath: "/appsmith-stacks/ca-certs" + {{- end }} env: {{- if .Values.HTTPContainerPort }} - name: PORT @@ -107,6 +140,10 @@ spec: {{- end }} - name: APPSMITH_ENABLE_EMBEDDED_DB value: "0" + - name: JGROUPS_DISCOVERY_PROTOCOL + value: kubernetes.KUBE_PING + - name: APPSMITH_HEADLESS_SVC + value: {{ include "appsmith.fullname" . }}-headless envFrom: - configMapRef: name: {{ include "appsmith.fullname" . }} @@ -114,28 +151,57 @@ spec: - secretRef: name: {{ .Values.secretName }} {{- end }} + {{- if .Values.secrets }} + - secretRef: + name: {{ include "appsmith.fullname" . }} + {{- end }} + {{- if .Values.externalSecrets.enabled }} + - secretRef: + name: "{{ include "appsmith.fullname" . }}-external-secret" + {{- end }} {{- if .Values.image.pullSecrets}} imagePullSecrets: - name: {{ .Values.image.pullSecrets }} {{- end }} volumes: + {{- if .Values.customCAcert }} + - name: ca-cert + configMap: + name: {{ $releaseName }}-trustedca + items: + {{- range $key, $value := .Values.customCAcert }} + - key: {{ $key }} + path: {{ $key }}.crt + {{- end }} + {{- end }} {{- if not .Values.persistence.enabled }} - name: data emptyDir: {} - {{- else }} + {{- else if and (not .Values.autoscaling.enabled) (.Values.persistence.enabled) }} volumeClaimTemplates: - metadata: name: data - {{- if .Values.persistence.annotations }} - annotations: {{- include "tplvalues.render" (dict "value" .Values.persistence.annotations "context" $) | nindent 10 }} + {{- if .Values.persistence.annotations}} + annotations: + {{- include "tplvalues.render" (dict "value" .Values.persistence.annotations "context" $) | nindent 10 }} {{- end }} spec: accessModes: - {{- range .Values.persistence.accessModes }} - - {{ . | quote }} - {{- end }} + - ReadWriteOnce resources: requests: storage: {{ .Values.persistence.size | quote }} - {{ include "storage.class" (dict "persistence" .Values.persistence "global" .Values.global) }} + {{- if .Values.persistence.volumeClaimTemplates.selector }} + selector: + {{- include "tplvalues.render" (dict "value" .Values.persistence.volumeClaimTemplates.selector "context" $) | nindent 10 }} + {{- end }} + {{ include "storage.class" (dict "persistence" .Values.persistence "global" .Values.global) | nindent 8 }} + {{- else }} + - name: data + persistentVolumeClaim: + {{- if .Values.persistence.existingClaim.enabled }} + claimName: {{ .Values.persistence.existingClaim.claimName }} + {{- else }} + claimName: {{ include "appsmith.fullname" . }} + {{- end }} {{- end }} diff --git a/deploy/helm/templates/external-secrets.yaml b/deploy/helm/templates/external-secrets.yaml new file mode 100644 index 000000000000..179c991b4f26 --- /dev/null +++ b/deploy/helm/templates/external-secrets.yaml @@ -0,0 +1,18 @@ +{{- if .Values.externalSecrets.enabled }} +apiVersion: external-secrets.io/v1beta1 +kind: ExternalSecret +metadata: + name: "{{ include "appsmith.fullname" . }}-external-secret" + namespace: {{ include "appsmith.namespace" . }} +spec: + refreshInterval: {{ .Values.externalSecrets.refreshInterval }} + secretStoreRef: + name: secretstore + kind: SecretStore + target: + name: "{{ include "appsmith.fullname" . }}-external-secret" + creationPolicy: Owner + dataFrom: + - extract: + key: {{ .Values.externalSecrets.remoteSecretName }} +{{- end }} diff --git a/deploy/helm/templates/headless-svc.yaml b/deploy/helm/templates/headless-svc.yaml new file mode 100644 index 000000000000..60c85fe4f34b --- /dev/null +++ b/deploy/helm/templates/headless-svc.yaml @@ -0,0 +1,31 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "appsmith.fullname" . }}-headless + namespace: {{ include "appsmith.namespace" . }} + labels: + {{- include "appsmith.labels" . | nindent 4 }} + {{- if or .Values.service.annotations .Values.commonAnnotations }} + annotations: + {{- if .Values.service.annotations }} + {{- include "tplvalues.render" ( dict "value" .Values.service.annotations "context" $) | nindent 4 }} + {{- end }} + {{- if .Values.commonAnnotations }} + {{- include "tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} + {{- end }} + {{- end }} +spec: + type: ClusterIP + clusterIP: None + clusterIPs: + - None + internalTrafficPolicy: Cluster + ipFamilies: + - IPv4 + ipFamilyPolicy: SingleStack + ports: + - name: http + port: 8080 + targetPort: 8080 + selector: + {{- include "appsmith.selectorLabels" . | nindent 4 }} diff --git a/deploy/helm/templates/hpa.yml b/deploy/helm/templates/hpa.yml new file mode 100644 index 000000000000..2cffa1e02b48 --- /dev/null +++ b/deploy/helm/templates/hpa.yml @@ -0,0 +1,41 @@ +{{- if and (.Values.autoscaling.enabled) (not .Values.keda.enabled) }} +apiVersion: {{ ternary "autoscaling/v2" "autoscaling/v2beta2" (.Capabilities.APIVersions.Has "autoscaling/v2") }} +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "appsmith.fullname" . }} + namespace: {{ include "appsmith.namespace" . }} + labels: + {{- include "appsmith.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "appsmith.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + {{- if .Capabilities.APIVersions.Has "autoscaling/v2"}} + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- else }} + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + {{- if .Capabilities.APIVersions.Has "autoscaling/v2"}} + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- else }} + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} + {{- end }} +{{- end }} diff --git a/deploy/helm/templates/import.yaml b/deploy/helm/templates/import.yaml new file mode 100644 index 000000000000..0b196ce56107 --- /dev/null +++ b/deploy/helm/templates/import.yaml @@ -0,0 +1,28 @@ +{{- /* Fail helm chart if autoscaling is enabled and mongo is disabled */ -}} +{{- if and ( .Values.autoscaling.enabled ) ( not .Values.mongodb.enabled ) }} +{{- if and ( not .Values.applicationConfig.APPSMITH_DB_URL ) ( not .Values.applicationConfig.APPSMITH_MONGODB_URI ) }} +{{- fail "To enable autoscaling on Appsmith, MongoDB needs to be enabled or an external MongoDB needs to be configured. Refer: https://docs.appsmith.com/getting-started/setup/installation-guides/kubernetes#install-appsmith" }} +{{- end }} +{{- end }} + +{{- /* Fail helm chart if keycloak is disabled and postgresql is enabled */ -}} +{{- if and ( .Values.postgresql.enabled ) (eq .Values.applicationConfig.APPSMITH_DISABLE_EMBEDDED_KEYCLOAK "1" )}} +{{- fail "Keycloak is disabled therefore postgresql is not required. Please disable postgres or to enable keycloak on Appsmith, set APPSMITH_DISABLE_EMBEDDED_KEYCLOAK to \"0\" Refer: https://docs.appsmith.com/getting-started/setup/installation-guides/kubernetes#install-appsmith" }} +{{- end }} + +{{- /* Fail helm chart if autoscaling, keycloak is enabled and postgresql is disabled */ -}} +{{- if and ( .Values.autoscaling.enabled ) ( not .Values.postgresql.enabled ) ( not .Values.applicationConfig.APPSMITH_KEYCLOAK_DB_URL ) (eq .Values.applicationConfig.APPSMITH_DISABLE_EMBEDDED_KEYCLOAK "0" )}} +{{- fail "To enable autoscaling on Appsmith, PostgreSQL needs to be enabled or an external PostgreSQL has to be configured. Refer: https://docs.appsmith.com/getting-started/setup/installation-guides/kubernetes#install-appsmith" }} +{{- end }} + +{{- /* Fail helm chart if mongodb is enabled along with APPSMITH_DB_URL in the ApplicationConfig */ -}} +{{- if ( .Values.mongodb.enabled ) }} +{{- if or ( .Values.applicationConfig.APPSMITH_DB_URL ) ( .Values.applicationConfig.APPSMITH_MONGODB_URI ) }} +{{- fail "MongoDB is enabled, but also found APPSMITH_DB_URL or APPSMITH_MONGODB_URI configured to an external instance, MongoDB needs to be disabled if using an external MongoDB instance" }} +{{- end }} +{{- end }} + +{{- /* Fail helm chart if postgresql is enabled along with APPSMITH_DB_URL in the ApplicationConfig */ -}} +{{- if and ( .Values.postgresql.enabled ) ( .Values.applicationConfig.APPSMITH_KEYCLOAK_DB_DRIVER ) ( .Values.applicationConfig.APPSMITH_KEYCLOAK_DB_URL ) }} +{{- fail "PostgreSQL is enabled, but also found APPSMITH_KEYCLOAK_DB_URL configured to an external instance, PostgreSQL needs to be disabled if using an external PostgreSQL instance" }} +{{- end }} diff --git a/deploy/helm/templates/pdb.yml b/deploy/helm/templates/pdb.yml new file mode 100644 index 000000000000..94539b9d763d --- /dev/null +++ b/deploy/helm/templates/pdb.yml @@ -0,0 +1,16 @@ +{{- if .Values.podDisruptionBudgets.enabled }} +{{- if .Capabilities.APIVersions.Has "policy/v1" -}} +apiVersion: policy/v1 +{{- else}} +apiVersion: policy/v1beta1 +{{- end }} +kind: PodDisruptionBudget +metadata: + name: "{{ include "appsmith.fullname" . }}-pdb" + namespace: {{ include "appsmith.namespace" . }} +spec: + minAvailable: {{ .Values.podDisruptionBudgets.minAvailable }} + selector: + matchLabels: + {{- include "appsmith.selectorLabels" . | nindent 6 }} +{{- end }} diff --git a/deploy/helm/templates/persistentVolume.yaml b/deploy/helm/templates/persistentVolume.yaml index 5a07b1859a0f..51200363b2a8 100644 --- a/deploy/helm/templates/persistentVolume.yaml +++ b/deploy/helm/templates/persistentVolume.yaml @@ -1,4 +1,4 @@ -{{- if and .Values.persistence.enabled .Values.persistence.localStorage }} +{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim.enabled) ( .Values.autoscaling.enabled) }} apiVersion: v1 kind: PersistentVolume metadata: @@ -12,8 +12,8 @@ spec: {{- range .Values.persistence.accessModes }} - {{ . | quote }} {{- end }} - persistentVolumeReclaimPolicy: Delete - storageClassName: {{ .Values.persistence.storageClass | quote }} + persistentVolumeReclaimPolicy: {{ .Values.persistence.reclaimPolicy }} + {{- if .Values.persistence.localStorage }} local: path: {{ .Values.persistence.storagePath }} # Path to the directory this PV refers to. nodeAffinity: # nodeAffinity is required when using local volumes. @@ -24,4 +24,18 @@ spec: operator: In values: {{- toYaml .Values.persistence.localCluster | nindent 12 }} -{{- end }} \ No newline at end of file + {{- end }} + {{- if .Values.persistence.storageClass }} + {{- if (eq "-" .Values.persistence.storageClass) }} + storageClassName: "" + {{- else }} + storageClassName: "{{ .Values.persistence.storageClass }}" + {{- end }} + {{- end }} + {{- if .Values.persistence.efs.enabled }} + csi: + driver: {{ .Values.persistence.efs.driver }} + nfs: + volumeHandle: {{ .Values.persistence.efs.volumeHandle }} + {{ end }} +{{- end }} diff --git a/deploy/helm/templates/persistentVolumeClaim.yaml b/deploy/helm/templates/persistentVolumeClaim.yaml new file mode 100644 index 000000000000..d4e2a22d40f5 --- /dev/null +++ b/deploy/helm/templates/persistentVolumeClaim.yaml @@ -0,0 +1,34 @@ +{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim.enabled) ( .Values.autoscaling.enabled) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ include "appsmith.fullname" . }} + namespace: {{ include "appsmith.namespace" . }} +{{- with .Values.persistence.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} + labels: + app: {{ include "appsmith.fullname" . }} + chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" + release: "{{ .Release.Name }}" + heritage: "{{ .Release.Service }}" +spec: + accessModes: + {{- range .Values.persistence.accessModes }} + - {{ . | quote }} + {{- end }} + {{- if .Values.persistence.existingClaim.enabled }} + volumeName: {{ .Values.persistence.existingClaim.name }} + {{- else}} + volumeName: {{ include "appsmith.fullname" . }} + {{- end }} + resources: + requests: + storage: {{ .Values.persistence.size | quote }} +{{- if .Values.persistence.storageClass }} + storageClassName: {{ .Values.persistence.storageClass }} +{{- else }} + storageClassName: "" +{{- end }} +{{- end }} diff --git a/deploy/helm/templates/scaledobject.yml b/deploy/helm/templates/scaledobject.yml new file mode 100644 index 000000000000..58f3394cc687 --- /dev/null +++ b/deploy/helm/templates/scaledobject.yml @@ -0,0 +1,28 @@ +{{- if .Values.keda.enabled -}} +apiVersion: keda.sh/v1alpha1 +kind: ScaledObject +metadata: + name: {{ include "appsmith.fullname" . }} + namespace: {{ include "appsmith.namespace" . }} + labels: + {{- include "appsmith.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "appsmith.fullname" . }} + pollingInterval: {{ .Values.keda.pollingInterval }} + cooldownPeriod: {{ .Values.keda.cooldownPeriod }} + minReplicaCount: {{ .Values.keda.minReplicaCount }} + maxReplicaCount: {{ .Values.keda.maxReplicaCount }} + {{- with .Values.keda.fallback }} + fallback: + {{- toYaml . | nindent 4 }} + {{- end }} + triggers: + {{- range $v := .Values.keda.triggers }} + - type: {{ $v.type }} + metadata: + {{- toYaml $v.metadata | nindent 6 }} + {{- end }} +{{- end -}} diff --git a/deploy/helm/templates/secret.yaml b/deploy/helm/templates/secret.yaml new file mode 100644 index 000000000000..d34aa28231d7 --- /dev/null +++ b/deploy/helm/templates/secret.yaml @@ -0,0 +1,16 @@ +{{- if .Values.secrets }} +apiVersion: v1 +kind: Secret +metadata: + name: {{ include "appsmith.fullname" . }} + namespace: {{ include "appsmith.namespace" . }} + labels: + {{- include "appsmith.labels" . | nindent 4 }} +type: Opaque +data: + {{- range $key, $value := .Values.secrets }} + {{- if $value }} + {{ $key }}: {{ $value | quote }} + {{- end }} + {{- end }} +{{- end }} diff --git a/deploy/helm/templates/service-metrics.yaml b/deploy/helm/templates/service-metrics.yaml new file mode 100644 index 000000000000..1440ecab3369 --- /dev/null +++ b/deploy/helm/templates/service-metrics.yaml @@ -0,0 +1,31 @@ +{{- if .Values.metrics.enabled }} +apiVersion: v1 +kind: Service +metadata: + name: {{ include "appsmith.fullname" . }}-metrics + namespace: {{ include "appsmith.namespace" . }} + labels: + {{- include "appsmith.labels" . | nindent 4 }} + annotations: + prometheus.io/port: {{ quote .Values.metrics.port }} + prometheus.io/scrape: "true" +spec: + type: {{ .Values.service.type }} + {{- if and (eq .Values.service.type "ClusterIP") .Values.service.clusterIP }} + clusterIP: {{ .Values.service.clusterIP }} + {{- end }} + {{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancerIP }} + loadBalancerIP: {{ .Values.service.loadBalancerIP }} + {{- end }} + ports: + - name: {{ .Values.service.portName }} + port: {{ .Values.metrics.port }} + targetPort: metrics + {{- if and (or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort")) .Values.service.nodePort }} + nodePort: {{ .Values.service.nodePort }} + {{- else if eq .Values.service.type "ClusterIP" }} + nodePort: null + {{- end }} + selector: + {{- include "appsmith.selectorLabels" . | nindent 4 }} +{{- end }} diff --git a/deploy/helm/templates/service.yaml b/deploy/helm/templates/service.yaml index 92584f917a9c..9bf019cebe76 100644 --- a/deploy/helm/templates/service.yaml +++ b/deploy/helm/templates/service.yaml @@ -5,7 +5,7 @@ metadata: namespace: {{ include "appsmith.namespace" . }} labels: {{- include "appsmith.labels" . | nindent 4 }} - {{- if or .Values.service.annotations .Values.commonAnnotations }} + {{- if or .Values.service.annotations .Values.commonAnnotations .Values.metrics.enabled }} annotations: {{- if .Values.service.annotations }} {{- include "tplvalues.render" ( dict "value" .Values.service.annotations "context" $) | nindent 4 }} @@ -13,6 +13,11 @@ metadata: {{- if .Values.commonAnnotations }} {{- include "tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} + {{- if .Values.metrics.enabled }} + prometheus.io/scrape: "true" + prometheus.io/port: "8080" + prometheus.io/path: "/actuator/prometheus" + {{- end }} {{- end }} spec: type: {{ .Values.service.type }} diff --git a/deploy/helm/templates/trustedCA.yaml b/deploy/helm/templates/trustedCA.yaml new file mode 100644 index 000000000000..d9fff15a210f --- /dev/null +++ b/deploy/helm/templates/trustedCA.yaml @@ -0,0 +1,13 @@ +{{- if .Values.customCAcert }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "appsmith.fullname" . }}-trustedca + namespace: {{ include "appsmith.namespace" . }} + labels: + {{- include "appsmith.labels" . | nindent 4 }} +data: +{{- range $key, $value := .Values.customCAcert }} + {{ $key }}: {{ $value | quote }} +{{- end }} +{{- end }} diff --git a/deploy/helm/values.yaml b/deploy/helm/values.yaml index f5bca3a7cd8a..a315319679b7 100644 --- a/deploy/helm/values.yaml +++ b/deploy/helm/values.yaml @@ -5,9 +5,15 @@ redis: enabled: false master: nodeSelector: {} + disableCommands: [] + affinity: {} + tolerations: [] replica: replicaCount: 1 nodeSelector: {} + disableCommands: [] + affinity: {} + tolerations: [] image: registry: docker.io repository: redis @@ -24,14 +30,58 @@ mongodb: architecture: "replicaset" replicaSetName: rs0 nodeSelector: {} + affinity: {} + tolerations: [] image: registry: docker.io repository: bitnami/mongodb tag: 6.0.13 arbiter: nodeSelector: {} + affinity: {} + tolerations: [] hidden: nodeSelector: {} + affinity: {} + tolerations: [] + image: + registry: docker.io + repository: bitnami/mongodb + tag: 6.0.13 + +## postgresql parameters +postgresql: + enabled: true + auth: + username: root + password: password + postgresPassword: password + database: keycloak + image: + registry: docker.io + repository: bitnami/postgresql + tag: 14.12.0 + primary: + affinity: {} + nodeSelector: {} + tolerations: [] + readReplicas: + affinity: {} + nodeSelector: {} + tolerations: [] + +## external secrets parameters +externalSecrets: + enabled: false + refreshInterval: 1m + remoteNameSecret: "" # name of the secret in Secret provider + + +## prometheus paramaters +prometheus: + enabled: false + image: + tag: v0.74.0 ## @section Global parameters @@ -74,11 +124,13 @@ initContainer: {} # image: docker.io/bitnami/redis-cluster:7.0.13-debian-11-r10 # mongodb: # image: docker.io/bitnami/mongodb:5.0.21-debian-11-r5 + # postgresql: + # image: docker.io/bitnami/postgresql:14.5.0-debian-11-r21 ## Image ## image: registry: index.docker.io - repository: appsmith/appsmith-ce + repository: appsmith/appsmith-ee pullPolicy: IfNotPresent pullSecrets: "" # Overrides the image tag whose default is the chart appVersion. @@ -201,6 +253,12 @@ ingress: ## className: "nginx" +customCAcert: +# cert1: | +# paste-cert-1-contents-here +# cert2: | +# paste-cert-2-contents-here + resources: # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little @@ -213,14 +271,29 @@ resources: # cpu: 100m # memory: 128Mi limits: {} - requests: {} + requests: + cpu: 500m + memory: 3000Mi + +autoscaling: + enabled: false + minReplicas: 2 + maxReplicas: 2 + targetCPUUtilizationPercentage: 5 nodeSelector: {} +#HTTPContainerPort: 8080 + tolerations: [] affinity: {} +#topologySpreadConstraints: +# - maxSkew: 1 # distribute pods in an absolute even manner +# topologyKey: kubernetes.io/hostname # use the hostname as topology domain +# whenUnsatisfiable: ScheduleAnyway # always schedule pods even if it can’t satisfy even distribution of pods + persistence: ## @param persistence.enabled - Enable data persistence using PVC ## @@ -239,15 +312,39 @@ persistence: storagePath: /tmp/hostpath_pv ## @param persistence.localCluster ## - localCluster: - - minikube + localCluster: {} ## @param persistence.accessModes PV Access Mode ## accessModes: - - ReadWriteOnce + - ReadWriteMany ## @param persistence.size PVC Storage Request ## size: 10Gi + ## Fine tuning for volumeClaimTemplates + ## + reclaimPolicy: Retain + existingClaim: + enabled: + name: + claimName: + efs: + enabled: + driver: + volumeHandle: + volumeClaimTemplates: + ## @param persistence.volumeClaimTemplates.selector A label query over volumes to consider for binding (e.g. when using local volumes) + ## A label query over volumes to consider for binding (e.g. when using local volumes) + ## See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.20/#labelselector-v1-meta for more details + ## + selector: {} + ## @param persistence.volumeClaimTemplates.requests Custom PVC requests attributes + ## Sometime cloud providers use additional requests attributes to provision custom storage instance + ## See https://cloud.ibm.com/docs/containers?topic=containers-file_storage#file_dynamic_statefulset + ## + requests: {} + ## @param persistence.volumeClaimTemplates.dataSource Add dataSource to the VolumeClaimTemplate + ## + dataSource: {} # tags: # install-ingress-nginx: true storageClass: @@ -279,6 +376,25 @@ storageClass: ## parameters: {} +podDisruptionBudgets: + enabled: true + minAvailable: 1 + +metrics: + enabled: false + port: 2019 + +keda: + enabled: false + pollingInterval: 30 + cooldownPeriod: 60 + minReplicaCount: 1 + maxReplicaCount: 6 + fallback: + failureThreshold: 3 + replicas: 4 + triggers: [] + autoupdate: ## @param autoupdate.enabled - Enable config autoupdate ## @@ -316,5 +432,8 @@ applicationConfig: APPSMITH_ENCRYPTION_SALT: "" APPSMITH_CUSTOM_DOMAIN: "" APPSMITH_DISABLE_IFRAME_WIDGET_SANDBOX: "false" - -#HTTPContainerPort: 8080 + APPSMITH_LICENSE_KEY: "" + APPSMITH_KEYCLOAK_DB_DRIVER: "" + APPSMITH_KEYCLOAK_DB_USERNAME: "" + APPSMITH_KEYCLOAK_DB_PASSWORD: "" + APPSMITH_KEYCLOAK_DB_URL: "" diff --git a/scripts/deploy_preview.sh b/scripts/deploy_preview.sh index f7d7873fdb10..194c1463c28e 100755 --- a/scripts/deploy_preview.sh +++ b/scripts/deploy_preview.sh @@ -99,6 +99,7 @@ helm upgrade -i "$CHARTNAME" "appsmith-ee/$HELMCHART" -n "$NAMESPACE" --create-n --set persistence.efs.driver=efs.csi.aws.com --set persistence.storageClass=efs-dp-appsmith \ --set persistence.efs.volumeHandle="$DP_EFS_ID:/$edition/$edition$PULL_REQUEST_NUMBER" \ --set resources.requests.cpu="1m" \ + --set podDisruptionBudgets.enabled=false \ --set resources.requests.memory="2048Mi" \ --set applicationConfig.APPSMITH_SENTRY_DSN="https://abf15a075d1347969df44c746cca7eaa@o296332.ingest.sentry.io/1546547" \ --set applicationConfig.APPSMITH_SENTRY_ENVIRONMENT="$NAMESPACE" \