Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/bfd-model-idr/generator_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ def handle_mbis(self, patient, num_mbis, custom_first_mbi=None):

# Create the MBI object with all required fields
mbi_obj["BENE_MBI_EFCTV_DT"] = str(efctv_dt)
mbi_obj["IDR_LTST_TRANS_FLG"] = "Y"
if mbi_idx != num_mbis - 1:
# Calculate obsolescence date
obslt_dt = self.fake.date_between_dates(
Expand Down Expand Up @@ -495,6 +496,7 @@ def save_output_files(self):
"BENE_MBI_ID",
"BENE_MBI_EFCTV_DT",
"BENE_MBI_OBSLT_DT",
"IDR_LTST_TRANS_FLG",
"IDR_TRANS_EFCTV_TS",
"IDR_INSRT_TS",
"IDR_UPDT_TS",
Expand Down
1 change: 1 addition & 0 deletions apps/bfd-pipeline/bfd-pipeline-idr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ PIPELINE_MIN_TRANSACTION_DATE=2024-01-01 uv run ./pipeline.py
- Add the data to `mock-idr.sql` (local representation of the IDR schema)
- Add the data to `bfd.sql` (BFD database definition)
- Add the data to `model.py`, queries will be auto-generated using those fields
- Add the data to `generator_util.py`, for synthetic data generation
Comment thread
MahiFentaye marked this conversation as resolved.
- If adding a new table, register it in the call to `load_all` in `pipeline.py`
- If adding a new table, register it in the list of CSVs to load in `load_synthetic.py`

Expand Down
4 changes: 3 additions & 1 deletion apps/bfd-pipeline/bfd-pipeline-idr/bfd.sql
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ CREATE TABLE idr.beneficiary_mbi_id (
bene_mbi_id VARCHAR(11) NOT NULL,
bene_mbi_efctv_dt DATE NOT NULL,
bene_mbi_obslt_dt DATE NOT NULL,
idr_ltst_trans_flg VARCHAR(1) NOT NULL,
idr_trans_efctv_ts TIMESTAMPTZ NOT NULL,
idr_trans_obslt_ts TIMESTAMPTZ NOT NULL,
idr_insrt_ts TIMESTAMPTZ NOT NULL,
Expand Down Expand Up @@ -490,7 +491,8 @@ SELECT DISTINCT
bene_mbi.bene_mbi_obslt_dt
FROM idr.beneficiary bene
LEFT JOIN idr.beneficiary_mbi_id bene_mbi
ON bene.bene_mbi_id = bene_mbi.bene_mbi_id;
ON bene.bene_mbi_id = bene_mbi.bene_mbi_id
WHERE bene_mbi.idr_ltst_trans_flg = 'Y';

CREATE OR REPLACE FUNCTION idr.refresh_overshare_mbis()
RETURNS VOID AS $$
Expand Down
1 change: 1 addition & 0 deletions apps/bfd-pipeline/bfd-pipeline-idr/mock-idr.sql
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ CREATE TABLE cms_vdm_view_mdcr_prd.v2_mdcr_bene_mbi_id (
bene_mbi_id VARCHAR(11) NOT NULL,
bene_mbi_efctv_dt DATE,
bene_mbi_obslt_dt DATE,
idr_ltst_trans_flg VARCHAR(1) NOT NULL,
idr_trans_efctv_ts TIMESTAMPTZ,
idr_trans_obslt_ts TIMESTAMPTZ,
idr_insrt_ts TIMESTAMPTZ NOT NULL,
Expand Down
1 change: 1 addition & 0 deletions apps/bfd-pipeline/bfd-pipeline-idr/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ class IdrBeneficiaryMbiId(IdrBaseModel):
bene_mbi_id: Annotated[str, {PRIMARY_KEY: True}]
bene_mbi_efctv_dt: date
bene_mbi_obslt_dt: Annotated[date, BeforeValidator(transform_null_date_to_max)]
idr_ltst_trans_flg: Annotated[str, BeforeValidator(transform_null_string)]
idr_trans_efctv_ts: Annotated[datetime, {PRIMARY_KEY: True}]
idr_trans_obslt_ts: datetime
idr_insrt_ts: Annotated[datetime, {BATCH_TIMESTAMP: True}]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS
3O70AK7EV90,2019-01-09,,2019-07-14 10:46:44.969102,2024-08-14 16:42:20.169256,2024-10-25 03:24:56.468686,9999-12-31T00:00:00.000000+0000
5BT2EA6WD29,2019-09-14,,2020-06-30 00:08:45.892838,2020-11-30 20:29:39.404509,2021-12-21 18:48:34.376486,9999-12-31T00:00:00.000000+0000
3B94W15VP96,2019-08-07,2021-01-19,2023-10-19 16:30:44.129928,2024-10-22 17:54:09.022356,2025-06-20 18:42:48.444574,9999-12-31T00:00:00.000000+0000
6LM1C27GV22,2021-01-20,,2022-08-03 06:51:27.612453,2023-05-06 05:37:17.568601,2025-08-14 10:57:31.791021,9999-12-31T00:00:00.000000+0000
5L30EQ5NF27,2019-08-09,,2022-07-02 22:37:37.026236,2023-12-01 05:14:58.415829,2024-11-07 14:50:48.547944,9999-12-31T00:00:00.000000+0000
7L39WE5EH95,2019-05-08,2020-12-03,2025-05-13 02:34:16.914907,2025-08-02 05:16:03.867781,2025-08-06 00:19:56.621377,9999-12-31T00:00:00.000000+0000
3IU5NP6NR82,2020-12-04,2021-03-21,2021-09-26 22:51:01.035960,2025-03-14 16:31:12.491678,2025-04-18 00:32:35.322138,9999-12-31T00:00:00.000000+0000
2Z31H27JN68,2021-03-22,,2023-12-14 20:34:44.113687,2025-07-06 01:34:44.009883,2025-07-31 05:45:29.708236,9999-12-31T00:00:00.000000+0000
1IV7HQ8CH15,2019-01-04,2019-02-04,2022-05-29 01:32:57.529393,2023-06-30 22:20:43.034827,2023-08-03 22:56:58.174077,9999-12-31T00:00:00.000000+0000
6OD5EY7KH88,2019-02-05,2021-05-08,2020-11-14 08:54:49.264642,2021-06-12 17:32:39.720867,2021-11-12 04:12:44.322532,9999-12-31T00:00:00.000000+0000
1BC3JG0FM51,2021-05-09,2022-04-19,2021-11-22 04:28:27.918078,2024-04-29 07:07:00.099098,2025-01-01 04:55:31.156272,9999-12-31T00:00:00.000000+0000
4ZN0F88MN95,2022-04-20,,2025-04-02 17:38:43.038537,2025-04-19 00:02:42.017183,2025-06-14 11:53:19.461747,9999-12-31T00:00:00.000000+0000
2ZT2XU2EN18,2018-06-12,,2022-08-03 08:42:40.006908,2024-08-23 15:47:16.675312,2024-11-26 21:24:12.296706,9999-12-31T00:00:00.000000+0000
5B88XK5JN88,2020-12-10,,2024-02-15 01:10:37.687403,2025-04-12 11:10:09.071290,2025-06-11 03:12:21.123479,9999-12-31T00:00:00.000000+0000
5OW4E30TP59,2017-11-16,,2019-08-08 01:33:44.072283,2024-10-05 22:18:29.883138,2025-01-15 22:34:16.688514,9999-12-31T00:00:00.000000+0000
3O89E45FJ24,2020-02-23,,2020-05-18 17:58:20.340356,2020-07-31 19:55:52.780229,2022-04-05 07:56:41.992478,9999-12-31T00:00:00.000000+0000
4B11RX3WE99,2018-09-03,,2019-03-16 00:57:36.827515,2021-12-21 19:57:48.341352,2025-07-10 13:36:00.812765,9999-12-31T00:00:00.000000+0000
9B30HF8XX60,2018-01-24,,2018-02-10 01:32:23.280234,2019-05-09 18:36:01.415627,2022-06-20 01:25:30.996807,9999-12-31T00:00:00.000000+0000
7B53M34DA63,2019-12-29,,2020-02-28 13:53:39.516873,2022-07-20 19:44:10.791259,2023-10-23 12:49:29.957352,9999-12-31T00:00:00.000000+0000
7ZM6HW2AT68,2019-04-23,,2024-11-27 09:55:08.255154,2025-07-18 05:47:29.198732,2025-07-30 19:16:43.344834,9999-12-31T00:00:00.000000+0000
5OH0K85GU23,2020-10-05,,2020-11-27 18:16:24.896607,2025-03-23 06:23:01.973925,2025-06-02 07:31:47.100884,9999-12-31T00:00:00.000000+0000
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS,IDR_LTST_TRANS_FLG
3O70AK7EV90,2019-01-09,,2019-07-14 10:46:44.969102,2024-08-14 16:42:20.169256,2024-10-25 03:24:56.468686,9999-12-31T00:00:00.000000+0000,Y
5BT2EA6WD29,2019-09-14,,2020-06-30 00:08:45.892838,2020-11-30 20:29:39.404509,2021-12-21 18:48:34.376486,9999-12-31T00:00:00.000000+0000,Y
3B94W15VP96,2019-08-07,2021-01-19,2023-10-19 16:30:44.129928,2024-10-22 17:54:09.022356,2025-06-20 18:42:48.444574,9999-12-31T00:00:00.000000+0000,N
6LM1C27GV22,2021-01-20,,2022-08-03 06:51:27.612453,2023-05-06 05:37:17.568601,2025-08-14 10:57:31.791021,9999-12-31T00:00:00.000000+0000,Y
5L30EQ5NF27,2019-08-09,,2022-07-02 22:37:37.026236,2023-12-01 05:14:58.415829,2024-11-07 14:50:48.547944,9999-12-31T00:00:00.000000+0000,N
7L39WE5EH95,2019-05-08,2020-12-03,2025-05-13 02:34:16.914907,2025-08-02 05:16:03.867781,2025-08-06 00:19:56.621377,9999-12-31T00:00:00.000000+0000,Y
3IU5NP6NR82,2020-12-04,2021-03-21,2021-09-26 22:51:01.035960,2025-03-14 16:31:12.491678,2025-04-18 00:32:35.322138,9999-12-31T00:00:00.000000+0000,Y
2Z31H27JN68,2021-03-22,,2023-12-14 20:34:44.113687,2025-07-06 01:34:44.009883,2025-07-31 05:45:29.708236,9999-12-31T00:00:00.000000+0000,Y
1IV7HQ8CH15,2019-01-04,2019-02-04,2022-05-29 01:32:57.529393,2023-06-30 22:20:43.034827,2023-08-03 22:56:58.174077,9999-12-31T00:00:00.000000+0000,N
6OD5EY7KH88,2019-02-05,2021-05-08,2020-11-14 08:54:49.264642,2021-06-12 17:32:39.720867,2021-11-12 04:12:44.322532,9999-12-31T00:00:00.000000+0000,N
1BC3JG0FM51,2021-05-09,2022-04-19,2021-11-22 04:28:27.918078,2024-04-29 07:07:00.099098,2025-01-01 04:55:31.156272,9999-12-31T00:00:00.000000+0000,Y
4ZN0F88MN95,2022-04-20,,2025-04-02 17:38:43.038537,2025-04-19 00:02:42.017183,2025-06-14 11:53:19.461747,9999-12-31T00:00:00.000000+0000,Y
2ZT2XU2EN18,2018-06-12,,2022-08-03 08:42:40.006908,2024-08-23 15:47:16.675312,2024-11-26 21:24:12.296706,9999-12-31T00:00:00.000000+0000,Y
5B88XK5JN88,2020-12-10,,2024-02-15 01:10:37.687403,2025-04-12 11:10:09.071290,2025-06-11 03:12:21.123479,9999-12-31T00:00:00.000000+0000,N
5OW4E30TP59,2017-11-16,,2019-08-08 01:33:44.072283,2024-10-05 22:18:29.883138,2025-01-15 22:34:16.688514,9999-12-31T00:00:00.000000+0000,Y
3O89E45FJ24,2020-02-23,,2020-05-18 17:58:20.340356,2020-07-31 19:55:52.780229,2022-04-05 07:56:41.992478,9999-12-31T00:00:00.000000+0000,Y
4B11RX3WE99,2018-09-03,,2019-03-16 00:57:36.827515,2021-12-21 19:57:48.341352,2025-07-10 13:36:00.812765,9999-12-31T00:00:00.000000+0000,N
9B30HF8XX60,2018-01-24,,2018-02-10 01:32:23.280234,2019-05-09 18:36:01.415627,2022-06-20 01:25:30.996807,9999-12-31T00:00:00.000000+0000,N
7B53M34DA63,2019-12-29,,2020-02-28 13:53:39.516873,2022-07-20 19:44:10.791259,2023-10-23 12:49:29.957352,9999-12-31T00:00:00.000000+0000,Y
7ZM6HW2AT68,2019-04-23,,2024-11-27 09:55:08.255154,2025-07-18 05:47:29.198732,2025-07-30 19:16:43.344834,9999-12-31T00:00:00.000000+0000,Y
5OH0K85GU23,2020-10-05,,2020-11-27 18:16:24.896607,2025-03-23 06:23:01.973925,2025-06-02 07:31:47.100884,9999-12-31T00:00:00.000000+0000,N
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS
8Z73WV0QC20,2020-04-21,2020-05-25,2022-07-10 09:11:52.588300,2023-05-07 17:37:59.821448,9999-12-31 00:00:00.000000,9999-12-31 00:00:00.000000
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS,IDR_LTST_TRANS_FLG
8Z73WV0QC20,2020-04-21,2020-05-25,2022-07-10 09:11:52.588300,2023-05-07 17:37:59.821448,9999-12-31 00:00:00.000000,9999-12-31 00:00:00.000000,Y
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS
6ON6NC8FE68,2018-05-26,,2025-05-01 00:54:57.522606,2025-06-19 07:52:45.281868,2025-07-26 01:27:07.535318,9999-12-31T00:00:00.000000+0000
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS,IDR_LTST_TRANS_FLG
6ON6NC8FE68,2018-05-26,,2025-05-01 00:54:57.522606,2025-06-19 07:52:45.281868,2025-07-26 01:27:07.535318,9999-12-31T00:00:00.000000+0000,Y
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS
5OK1QQ8NJ30,2020-08-28,,2023-01-18 01:20:27.014616,2023-03-17 16:42:55.020162,2025-01-11 00:25:20.362510,9999-12-31T00:00:00.000000+0000
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS,IDR_LTST_TRANS_FLG
5OK1QQ8NJ30,2020-08-28,,2023-01-18 01:20:27.014616,2023-03-17 16:42:55.020162,2025-01-11 00:25:20.362510,9999-12-31T00:00:00.000000+0000,Y
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS
2B19C89AA35,2020-04-21,9999-12-31,2022-07-10 09:11:52.588300,2023-05-07 17:37:59.821448,9999-12-31 00:00:00.000000,9999-12-31 00:00:00.000000
2B19C89AA36,2020-04-21,2024-12-31,2022-07-10 09:11:52.588300,2023-05-07 17:37:59.821448,9999-12-31 00:00:00.000000,9999-12-31 00:00:00.000000
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS,IDR_LTST_TRANS_FLG
2B19C89AA35,2020-04-21,9999-12-31,2022-07-10 09:11:52.588300,2023-05-07 17:37:59.821448,9999-12-31 00:00:00.000000,9999-12-31 00:00:00.000000,Y
2B19C89AA36,2020-04-21,2024-12-31,2022-07-10 09:11:52.588300,2023-05-07 17:37:59.821448,9999-12-31 00:00:00.000000,9999-12-31 00:00:00.000000,Y
2B19C89AA37,2020-04-21,9999-12-31,2022-07-10 09:11:52.588300,2023-05-07 17:37:59.821448,9999-12-31 00:00:00.000000,9999-12-31 00:00:00.000000,Y
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS
3I21NG6VA25,2019-12-03,,2021-11-09 15:36:32.736388,2022-03-21 15:16:04.746919,2023-09-25 02:13:00.511983,9999-12-31T00:00:00.000000+0000
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS,IDR_LTST_TRANS_FLG
3I21NG6VA25,2019-12-03,,2021-11-09 15:36:32.736388,2022-03-21 15:16:04.746919,2023-09-25 02:13:00.511983,9999-12-31T00:00:00.000000+0000,Y
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS
7LG8FN9CN12,2018-06-27,2019-12-02,2022-04-06 14:13:33.515499,2022-08-24 19:31:44.287376,2022-09-12 15:42:33.371732,9999-12-31T00:00:00.000000+0000
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS,IDR_LTST_TRANS_FLG
7LG8FN9CN12,2018-06-27,2019-12-02,2022-04-06 14:13:33.515499,2022-08-24 19:31:44.287376,2022-09-12 15:42:33.371732,9999-12-31T00:00:00.000000+0000,Y
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS,IDR_LTST_TRANS_FLG
9OJ2CG2UC85,2030-06-27,2019-12-02,2023-09-12 01:53:35.572554,2025-04-26 14:53:59.117910,9999-12-31T00:00:00.000000+0000,9999-12-31 00:00:00.000000,Y
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS
1L26RW8YW56,2019-11-23,,2024-11-02 04:41:30.464743,2025-08-03 04:46:22.915689,2025-08-03 06:36:16.375394,9999-12-31T00:00:00.000000+0000
BENE_MBI_ID,BENE_MBI_EFCTV_DT,BENE_MBI_OBSLT_DT,IDR_TRANS_EFCTV_TS,IDR_INSRT_TS,IDR_UPDT_TS,IDR_TRANS_OBSLT_TS,IDR_LTST_TRANS_FLG
1L26RW8YW56,2019-11-23,,2024-11-02 04:41:30.464743,2025-08-03 04:46:22.915689,2025-08-03 06:36:16.375394,9999-12-31T00:00:00.000000+0000,Y
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ gov.cms.bfd.server.ng.PatientReadIT.patientReadUnMergedWithHistoricKillCredit=[
"gender" : "male",
"id" : "232323232",
"identifier" : [ {
Comment thread
MahiFentaye marked this conversation as resolved.
"period" : {
"start" : "2020-04-21T00:00:00+00:00"
},
"system" : "http://hl7.org/fhir/sid/us-mbi",
"type" : {
"coding" : [ {
Expand Down Expand Up @@ -197,6 +200,10 @@ gov.cms.bfd.server.ng.PatientReadIT.patientReadValidLong=[
"gender" : "male",
"id" : "178083966",
"identifier" : [ {
"period" : {
"end" : "2019-12-02T00:00:00+00:00",
"start" : "2030-06-27T00:00:00+00:00"
},
"system" : "http://hl7.org/fhir/sid/us-mbi",
"type" : {
"coding" : [ {
Expand Down Expand Up @@ -256,6 +263,10 @@ gov.cms.bfd.server.ng.PatientReadIT.patientReadValidString=[
"gender" : "male",
"id" : "178083966",
"identifier" : [ {
"period" : {
"end" : "2019-12-02T00:00:00+00:00",
"start" : "2030-06-27T00:00:00+00:00"
},
"system" : "http://hl7.org/fhir/sid/us-mbi",
"type" : {
"coding" : [ {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,9 @@ gov.cms.bfd.server.ng.PatientSearchIT.patientSearchByIdUnMergedWithHistoricKillC
"gender" : "male",
"id" : "232323232",
"identifier" : [ {
"period" : {
"start" : "2020-04-21T00:00:00+00:00"
},
"system" : "http://hl7.org/fhir/sid/us-mbi",
"type" : {
"coding" : [ {
Expand Down Expand Up @@ -551,6 +554,9 @@ gov.cms.bfd.server.ng.PatientSearchIT.patientSearchByIdUnMergedWithHistoricKillC
"gender" : "male",
"id" : "232323232",
"identifier" : [ {
"period" : {
"start" : "2020-04-21T00:00:00+00:00"
},
"system" : "http://hl7.org/fhir/sid/us-mbi",
"type" : {
"coding" : [ {
Expand Down Expand Up @@ -624,6 +630,9 @@ gov.cms.bfd.server.ng.PatientSearchIT.patientSearchByIdUnMergedWithHistoricKillC
"gender" : "male",
"id" : "232323232",
"identifier" : [ {
"period" : {
"start" : "2020-04-21T00:00:00+00:00"
},
"system" : "http://hl7.org/fhir/sid/us-mbi",
"type" : {
"coding" : [ {
Expand Down Expand Up @@ -697,6 +706,10 @@ gov.cms.bfd.server.ng.PatientSearchIT.patientSearchById[GET]=[
"gender" : "male",
"id" : "178083966",
"identifier" : [ {
"period" : {
"end" : "2019-12-02T00:00:00+00:00",
"start" : "2030-06-27T00:00:00+00:00"
},
"system" : "http://hl7.org/fhir/sid/us-mbi",
"type" : {
"coding" : [ {
Expand Down Expand Up @@ -770,6 +783,10 @@ gov.cms.bfd.server.ng.PatientSearchIT.patientSearchById[GET_WITH_SEARCH]=[
"gender" : "male",
"id" : "178083966",
"identifier" : [ {
"period" : {
"end" : "2019-12-02T00:00:00+00:00",
"start" : "2030-06-27T00:00:00+00:00"
},
"system" : "http://hl7.org/fhir/sid/us-mbi",
"type" : {
"coding" : [ {
Expand Down Expand Up @@ -843,6 +860,10 @@ gov.cms.bfd.server.ng.PatientSearchIT.patientSearchById[POST]=[
"gender" : "male",
"id" : "178083966",
"identifier" : [ {
"period" : {
"end" : "2019-12-02T00:00:00+00:00",
"start" : "2030-06-27T00:00:00+00:00"
},
"system" : "http://hl7.org/fhir/sid/us-mbi",
"type" : {
"coding" : [ {
Expand Down