From 8e1cad063756e29d2721f04022aa40aa6ae0ec3d Mon Sep 17 00:00:00 2001 From: Mary McGrath Date: Thu, 12 Dec 2024 10:46:06 -0500 Subject: [PATCH 1/8] fix: wip - spec source --- data/Templates/eCR/Entry/Result/_entry.liquid | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/data/Templates/eCR/Entry/Result/_entry.liquid b/data/Templates/eCR/Entry/Result/_entry.liquid index d1ddf4b1..febf6d83 100644 --- a/data/Templates/eCR/Entry/Result/_entry.liquid +++ b/data/Templates/eCR/Entry/Result/_entry.liquid @@ -51,12 +51,15 @@ {% elsif playingEntity.code.displayName -%} {% assign specValue = playingEntity.code.displayName -%} {% else -%} - {% assign specValue = "None" -%} + {% comment %} {% assign specValue = "None" -%} {% endcomment %} {% endif -%} {% else -%} - {% assign specValue = "None" -%} + {% comment %} {% assign specValue = "None" -%} {% endcomment %} {% endif -%} {% endif -%} + {% if specValue == null and receiveTime != null %} + {{ comp.procedure | print_object }} + {% endif %} {% endfor-%} {% for component in comps %} {% include 'Entry/Result/entry_organizer_component' with component, text: text %} From 3e7f44ccf4610db849368ec3eb5f913213ac6f20 Mon Sep 17 00:00:00 2001 From: Mary McGrath Date: Thu, 12 Dec 2024 10:54:26 -0500 Subject: [PATCH 2/8] fix: none => null cleanup --- data/Templates/eCR/Entry/Result/_entry.liquid | 9 --------- data/Templates/eCR/Resource/_Observation.liquid | 8 ++++---- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/data/Templates/eCR/Entry/Result/_entry.liquid b/data/Templates/eCR/Entry/Result/_entry.liquid index febf6d83..6d344b38 100644 --- a/data/Templates/eCR/Entry/Result/_entry.liquid +++ b/data/Templates/eCR/Entry/Result/_entry.liquid @@ -22,8 +22,6 @@ {% assign collectTime = entry.organizer.effectiveTime.high.value -%} {% elsif entry.organizer.effectiveTime and entry.organizer.effectiveTime.value and entry.organizer.effectiveTime.value != "UNK"-%} {% assign collectTime = entry.organizer.effectiveTime.value -%} - {% else -%} - {% assign collectTime = "None" -%} {% endif -%} {% assign comps = entry.organizer.component | to_array -%} @@ -50,16 +48,9 @@ {% assign specValue = playingEntity.code.originalText._ -%} {% elsif playingEntity.code.displayName -%} {% assign specValue = playingEntity.code.displayName -%} - {% else -%} - {% comment %} {% assign specValue = "None" -%} {% endcomment %} {% endif -%} - {% else -%} - {% comment %} {% assign specValue = "None" -%} {% endcomment %} {% endif -%} {% endif -%} - {% if specValue == null and receiveTime != null %} - {{ comp.procedure | print_object }} - {% endif %} {% endfor-%} {% for component in comps %} {% include 'Entry/Result/entry_organizer_component' with component, text: text %} diff --git a/data/Templates/eCR/Resource/_Observation.liquid b/data/Templates/eCR/Resource/_Observation.liquid index 5864390f..f21b483f 100644 --- a/data/Templates/eCR/Resource/_Observation.liquid +++ b/data/Templates/eCR/Resource/_Observation.liquid @@ -140,23 +140,23 @@ {% assign observationValueReferenceValue = observationEntry.value.reference.value -%} "extension": [ { - {% if specimenValue and specimenValue != "None" or collectTime and collectTime != "None" or observationTextReferenceValue != "None" or observationValueReferenceValue != "None" -%} + {% if specimenValue != null or collectTime != null or receiveTime != null or observationTextReferenceValue != null or observationValueReferenceValue != null -%} "url" : "http://hl7.org/fhir/R4/specimen.html", "extension": [ - {% if specimenValue and specimenValue != "None" -%} + {% if specimenValue != null -%} { "url" : "specimen source", "valueString" : "{{ specimenValue }}", }, {% endif -%} - {% if collectTime and collectTime != "None" -%} + {% if collectTime != null -%} { "url" : "specimen collection time", "valueDateTime" : "{{ collectTime | format_as_date_time }}", }, {% endif -%} - {% if receiveTime and receiveTime != "None" -%} + {% if receiveTime != null -%} { "url" : "specimen receive time", "valueDateTime" : "{{ receiveTime | format_as_date_time }}", From 464a3f6c99b773efd1f809aa3396a70b0c7c1a8c Mon Sep 17 00:00:00 2001 From: Mary McGrath Date: Thu, 12 Dec 2024 11:05:06 -0500 Subject: [PATCH 3/8] style: make data passing more explicit --- data/Templates/eCR/Entry/Result/_entry.liquid | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/data/Templates/eCR/Entry/Result/_entry.liquid b/data/Templates/eCR/Entry/Result/_entry.liquid index 6d344b38..74a394c0 100644 --- a/data/Templates/eCR/Entry/Result/_entry.liquid +++ b/data/Templates/eCR/Entry/Result/_entry.liquid @@ -16,6 +16,7 @@ {% include 'Reference/DiagnosticReport/Performer' ID: diagnosticId, REF: fullPerformerId -%} {% endif -%} {% endif -%} + {% assign collectTime = null %} {% if entry.organizer.effectiveTime.low and entry.organizer.effectiveTime.low.value -%} {% assign collectTime = entry.organizer.effectiveTime.low.value -%} {% elsif entry.organizer.effectiveTime.high and entry.organizer.effectiveTime.high.value -%} @@ -24,6 +25,8 @@ {% assign collectTime = entry.organizer.effectiveTime.value -%} {% endif -%} + {% assign specValue = null %} + {% assign recieveTime = null %} {% assign comps = entry.organizer.component | to_array -%} {% for comp in comps -%} {% if comp.procedure -%} @@ -53,6 +56,6 @@ {% endif -%} {% endfor-%} {% for component in comps %} - {% include 'Entry/Result/entry_organizer_component' with component, text: text %} + {% include 'Entry/Result/entry_organizer_component' with component, text: text, specValue: specValue, collectTime: collectTime, receiveTime: receiveTime, diagnosticId: diagnosticId %} {% endfor %} {% endif -%} From 4cf966f7af5843e57a33edb3da0dad58dcf64598 Mon Sep 17 00:00:00 2001 From: Mary McGrath Date: Thu, 12 Dec 2024 13:59:19 -0500 Subject: [PATCH 4/8] fix: prevent leaks --- data/Templates/eCR/Entry/Result/_entry.liquid | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/data/Templates/eCR/Entry/Result/_entry.liquid b/data/Templates/eCR/Entry/Result/_entry.liquid index 74a394c0..56b41f9b 100644 --- a/data/Templates/eCR/Entry/Result/_entry.liquid +++ b/data/Templates/eCR/Entry/Result/_entry.liquid @@ -26,7 +26,7 @@ {% endif -%} {% assign specValue = null %} - {% assign recieveTime = null %} + {% assign receiveTime = null %} {% assign comps = entry.organizer.component | to_array -%} {% for comp in comps -%} {% if comp.procedure -%} @@ -59,3 +59,7 @@ {% include 'Entry/Result/entry_organizer_component' with component, text: text, specValue: specValue, collectTime: collectTime, receiveTime: receiveTime, diagnosticId: diagnosticId %} {% endfor %} {% endif -%} +{% comment %} Prevent weird variable leakage {% endcomment %} +{% assign specValue = null %} +{% assign receiveTime = null %} +{% assign collectTime = null %} From 4d43a93e6d1433e65d25b0d1c855e941a673d2cf Mon Sep 17 00:00:00 2001 From: Mary McGrath Date: Fri, 13 Dec 2024 08:50:52 -0500 Subject: [PATCH 5/8] fix: tighter if condition --- data/Templates/eCR/Resource/_Observation.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/Templates/eCR/Resource/_Observation.liquid b/data/Templates/eCR/Resource/_Observation.liquid index f21b483f..2fb35edc 100644 --- a/data/Templates/eCR/Resource/_Observation.liquid +++ b/data/Templates/eCR/Resource/_Observation.liquid @@ -140,7 +140,7 @@ {% assign observationValueReferenceValue = observationEntry.value.reference.value -%} "extension": [ { - {% if specimenValue != null or collectTime != null or receiveTime != null or observationTextReferenceValue != null or observationValueReferenceValue != null -%} + {% if specimenValue != null or collectTime != null or receiveTime != null -%} "url" : "http://hl7.org/fhir/R4/specimen.html", "extension": [ From cd0077829fd32ca0454ef1f2b57da044b5f3dfa6 Mon Sep 17 00:00:00 2001 From: Mary McGrath Date: Fri, 13 Dec 2024 10:04:31 -0500 Subject: [PATCH 6/8] test: add functional snapshot test for eCR --- data/SampleData/eCR/eCR_full.xml | 5790 ++++++++++++++++ data/Templates/eCR/Entry/Result/_entry.liquid | 2 +- .../BaseConvertDataFunctionalTests.cs | 28 +- ...emplateDirectoryProviderFunctionalTests.cs | 10 + .../DiffHelper.cs | 63 + .../Expected/eCR/EICR/eCR_full-expected.json | 6024 +++++++++++++++++ 6 files changed, 11914 insertions(+), 3 deletions(-) create mode 100644 data/SampleData/eCR/eCR_full.xml create mode 100644 src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/DiffHelper.cs create mode 100644 src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/TestData/Expected/eCR/EICR/eCR_full-expected.json diff --git a/data/SampleData/eCR/eCR_full.xml b/data/SampleData/eCR/eCR_full.xml new file mode 100644 index 00000000..8f246a56 --- /dev/null +++ b/data/SampleData/eCR/eCR_full.xml @@ -0,0 +1,5790 @@ + + + + + + + + + + Initial Public Health Case Report + + + + + + + + + + 9 Post Lane + NEWPORT BEACH + CA + 92663 + USA + + + + + + + + + + Adam + Test + + + + + + + + + + + + + + + + + + + Providence California + + + 4733 TORRANCE BLVD #4400 + LOS ANGELES + TORRANCE + CA + 90503 + USA + + + + + + + + + + + + + Providence California + + + 4733 TORRANCE BLVD #4400 + LOS ANGELES + TORRANCE + CA + 90503 + USA + + + + + + + + + + + + + + + + + + Lab Requisition + + + + + + + + + + + + + + + + + + + + + + + + Providence California + + 4733 TORRANCE BLVD #4400 + LOS ANGELES + TORRANCE + CA + 90503 + USA + + + + + + + + + + + Lab + + + PROVIDENCE ST JOSEPH MED CTR LABORATORY + + 501 S Buena Vista St + LOS ANGELES + Burbank + CA + 91505-4809 + USA + + + + + Providence St Joseph Medical Center + + + 501 S Buena Vista St + LOS ANGELES + Burbank + CA + 91505-4809 + USA + + + + Providence California + + + + + + + + + + + +
+ + + Miscellaneous Notes + + Not on file + documented in this + encounter + +
+
+ +
+ + + + + + + Immunizations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameAdministration DatesNext Due
DTAP-HIB-IPV (PENTACEL) + 04/16/2010 + +
HEP A (ADULT) 2 DOSE + 11/11/2011 + +
HEP B (PED,ADOLESCENT) 3 DOSE + 03/21/1974 + +
MENINGOCOCCAL CONJUGATE,MENACTRA + (PED/ADOL/ADULT) + 11/16/2020 + +
TDAP, (ADOL/ADULT) + 11/10/2020 + +
+ documented as of this + encounter +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 369258741 + + + Sanofi Pasteur + + + + + + + + + + + + + + + + Provma + Two + Ambtest + CMA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + Sanofi Pasteur + + + + + + + + + + + + + + + + Provma + Two + Ambtest + CMA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + + + + Administered Medications + + Not on file + documented in this + encounter + +
+
+ +
+ + + + Plan of Treatment + + Not on file + documented as of this + encounter + +
+
+ +
+ + + + + + Problems + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Active ProblemsNoted Date
Bipolar I disorder11/19/20
Reactive depression11/19/20
Rheumatoid arthritis with negative + rheumatoid factor11/16/20
Arthralgia of both ankles11/16/20
Anxiety11/10/20
Asthma11/10/20
Knee pain4/29/19
Sprain of calcaneofibular ligament of + right ankle4/16/19
+ A note: + Last Assessment & + Plan: + Formatting of this note + might be different from the original.
This + is my note about this problem.
+
+
+ documented as of this + encounter (statuses as of 09/28/2022) +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + + Reason for Visit + + Not on file + +
+
+ +
+ + + + + + + Results + + + + Stool + Pathogens, NAAT, 12 to 25 Targets (09/28/2022 1:51 PM PDT) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Campylobacter, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Plesiomonas + shigelloides, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Salmonella, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Vibrio, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Vibrio + cholerae, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Yersinia + enterocolitica, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
E. + Coli (EAEC), NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
E. + Coli (EPEC), NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
E. + Coli (ETEC), NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Shiga-Like + Toxin E. Coli (STEC), NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Shigella/EIEC, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Cryptosporidium, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Cyclospora + cayetanensis, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
E. + histolytica, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Giardia + lamblia, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Adenovirus + F 40/41, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Astrovirus, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Norovirus, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Rotavirus + A, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Sapovirus, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
+ + + + + + + + + + + + + + + + + + + + + +
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
+ StoolSTOOL SPECIMEN / Unknown + 09/28/2022 1:51 PM PDT09/28/2022 1:51 PM PDT
+ + + + + + + + + + + + + + + + + +
Authorizing ProviderResult Type
Ambhp1 Test MDMICROBIOLOGY - GENERAL ORDERABLES
+ + + + + + + + + + + + + + + + + + + + + +
Performing OrganizationAddressCity/State/ZIP CodePhone Number
+ PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + 501 S. Buena Vista Street + + Burbank, CA 91505 + + 818-847-6000 +
+
+ + (ABNORMAL) Stool Pathogens, NAAT, 12 to 25 + Targets (09/28/2022 1:51 PM PDT) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Campylobacter, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Plesiomonas + shigelloides, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Salmonella, + NAAT + DETECTED + (AA) + Not Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Vibrio, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Vibrio + cholerae, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Yersinia + enterocolitica, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
E. + Coli O157, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
E. + Coli (EAEC), NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
E. + Coli (EPEC), NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
E. + Coli (ETEC), NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Shiga-Like + Toxin E. Coli (STEC), NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Shigella/EIEC, + NAAT + DETECTED + (AA) + Not Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Cryptosporidium, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Cyclospora + cayetanensis, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
E. + histolytica, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Giardia + lamblia, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Adenovirus + F 40/41, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Astrovirus, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Norovirus, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Rotavirus + A, NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
Sapovirus, + NAATNot DetectedNot Detected + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
GI + Pathogens PanelAcceptable + + LAB + DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM + 09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY + (CLIA 05D0672675) +
+ + + + + + + + + + + + + + + + + + + + + +
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
+ StoolSTOOL SPECIMEN / Unknown + 09/28/2022 1:51 PM PDT09/28/2022 1:51 PM PDT
+ + + + + + + + + + + + + + + + + +
Authorizing ProviderResult Type
Ambhp1 Test MDMICROBIOLOGY - GENERAL ORDERABLES
+ + + + + + + + + + + + + + + + + + + + + +
Performing OrganizationAddressCity/State/ZIP CodePhone Number
+ PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + 501 S. Buena Vista Street + + Burbank, CA 91505 + + 818-847-6000 +
+
+
+ documented in this + encounter +
+ + + + + + + Stool Pathogens, NAAT, 12 to 25 Targets + + + + + + + + + + + + + + + + + + + Providence Health and Services Oregon and California + (TST) + + + + + + + + Endocrinology + + + + + 2001 LIND AVE + RENTON + WA + 98059 + + + + + Ambhp1 + Test + MD + + + + + + + + + + + + + + + + + + + + + + Stool + + + + + + + + + + + + + + + + + + + + + Campylobacter, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Plesiomonas shigelloides, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Salmonella, NAAT + + + + + + + + DETECTED + + + Abnormal Alert + + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Vibrio, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Vibrio cholerae, NAAT + + + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Yersinia enterocolitica, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + E. Coli O157, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + E. Coli (EAEC), NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + E. Coli (EPEC), NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + E. Coli (ETEC), NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + + Shiga-Like Toxin E. Coli (STEC), NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Shigella/EIEC, NAAT + + + + + + + + DETECTED + + + Abnormal Alert + + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Cryptosporidium, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Cyclospora cayetanensis, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + E. histolytica, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Giardia lamblia, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Adenovirus F 40/41, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Astrovirus, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Norovirus, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Rotavirus A, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Sapovirus, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + GI Pathogens Panel + + + + + + + + Acceptable + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + + + + + + + + Lab Interpretation + + + + Abnormal + + + + + + + + + + + + + + + + + + + + + Stool Pathogens, NAAT, 12 to 25 Targets + + + + + + + + + + + + + + + + + + + Providence Health and Services Oregon and California + (TST) + + + + + + + + Endocrinology + + + + + 2001 LIND AVE + RENTON + WA + 98059 + + + + + Ambhp1 + Test + MD + + + + + + + + + + + + + + + + + + + + + + Stool + + + + + + + + + + + + + + + + + + + + + Campylobacter, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Plesiomonas shigelloides, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Salmonella, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Vibrio, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Vibrio cholerae, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Yersinia enterocolitica, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + E. Coli (EAEC), NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + E. Coli (EPEC), NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + E. Coli (ETEC), NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Shiga-Like Toxin E. Coli (STEC), NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Shigella/EIEC, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Cryptosporidium, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Cyclospora cayetanensis, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + E. histolytica, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Giardia lamblia, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Adenovirus F 40/41, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Astrovirus, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Norovirus, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Rotavirus A, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + Sapovirus, NAAT + + + + + + + Not Detected + + + + + PROVIDENCE ST. JOSEPH MEDICAL CENTER + LABORATORY (CLIA 05D0672675) + + + 501 S. Buena Vista Street + Burbank + CA + 91505 + + + + + + + + + Kiran + B + Qidwai + + + + + + + Not Detected + Not Detected + + + + + + + + + + + + + Lab Interpretation + + + + Normal + + + + + + + + + + + + + + +
+
+ +
+ + + + Social History + + + + + + + + + + + + + + + + + + + + + + + + + +
Tobacco UseTypesPacks/DayYears UsedDate
Smoking Tobacco: Never + + + +
Smokeless Tobacco: Never + + + +
+ + + + + + + + + + + + + + + + + + +
Alcohol UseStandard Drinks/WeekComments
Yes0 (1 standard drink = 0.6 oz pure alcohol) +
+ + + + + + + + + + + + + + + + +
Sex Assigned at BirthDate Recorded
Not on file +
+ documented as of this + encounter +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + + + + + Encounter Details + + + + + + + + + + + + + + + + + + + + + + + + +
DateTypeDepartmentCare TeamDescription
9/28/22Lab Requisition + PROVIDENCE ST JOSEPH MED CTR LABORATORY + 501 S Buena Vista St + Burbank, CA 91505-4809 + 818-847-6060 + + Test, Ambhp1, MD + 2001 LIND AVE + RENTON, WA 98059 + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + Endocrinology + + + + + 2001 LIND AVE + RENTON + WA + 98059 + + + + + Ambhp1 + Test + MD + + + + + + + + + + Lab + + + 501 S Buena Vista St + LOS ANGELES + Burbank + CA + 91505-4809 + USA + + + PROVIDENCE ST JOSEPH MED CTR LABORATORY + Lab + + + + + +
+
+
+
+
diff --git a/data/Templates/eCR/Entry/Result/_entry.liquid b/data/Templates/eCR/Entry/Result/_entry.liquid index 56b41f9b..4ddfc0df 100644 --- a/data/Templates/eCR/Entry/Result/_entry.liquid +++ b/data/Templates/eCR/Entry/Result/_entry.liquid @@ -54,7 +54,7 @@ {% endif -%} {% endif -%} {% endif -%} - {% endfor-%} + {% endfor -%} {% for component in comps %} {% include 'Entry/Result/entry_organizer_component' with component, text: text, specValue: specValue, collectTime: collectTime, receiveTime: receiveTime, diagnosticId: diagnosticId %} {% endfor %} diff --git a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/BaseConvertDataFunctionalTests.cs b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/BaseConvertDataFunctionalTests.cs index 0d902ea2..40d91727 100644 --- a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/BaseConvertDataFunctionalTests.cs +++ b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/BaseConvertDataFunctionalTests.cs @@ -3,6 +3,7 @@ // Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. // ------------------------------------------------------------------------------------------------- +using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -213,6 +214,20 @@ public static IEnumerable GetDataForCcda() }); } + public static IEnumerable GetDataForEcr() + { + var data = new List + { + new[] { @"EICR", @"eCR_full.xml", @"eCR_full-expected.json" }, + }; + return data.Select(item => new[] + { + item[0], + Path.Join(Constants.SampleDataDirectory, "eCR", item[1]), + Path.Join(Constants.ExpectedDataFolder, "eCR", item[0], item[2]), + }); + } + public static IEnumerable GetDataForJson() { var data = new List @@ -332,8 +347,17 @@ protected void ConvertCCDAMessageAndValidateExpectedResponse(ITemplateProvider t var actualObject = JObject.Parse(actualContent); // Remove DocumentReference, where date is different every time conversion is run and gzip result is OS dependent - expectedObject["entry"]?.Last()?.Remove(); - actualObject["entry"]?.Last()?.Remove(); + if (expectedObject["entry"]?.Last()["resource"]["resourceType"].ToString() == "DocumentReference") + { + expectedObject["entry"]?.Last()?.Remove(); + actualObject["entry"]?.Last()?.Remove(); + } + + var diff = DiffHelper.FindDiff(actualObject, expectedObject); + if (diff.HasValues) + { + Console.WriteLine(diff); + } Assert.True(JToken.DeepEquals(expectedObject, actualObject)); } diff --git a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/ConvertDataTemplateDirectoryProviderFunctionalTests.cs b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/ConvertDataTemplateDirectoryProviderFunctionalTests.cs index 59d5e318..e103ddb2 100644 --- a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/ConvertDataTemplateDirectoryProviderFunctionalTests.cs +++ b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/ConvertDataTemplateDirectoryProviderFunctionalTests.cs @@ -88,6 +88,16 @@ public void GivenCcdaDocument_WhenConverting_ExpectedFhirResourceShouldBeReturne ConvertCCDAMessageAndValidateExpectedResponse(templateProvider, rootTemplate, inputFile, expectedFile); } + [Theory] + [MemberData(nameof(GetDataForEcr))] + public void GivenEcrDocument_WhenConverting_ExpectedFhirResourceShouldBeReturned(string rootTemplate, string inputFile, string expectedFile) + { + var templateDirectory = Path.Join(AppDomain.CurrentDomain.BaseDirectory, Constants.TemplateDirectory, "eCR"); + var templateProvider = new TemplateProvider(templateDirectory, DataType.Ccda); + + ConvertCCDAMessageAndValidateExpectedResponse(templateProvider, rootTemplate, inputFile, expectedFile); + } + [Theory] [MemberData(nameof(GetDataForStu3ToR4))] public void GivenStu3FhirData_WhenConverting_ExpectedR4FhirResourceShouldBeReturned(string rootTemplate, string inputFile, string expectedFile) diff --git a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/DiffHelper.cs b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/DiffHelper.cs new file mode 100644 index 00000000..9e3180d0 --- /dev/null +++ b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/DiffHelper.cs @@ -0,0 +1,63 @@ +using System.Linq; +using Newtonsoft.Json.Linq; + +namespace Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests +{ + public static class DiffHelper + { + public static JObject FindDiff(this JToken Current, JToken Model) + { + var diff = new JObject(); + if (JToken.DeepEquals(Current, Model)) return diff; + + switch(Current.Type) + { + case JTokenType.Object: + { + var current = Current as JObject; + var model = Model as JObject; + var addedKeys = current.Properties().Select(c => c.Name).Except(model.Properties().Select(c => c.Name)); + var removedKeys = model.Properties().Select(c => c.Name).Except(current.Properties().Select(c => c.Name)); + var unchangedKeys = current.Properties().Where(c => JToken.DeepEquals(c.Value, Model[c.Name])).Select(c => c.Name); + foreach (var k in addedKeys) + { + diff[k] = new JObject + { + ["+"] = Current[k] + }; + } + foreach (var k in removedKeys) + { + diff[k] = new JObject + { + ["-"] = Model[k] + }; + } + var potentiallyModifiedKeys = current.Properties().Select(c => c.Name).Except(addedKeys).Except(unchangedKeys); + foreach (var k in potentiallyModifiedKeys) + { + var foundDiff = FindDiff(current[k], model[k]); + if(foundDiff.HasValues) diff[k] = foundDiff; + } + } + break; + case JTokenType.Array: + { + var current = Current as JArray; + var model = Model as JArray; + var plus = new JArray(current.Except(model, new JTokenEqualityComparer())); + var minus = new JArray(model.Except(current, new JTokenEqualityComparer())); + if (plus.HasValues) diff["+"] = plus; + if (minus.HasValues) diff["-"] = minus; + } + break; + default: + diff["+"] = Current; + diff["-"] = Model; + break; + } + + return diff; + } + } +} diff --git a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/TestData/Expected/eCR/EICR/eCR_full-expected.json b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/TestData/Expected/eCR/EICR/eCR_full-expected.json new file mode 100644 index 00000000..8905be9b --- /dev/null +++ b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/TestData/Expected/eCR/EICR/eCR_full-expected.json @@ -0,0 +1,6024 @@ +{ + "resourceType": "Bundle", + "type": "batch", + "entry": [ + { + "fullUrl": "urn:uuid:1.2.840.114350.1.13.297.3.7.8.688883.538441", + "resource": { + "resourceType": "Composition", + "id": "1.2.840.114350.1.13.297.3.7.8.688883.538441", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/ecr/StructureDefinition/eicr-composition" + ] + }, + "identifier": [ + { + "use": "official", + "type": { + "coding": [ + { + "code": "55751-2", + "system": "http://loinc.org", + "display": "Initial Public Health Case Report" + } + ] + }, + "value": "7a89f990-3f70-11ed-9549-c301d81100b2", + "assigner": { + "display": "EPC" + } + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-versionNumber", + "valueString": "15" + }, + { + "url": "https://www.hl7.org/implement/standards/product_brief.cfm?product_id=436", + "valueString": "2016-12-01" + } + ], + "status": "final", + "type": { + "coding": [ + { + "code": "55751-2", + "system": "http://loinc.org", + "display": "Initial Public Health Case Report" + } + ] + }, + "date": "2022-09-28T14:01:01-07:00", + "title": "Initial Public Health Case Report", + "confidentiality": "N", + "section": [ + { + "id": "59ecd3e2-c425-9925-b7ad-7440009463e5", + "title": "Miscellaneous Notes", + "text": { + "status": "generated", + "div": "Not on filedocumented in this encounter" + }, + "code": { + "coding": [ + { + "code": "10164-2", + "system": "http://loinc.org", + "display": "HISTORY OF PRESENT ILLNESS" + } + ] + }, + "mode": "snapshot" + }, + { + "id": "A84C7F7E-3F70-11ED-9549-C301D81100B2", + "title": "Immunizations", + "text": { + "status": "generated", + "div": "
NameAdministration DatesNext Due
DTAP-HIB-IPV (PENTACEL)04/16/2010
HEP A (ADULT) 2 DOSE11/11/2011
HEP B (PED,ADOLESCENT) 3 DOSE03/21/1974
MENINGOCOCCAL CONJUGATE,MENACTRA (PED/ADOL/ADULT)11/16/2020
TDAP, (ADOL/ADULT)11/10/2020
documented as of this encounter" + }, + "code": { + "coding": [ + { + "code": "11369-6", + "system": "http://loinc.org", + "display": "History of Immunization Narrative" + } + ] + }, + "mode": "snapshot" + }, + { + "id": "A853DBC0-3F70-11ED-9549-C301D81100B2", + "title": "Administered Medications", + "text": { + "status": "generated", + "div": "Not on filedocumented in this encounter" + }, + "code": { + "coding": [ + { + "code": "29549-3", + "system": "http://loinc.org", + "display": "MEDICATIONS ADMINISTERED" + } + ] + }, + "mode": "snapshot" + }, + { + "id": "2a6a9ce3-c605-ff37-1f76-86650fe02739", + "title": "Plan of Treatment", + "text": { + "status": "generated", + "div": "Not on filedocumented as of this encounter" + }, + "code": { + "coding": [ + { + "code": "18776-5", + "system": "http://loinc.org", + "display": "Plan of care note" + } + ] + }, + "mode": "snapshot", + "entry": [ + { + "reference": "CarePlan/42008b73-bc71-2c3e-1078-9799e5db7fe1" + } + ] + }, + { + "id": "A8648114-3F70-11ED-9549-C301D81100B2", + "title": "Problems", + "text": { + "status": "generated", + "div": "
Active ProblemsNoted Date
Bipolar I disorder11/19/20
Reactive depression11/19/20
Rheumatoid arthritis with negative rheumatoid factor11/16/20
Arthralgia of both ankles11/16/20
Anxiety11/10/20
Asthma11/10/20
Knee pain4/29/19
Sprain of calcaneofibular ligament of right ankle4/16/19
A note:Last Assessment & Plan: Formatting of this note might be different from the original.
This is my note about this problem.

documented as of this encounter (statuses as of 09/28/2022)" + }, + "code": { + "coding": [ + { + "code": "11450-4", + "system": "http://loinc.org", + "display": "Problem list - Reported" + } + ] + }, + "mode": "snapshot", + "entry": [ + { + "display": "Problem - Sprain of calcaneofibular ligament of right ankle", + "reference": "Condition/34728086-4b53-a5f0-8eaa-61f72b79a78c" + }, + { + "display": "Problem - Knee pain", + "reference": "Condition/b3f9a35e-828c-e0aa-f083-b95837e69a31" + }, + { + "display": "Problem - Anxiety", + "reference": "Condition/9e83e83e-8c39-c58f-d96c-72bb94b75531" + }, + { + "display": "Problem - Asthma", + "reference": "Condition/b8166f2c-ad38-da4b-aec4-974cc2c6664f" + }, + { + "display": "Problem - Rheumatoid arthritis with negative rheumatoid factor", + "reference": "Condition/5dad7636-f4ae-0823-a58d-3536ce82c42b" + }, + { + "display": "Problem - Arthralgia of both ankles", + "reference": "Condition/f5840e99-3485-96c0-ee31-139f1cdb7c36" + }, + { + "display": "Problem - Bipolar I disorder", + "reference": "Condition/650e3ee3-148d-3895-2406-7dc0da609ae0" + }, + { + "display": "Problem - Reactive depression", + "reference": "Condition/e6367140-81af-9ccf-c974-c2170bc95500" + } + ] + }, + { + "id": "bbec169d-3c40-32f9-03df-b5594fe80c34", + "title": "Reason for Visit", + "text": { + "status": "generated", + "div": "Not on file" + }, + "code": { + "coding": [ + { + "code": "29299-5", + "system": "http://loinc.org", + "display": "REASON FOR VISIT" + } + ] + }, + "mode": "snapshot", + "extension": [ + { + "url": "http://hl7.org/fhir/cda/ccda/StructureDefinition/2.16.840.1.113883.10.20.22.2.12", + "valueString": "Not on file" + } + ] + }, + { + "id": "A87B29AA-3F70-11ED-9549-C301D81100B2", + "title": "Results", + "text": { + "status": "generated", + "div": "Stool Pathogens, NAAT, 12 to 25 Targets (09/28/2022 1:51 PM PDT)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Campylobacter, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Plesiomonas shigelloides, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Salmonella, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Vibrio, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Vibrio cholerae, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Yersinia enterocolitica, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
E. Coli (EAEC), NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
E. Coli (EPEC), NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
E. Coli (ETEC), NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Shiga-Like Toxin E. Coli (STEC), NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Shigella/EIEC, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Cryptosporidium, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Cyclospora cayetanensis, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
E. histolytica, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Giardia lamblia, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Adenovirus F 40/41, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Astrovirus, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Norovirus, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Rotavirus A, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Sapovirus, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 1:59 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
StoolSTOOL SPECIMEN / Unknown09/28/2022 1:51 PM PDT09/28/2022 1:51 PM PDT
Authorizing ProviderResult Type
Ambhp1 Test MDMICROBIOLOGY - GENERAL ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)501 S. Buena Vista StreetBurbank, CA 91505818-847-6000
(ABNORMAL) Stool Pathogens, NAAT, 12 to 25 Targets (09/28/2022 1:51 PM PDT)
ComponentValueRef RangeTest MethodAnalysis TimePerformed AtPathologist Signature
Campylobacter, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Plesiomonas shigelloides, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Salmonella, NAATDETECTED (AA)Not DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Vibrio, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Vibrio cholerae, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Yersinia enterocolitica, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
E. Coli O157, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
E. Coli (EAEC), NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
E. Coli (EPEC), NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
E. Coli (ETEC), NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Shiga-Like Toxin E. Coli (STEC), NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Shigella/EIEC, NAATDETECTED (AA)Not DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Cryptosporidium, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Cyclospora cayetanensis, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
E. histolytica, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Giardia lamblia, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Adenovirus F 40/41, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Astrovirus, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Norovirus, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Rotavirus A, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Sapovirus, NAATNot DetectedNot DetectedLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
GI Pathogens PanelAcceptableLAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM09/28/2022 2:00 PM PDTPROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)
Specimen (Source)Anatomical Location / LateralityCollection Method / VolumeCollection TimeReceived Time
StoolSTOOL SPECIMEN / Unknown09/28/2022 1:51 PM PDT09/28/2022 1:51 PM PDT
Authorizing ProviderResult Type
Ambhp1 Test MDMICROBIOLOGY - GENERAL ORDERABLES
Performing OrganizationAddressCity/State/ZIP CodePhone Number
PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)501 S. Buena Vista StreetBurbank, CA 91505818-847-6000
documented in this encounter" + }, + "code": { + "coding": [ + { + "code": "30954-2", + "system": "http://loinc.org", + "display": "Relevant diagnostic tests/laboratory data Narrative" + } + ] + }, + "mode": "snapshot", + "entry": [ + { + "reference": "Observation/a00006e4-f2d8-0c10-b96b-6b56def874e1", + "display": "Campylobacter, NAAT" + }, + { + "reference": "Observation/386f91f9-9bb9-44f2-4e99-284e3d0051c8", + "display": "Plesiomonas shigelloides, NAAT" + }, + { + "reference": "Observation/db2ddcd3-de40-a980-701d-3295256719bb", + "display": "Salmonella, NAAT" + }, + { + "reference": "Observation/ef277bb4-7302-f66e-0585-a90c6fe7b63f", + "display": "Vibrio, NAAT" + }, + { + "reference": "Observation/28949844-281e-0581-70e8-38ecd287116b", + "display": "Vibrio cholerae, NAAT" + }, + { + "reference": "Observation/38af00cb-3319-514b-3a9c-b6f71d57a6a4", + "display": "Yersinia enterocolitica, NAAT" + }, + { + "reference": "Observation/9256f7d3-98ec-fce8-90d1-57aec284c887", + "display": "E. Coli O157, NAAT" + }, + { + "reference": "Observation/9f4402c6-0783-bc2d-926f-3c7b96146cfd", + "display": "E. Coli (EAEC), NAAT" + }, + { + "reference": "Observation/06e693a9-b5c4-51ac-8888-086131261c46", + "display": "E. Coli (EPEC), NAAT" + }, + { + "reference": "Observation/b33d223c-9947-0795-a25d-bc0510716509", + "display": "E. Coli (ETEC), NAAT" + }, + { + "reference": "Observation/7086a08a-8e86-6354-8c0c-88d42a1c5234", + "display": "Shiga-Like Toxin E. Coli (STEC), NAAT" + }, + { + "reference": "Observation/d41aae21-a91a-74d8-3423-260256bc48b5", + "display": "Shigella/EIEC, NAAT" + }, + { + "reference": "Observation/93caad24-d8f1-6b8d-82f7-7e757c5f145b", + "display": "Cryptosporidium, NAAT" + }, + { + "reference": "Observation/63537cc7-04fe-9788-5390-25547813e41d", + "display": "Cyclospora cayetanensis, NAAT" + }, + { + "reference": "Observation/23ce6d59-e5cb-a803-97d0-28e9c9ea9cf5", + "display": "E. histolytica, NAAT" + }, + { + "reference": "Observation/1bace839-10e5-14ad-eb5d-1017c1b563ed", + "display": "Giardia lamblia, NAAT" + }, + { + "reference": "Observation/0b6a2f7f-6ee8-c00d-8519-70ae47a94d01", + "display": "Adenovirus F 40/41, NAAT" + }, + { + "reference": "Observation/993fdfcb-0d15-1ce5-7652-d9cbccd77d7f", + "display": "Astrovirus, NAAT" + }, + { + "reference": "Observation/b8746e9c-ed12-1069-1168-095692b463fb", + "display": "Norovirus, NAAT" + }, + { + "reference": "Observation/a04992b6-9980-8866-55b9-1187c93c378c", + "display": "Rotavirus A, NAAT" + }, + { + "reference": "Observation/9b963591-7fdd-96a5-69ec-1d56d9dec3a3", + "display": "Sapovirus, NAAT" + }, + { + "reference": "Observation/3d694e5a-92cc-9af5-4365-cfede30abe3c", + "display": "Lab Interpretation" + }, + { + "reference": "Observation/57c969ce-4656-9526-8d27-e39eb8e33625", + "display": "Campylobacter, NAAT" + }, + { + "reference": "Observation/af92101a-6b5d-50b3-ebdb-45658ec25808", + "display": "Plesiomonas shigelloides, NAAT" + }, + { + "reference": "Observation/c0b99528-7b83-6cdb-b4af-4376e969e11d", + "display": "Salmonella, NAAT" + }, + { + "reference": "Observation/a13fc3f5-06ed-2105-98c7-e2e0094fa1f6", + "display": "Vibrio, NAAT" + }, + { + "reference": "Observation/f74c4591-b7a0-eceb-f8be-f1441c4bb5f1", + "display": "Vibrio cholerae, NAAT" + }, + { + "reference": "Observation/87f76719-5e72-e3cd-cf52-5fc8635eebbd", + "display": "Yersinia enterocolitica, NAAT" + }, + { + "reference": "Observation/84ba7cd9-c570-9a62-7b1f-d08b19af0973", + "display": "E. Coli (EAEC), NAAT" + }, + { + "reference": "Observation/ee4f7291-130b-ae27-8b59-60b93c8c6e1b", + "display": "E. Coli (EPEC), NAAT" + }, + { + "reference": "Observation/3351c512-bc9e-0bda-3b51-6c6f807b772d", + "display": "E. Coli (ETEC), NAAT" + }, + { + "reference": "Observation/4d20693f-fe7d-5c98-e585-a89ac8088a59", + "display": "Shiga-Like Toxin E. Coli (STEC), NAAT" + }, + { + "reference": "Observation/0f447d83-8760-299e-8faa-7343d4988b94", + "display": "Shigella/EIEC, NAAT" + }, + { + "reference": "Observation/08f51019-a406-1eed-170c-297fa8cd0b68", + "display": "Cryptosporidium, NAAT" + }, + { + "reference": "Observation/4621b183-3bc3-6865-6f28-b0561a641270", + "display": "Cyclospora cayetanensis, NAAT" + }, + { + "reference": "Observation/64b0843f-a299-d049-2d18-29cd8b6de36b", + "display": "E. histolytica, NAAT" + }, + { + "reference": "Observation/c15f50f5-6285-6956-743e-4cbf10f77604", + "display": "Giardia lamblia, NAAT" + }, + { + "reference": "Observation/817b3760-b4a9-9265-e798-d0b2efc7150b", + "display": "Adenovirus F 40/41, NAAT" + }, + { + "reference": "Observation/51864ad2-6ad4-3b11-eba3-a4ced945877c", + "display": "Astrovirus, NAAT" + }, + { + "reference": "Observation/17d1cfd4-d525-16cf-5021-b918be56fe8f", + "display": "Norovirus, NAAT" + }, + { + "reference": "Observation/e6b1b714-4a40-5c91-8641-7e324b913652", + "display": "Rotavirus A, NAAT" + }, + { + "reference": "Observation/bb8b7102-09f9-7d34-fa63-70c01d276895", + "display": "Sapovirus, NAAT" + }, + { + "reference": "Observation/a3d6cd6c-ef20-8b18-9c50-d62212af9cf0", + "display": "Lab Interpretation" + } + ] + }, + { + "id": "a14a8776-dd93-06b9-6c14-705733b99d32", + "title": "Social History", + "text": { + "status": "generated", + "div": "
Tobacco UseTypesPacks/DayYears UsedDate
Smoking Tobacco: Never
Smokeless Tobacco: Never
Alcohol UseStandard Drinks/WeekComments
Yes0 (1 standard drink = 0.6 oz pure alcohol)
Sex Assigned at BirthDate Recorded
Not on file
documented as of this encounter" + }, + "code": { + "coding": [ + { + "code": "29762-2", + "system": "http://loinc.org", + "display": "Social history Narrative" + } + ] + }, + "mode": "snapshot", + "entry": [ + { + "reference": "Observation/8216269f-2076-4765-26e8-f9760da7da3c" + }, + { + "reference": "Observation/70f271bc-1399-6de9-83b6-dd02ae368a16" + }, + { + "reference": "Observation/8bf22e17-362c-0c96-6cd2-8d22655b24bd" + } + ] + }, + { + "id": "3f36d609-b243-e662-2369-b6a66d256c9a", + "title": "Encounter Details", + "text": { + "status": "generated", + "div": "
DateTypeDepartmentCare TeamDescription
9/28/22Lab RequisitionPROVIDENCE ST JOSEPH MED CTR LABORATORY501 S Buena Vista StBurbank, CA 91505-4809818-847-6060Test, Ambhp1, MD2001 LIND AVERENTON, WA 98059
" + }, + "code": { + "coding": [ + { + "code": "46240-8", + "system": "http://loinc.org", + "display": "History of Hospitalizations+Outpatient visits Narrative" + } + ] + }, + "mode": "snapshot" + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "relatesTo": [ + { + "code": "replaces", + "targetReference": { + "reference": "Composition/1.2.840.114350.1.13.297.3.7.8.688883.538440" + }, + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-versionNumber", + "valueString": "14" + } + ] + } + ], + "encounter": { + "reference": "Encounter/ec64cd62-282b-9c29-bdd3-f59d3aa15b3a" + }, + "custodian": { + "reference": "Organization/401e4e5a-69e1-bdf6-7016-6aa11dfdd01f" + }, + "author": [ + { + "reference": "PractitionerRole/3beafd46-87f4-ba10-219f-09ddfbbcc741" + }, + { + "reference": "Device/af3dff8a-77cc-434e-4618-0f249cf770a0" + } + ] + }, + "request": { + "method": "PUT", + "url": "Composition/1.2.840.114350.1.13.297.3.7.8.688883.538441" + } + }, + { + "fullUrl": "urn:uuid:ec64cd62-282b-9c29-bdd3-f59d3aa15b3a", + "resource": { + "resourceType": "Encounter", + "id": "ec64cd62-282b-9c29-bdd3-f59d3aa15b3a", + "status": "unknown", + "class": { + "code": "AMB", + "system": "urn:oid:2.16.840.1.113883.5.4", + "display": "Ambulatory" + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.3.698084.8", + "value": "50000595021" + } + ], + "period": { + "start": "2022-09-28", + "end": "2022-09-28" + }, + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "location": [ + { + "id": "1.2.840.114350.1.13.297.3.7.2.686980", + "location": { + "reference": "Location/64cbd9e3-1a67-d754-a098-211ca812a775", + "display": "PROVIDENCE ST JOSEPH MED CTR LABORATORY" + }, + "extension": [ + { + "url": "http://build.fhir.org/ig/HL7/case-reporting/StructureDefinition-us-ph-location-definitions.html#Location.type", + "valueCodeableConcept": { + "coding": [ + { + "code": "257622000", + "system": "http://snomed.info/sct", + "display": "Healthcare Facility" + } + ] + } + } + ] + } + ], + "serviceProvider": { + "reference": "Organization/61e27f76-b2a4-886d-0f3a-11de98b0085d" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ATND" + } + ] + } + ], + "individual": { + "reference": "PractitionerRole/9dde2db0-9832-9fe7-54c0-bd1b4a696c5b" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ATND" + } + ] + } + ], + "period": { + "start": "2022-09-28" + }, + "individual": { + "reference": "PractitionerRole/7ff14ada-9553-34b4-dde7-c03598261336" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ec64cd62-282b-9c29-bdd3-f59d3aa15b3a" + } + }, + { + "fullUrl": "urn:uuid:64cbd9e3-1a67-d754-a098-211ca812a775", + "resource": { + "resourceType": "Location", + "id": "64cbd9e3-1a67-d754-a098-211ca812a775", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.686980", + "value": "501122000" + } + ], + "name": "PROVIDENCE ST JOSEPH MED CTR LABORATORY", + "address": { + "use": "work", + "line": [ + "501 S Buena Vista St" + ], + "city": "Burbank", + "state": "CA", + "country": "USA", + "postalCode": "91505-4809", + "district": "LOS ANGELES" + }, + "type": [ + { + "coding": [ + { + "code": "257622000", + "system": "http://snomed.info/sct", + "display": "Healthcare Facility" + } + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Location/64cbd9e3-1a67-d754-a098-211ca812a775" + } + }, + { + "fullUrl": "urn:uuid:61e27f76-b2a4-886d-0f3a-11de98b0085d", + "resource": { + "resourceType": "Organization", + "id": "61e27f76-b2a4-886d-0f3a-11de98b0085d", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.696570", + "value": "501121" + } + ], + "name": "Providence St Joseph Medical Center", + "address": [ + { + "use": "work", + "line": [ + "501 S Buena Vista St" + ], + "city": "Burbank", + "state": "CA", + "country": "USA", + "postalCode": "91505-4809", + "district": "LOS ANGELES" + } + ] + }, + "request": { + "method": "PUT", + "url": "Organization/61e27f76-b2a4-886d-0f3a-11de98b0085d" + } + }, + { + "fullUrl": "urn:uuid:1dde1de0-65fa-bed4-6e56-e6bf9a47315a", + "resource": { + "resourceType": "Practitioner", + "id": "1dde1de0-65fa-bed4-6e56-e6bf9a47315a", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner" + ] + }, + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/_datatype", + "valueString": "Responsible Party" + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/1dde1de0-65fa-bed4-6e56-e6bf9a47315a" + } + }, + { + "resource": { + "resourceType": "PractitionerRole", + "id": "9dde2db0-9832-9fe7-54c0-bd1b4a696c5b", + "practitioner": { + "reference": "Practitioner/1dde1de0-65fa-bed4-6e56-e6bf9a47315a" + }, + "organization": { + "reference": "Organization/1dde1de0-65fa-bed4-6e56-e6bf9a47315a" + } + } + }, + { + "fullUrl": "urn:uuid:1dde1de0-65fa-bed4-6e56-e6bf9a47315a", + "resource": { + "resourceType": "Organization", + "id": "1dde1de0-65fa-bed4-6e56-e6bf9a47315a", + "name": "Providence California", + "address": [ + { + "use": "work", + "line": [ + "4733 TORRANCE BLVD #4400" + ], + "city": "TORRANCE", + "state": "CA", + "country": "USA", + "postalCode": "90503", + "district": "LOS ANGELES" + } + ] + }, + "request": { + "method": "PUT", + "url": "Organization/1dde1de0-65fa-bed4-6e56-e6bf9a47315a" + } + }, + { + "fullUrl": "urn:uuid:1c57ea76-bd59-1913-31c0-5bb8a03631c7", + "resource": { + "resourceType": "Practitioner", + "id": "1c57ea76-bd59-1913-31c0-5bb8a03631c7", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner" + ] + }, + "name": [ + { + "use": "official", + "family": "Test", + "given": [ + "Ambhp1" + ], + "suffix": [ + " MD" + ] + } + ], + "address": [ + { + "use": "work", + "line": [ + "2001 LIND AVE" + ], + "city": "RENTON", + "state": "WA", + "postalCode": "98059" + } + ], + "qualification": [ + { + "code": { + "coding": [ + { + "display": "Endocrinology" + } + ] + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/1c57ea76-bd59-1913-31c0-5bb8a03631c7" + } + }, + { + "resource": { + "resourceType": "PractitionerRole", + "id": "7ff14ada-9553-34b4-dde7-c03598261336", + "practitioner": { + "reference": "Practitioner/1c57ea76-bd59-1913-31c0-5bb8a03631c7" + } + } + }, + { + "fullUrl": "urn:uuid:401e4e5a-69e1-bdf6-7016-6aa11dfdd01f", + "resource": { + "resourceType": "Organization", + "id": "401e4e5a-69e1-bdf6-7016-6aa11dfdd01f", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.696570", + "value": "50" + } + ], + "name": "Providence California", + "address": [ + { + "use": "work", + "line": [ + "4733 TORRANCE BLVD #4400" + ], + "city": "TORRANCE", + "state": "CA", + "country": "USA", + "postalCode": "90503", + "district": "LOS ANGELES" + } + ], + "telecom": [ + { + "system": "phone", + "value": "+1-855-415-6179", + "use": "work" + } + ] + }, + "request": { + "method": "PUT", + "url": "Organization/401e4e5a-69e1-bdf6-7016-6aa11dfdd01f" + } + }, + { + "fullUrl": "urn:uuid:80746d38-56d1-93cd-febe-13ad0807a14b", + "resource": { + "resourceType": "Practitioner", + "id": "80746d38-56d1-93cd-febe-13ad0807a14b", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.697780", + "value": "LABBACKGROUND" + } + ], + "name": [ + { + "family": "Lab", + "given": [ + "Background" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/80746d38-56d1-93cd-febe-13ad0807a14b" + } + }, + { + "resource": { + "resourceType": "PractitionerRole", + "id": "3beafd46-87f4-ba10-219f-09ddfbbcc741", + "organization": { + "reference": "Organization/401e4e5a-69e1-bdf6-7016-6aa11dfdd01f" + }, + "practitioner": { + "reference": "Practitioner/80746d38-56d1-93cd-febe-13ad0807a14b" + } + } + }, + { + "fullUrl": "urn:uuid:af3dff8a-77cc-434e-4618-0f249cf770a0", + "resource": { + "resourceType": "Device", + "id": "af3dff8a-77cc-434e-4618-0f249cf770a0", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.1", + "value": "10.1" + } + ], + "manufacturer": "Epic - Version 10.1", + "version": [ + { + "value": "Epic - Version 10.1" + } + ], + "property": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/device-category", + "code": "software", + "display": "software" + } + ] + } + } + ], + "owner": { + "reference": "Organization/401e4e5a-69e1-bdf6-7016-6aa11dfdd01f" + } + }, + "request": { + "method": "PUT", + "url": "Device/af3dff8a-77cc-434e-4618-0f249cf770a0" + } + }, + { + "fullUrl": "urn:uuid:8766f0ee-be25-6c76-9a5d-e3885ffb79c1", + "resource": { + "resourceType": "Patient", + "id": "8766f0ee-be25-6c76-9a5d-e3885ffb79c1", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.3.688884.100", + "value": "POC7649102" + } + ], + "name": [ + { + "use": "official", + "family": "Test", + "given": [ + "Adam" + ] + } + ], + "birthDate": "1970-01-01", + "deceasedBoolean": false, + "gender": "male", + "extension": [ + { + "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", + "extension": [ + { + "url": "ombCategory", + "valueCoding": { + "code": "2106-3", + "display": "White" + } + }, + { + "url": "text", + "valueString": "White" + } + ] + }, + { + "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity", + "extension": [ + { + "url": "ombCategory", + "valueCoding": { + "code": "2186-5", + "display": "Not Hispanic or Latino" + } + }, + { + "url": "text", + "valueString": "Not Hispanic or Latino" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-religion", + "valueCodeableConcept": { + "coding": [ + { + "code": "Baptist", + "system": "urn:oid:2.16.840.1.113883.5.1076" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex", + "extension": [ + { + "url": "value", + "valueString": "Not on file" + } + ] + } + ], + "address": [ + { + "use": "home", + "line": [ + "9 Post Lane" + ], + "city": "NEWPORT BEACH", + "state": "CA", + "country": "USA", + "postalCode": "92663" + } + ], + "maritalStatus": { + "coding": [ + { + "code": "M", + "system": "urn:oid:2.16.840.1.113883.5.2", + "display": "Married" + } + ] + }, + "telecom": [ + { + "system": "phone", + "value": "+1-949-264-1098", + "use": "home" + }, + { + "system": "email", + "value": "mary.gibbs@Providence.org" + } + ], + "contact": [ + { + "relationship": [ + { + "coding": [ + { + "display": "Father" + } + ] + } + ], + "telecom": [ + { + "system": "phone", + "value": "+1-777-666-5656", + "use": "home" + } + ] + } + ], + "communication": [ + { + "language": { + "coding": [ + { + "system": "urn:ietf:bcp:47" + } + ] + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + { + "fullUrl": "urn:uuid:", + "resource": { + "resourceType": "CareTeam", + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + } + }, + { + "fullUrl": "urn:uuid:42008b73-bc71-2c3e-1078-9799e5db7fe1", + "resource": { + "resourceType": "CarePlan", + "id": "42008b73-bc71-2c3e-1078-9799e5db7fe1", + "status": "unknown", + "intent": "proposal", + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "CarePlan/42008b73-bc71-2c3e-1078-9799e5db7fe1" + } + }, + { + "fullUrl": "urn:uuid:34728086-4b53-a5f0-8eaa-61f72b79a78c", + "resource": { + "resourceType": "Condition", + "id": "34728086-4b53-a5f0-8eaa-61f72b79a78c", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "35372" + } + ], + "clinicalStatus": { + "coding": [ + { + "code": "55561003", + "system": "http://snomed.info/sct", + "display": "Active" + } + ] + }, + "category": [ + { + "coding": [ + { + "code": "problem-item-list", + "display": "Problem List Item", + "system": "http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category" + } + ] + } + ], + "code": { + "coding": [ + { + "code": "11833511000119101", + "system": "http://snomed.info/sct" + }, + { + "code": "S93.411A", + "system": "urn:oid:2.16.840.1.113883.6.90", + "display": "Sprain of calcaneofibular ligament of right ankle" + }, + { + "code": "845.02", + "system": "urn:oid:2.16.840.1.113883.6.103", + "display": "Sprain of calcaneofibular ligament of right ankle" + }, + { + "code": "1608716", + "system": "urn:oid:2.16.840.1.113883.3.247.1.1", + "display": "Sprain of calcaneofibular ligament of right ankle" + } + ] + }, + "onsetDateTime": "2019-04-16", + "note": [ + { + "text": "A note:Last Assessment & Plan: Formatting of this note might be different from the original.
This is my note about this problem.

" + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Condition/34728086-4b53-a5f0-8eaa-61f72b79a78c" + } + }, + { + "fullUrl": "urn:uuid:b3f9a35e-828c-e0aa-f083-b95837e69a31", + "resource": { + "resourceType": "Condition", + "id": "b3f9a35e-828c-e0aa-f083-b95837e69a31", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "35774" + } + ], + "clinicalStatus": { + "coding": [ + { + "code": "55561003", + "system": "http://snomed.info/sct", + "display": "Active" + } + ] + }, + "category": [ + { + "coding": [ + { + "code": "problem-item-list", + "display": "Problem List Item", + "system": "http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category" + } + ] + } + ], + "code": { + "coding": [ + { + "code": "1003722009", + "system": "http://snomed.info/sct" + }, + { + "code": "M25.569", + "system": "urn:oid:2.16.840.1.113883.6.90", + "display": "Knee pain" + }, + { + "code": "719.46", + "system": "urn:oid:2.16.840.1.113883.6.103", + "display": "Knee pain" + }, + { + "code": "78845", + "system": "urn:oid:2.16.840.1.113883.3.247.1.1", + "display": "Knee pain" + } + ] + }, + "onsetDateTime": "2019-04-29", + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Condition/b3f9a35e-828c-e0aa-f083-b95837e69a31" + } + }, + { + "fullUrl": "urn:uuid:9e83e83e-8c39-c58f-d96c-72bb94b75531", + "resource": { + "resourceType": "Condition", + "id": "9e83e83e-8c39-c58f-d96c-72bb94b75531", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "57636" + } + ], + "clinicalStatus": { + "coding": [ + { + "code": "55561003", + "system": "http://snomed.info/sct", + "display": "Active" + } + ] + }, + "category": [ + { + "coding": [ + { + "code": "problem-item-list", + "display": "Problem List Item", + "system": "http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category" + } + ] + } + ], + "code": { + "coding": [ + { + "code": "48694002", + "system": "http://snomed.info/sct" + }, + { + "code": "F41.9", + "system": "urn:oid:2.16.840.1.113883.6.90", + "display": "Anxiety" + }, + { + "code": "300.00", + "system": "urn:oid:2.16.840.1.113883.6.103", + "display": "Anxiety" + }, + { + "code": "38413", + "system": "urn:oid:2.16.840.1.113883.3.247.1.1", + "display": "Anxiety" + } + ] + }, + "onsetDateTime": "2020-11-10", + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Condition/9e83e83e-8c39-c58f-d96c-72bb94b75531" + } + }, + { + "fullUrl": "urn:uuid:b8166f2c-ad38-da4b-aec4-974cc2c6664f", + "resource": { + "resourceType": "Condition", + "id": "b8166f2c-ad38-da4b-aec4-974cc2c6664f", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "57637" + } + ], + "clinicalStatus": { + "coding": [ + { + "code": "55561003", + "system": "http://snomed.info/sct", + "display": "Active" + } + ] + }, + "category": [ + { + "coding": [ + { + "code": "problem-item-list", + "display": "Problem List Item", + "system": "http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category" + } + ] + } + ], + "code": { + "coding": [ + { + "code": "195967001", + "system": "http://snomed.info/sct" + }, + { + "code": "J45.909", + "system": "urn:oid:2.16.840.1.113883.6.90", + "display": "Asthma" + }, + { + "code": "493.90", + "system": "urn:oid:2.16.840.1.113883.6.103", + "display": "Asthma" + }, + { + "code": "94262", + "system": "urn:oid:2.16.840.1.113883.3.247.1.1", + "display": "Asthma" + } + ] + }, + "onsetDateTime": "2020-11-10", + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Condition/b8166f2c-ad38-da4b-aec4-974cc2c6664f" + } + }, + { + "fullUrl": "urn:uuid:5dad7636-f4ae-0823-a58d-3536ce82c42b", + "resource": { + "resourceType": "Condition", + "id": "5dad7636-f4ae-0823-a58d-3536ce82c42b", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "58351" + } + ], + "clinicalStatus": { + "coding": [ + { + "code": "55561003", + "system": "http://snomed.info/sct", + "display": "Active" + } + ] + }, + "category": [ + { + "coding": [ + { + "code": "problem-item-list", + "display": "Problem List Item", + "system": "http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category" + } + ] + } + ], + "code": { + "coding": [ + { + "code": "239792003", + "system": "http://snomed.info/sct" + }, + { + "code": "M06.00", + "system": "urn:oid:2.16.840.1.113883.6.90", + "display": "Rheumatoid arthritis with negative rheumatoid factor" + }, + { + "code": "714.0", + "system": "urn:oid:2.16.840.1.113883.6.103", + "display": "Rheumatoid arthritis with negative rheumatoid factor" + }, + { + "code": "61725782", + "system": "urn:oid:2.16.840.1.113883.3.247.1.1", + "display": "Rheumatoid arthritis with negative rheumatoid factor" + } + ] + }, + "onsetDateTime": "2020-11-16", + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Condition/5dad7636-f4ae-0823-a58d-3536ce82c42b" + } + }, + { + "fullUrl": "urn:uuid:f5840e99-3485-96c0-ee31-139f1cdb7c36", + "resource": { + "resourceType": "Condition", + "id": "f5840e99-3485-96c0-ee31-139f1cdb7c36", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "58352" + } + ], + "clinicalStatus": { + "coding": [ + { + "code": "55561003", + "system": "http://snomed.info/sct", + "display": "Active" + } + ] + }, + "category": [ + { + "coding": [ + { + "code": "problem-item-list", + "display": "Problem List Item", + "system": "http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category" + } + ] + } + ], + "code": { + "coding": [ + { + "code": "12247731000119102", + "system": "http://snomed.info/sct" + }, + { + "code": "M25.571", + "system": "urn:oid:2.16.840.1.113883.6.90", + "display": "Arthralgia of both ankles" + }, + { + "code": "719.47", + "system": "urn:oid:2.16.840.1.113883.6.103", + "display": "Arthralgia of both ankles" + }, + { + "code": "50984401", + "system": "urn:oid:2.16.840.1.113883.3.247.1.1", + "display": "Arthralgia of both ankles" + } + ] + }, + "onsetDateTime": "2020-11-16", + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Condition/f5840e99-3485-96c0-ee31-139f1cdb7c36" + } + }, + { + "fullUrl": "urn:uuid:650e3ee3-148d-3895-2406-7dc0da609ae0", + "resource": { + "resourceType": "Condition", + "id": "650e3ee3-148d-3895-2406-7dc0da609ae0", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "58701" + } + ], + "clinicalStatus": { + "coding": [ + { + "code": "55561003", + "system": "http://snomed.info/sct", + "display": "Active" + } + ] + }, + "category": [ + { + "coding": [ + { + "code": "problem-item-list", + "display": "Problem List Item", + "system": "http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category" + } + ] + } + ], + "code": { + "coding": [ + { + "code": "371596008", + "system": "http://snomed.info/sct" + }, + { + "code": "F31.9", + "system": "urn:oid:2.16.840.1.113883.6.90", + "display": "Bipolar I disorder" + }, + { + "code": "296.7", + "system": "urn:oid:2.16.840.1.113883.6.103", + "display": "Bipolar I disorder" + }, + { + "code": "700699", + "system": "urn:oid:2.16.840.1.113883.3.247.1.1", + "display": "Bipolar I disorder" + } + ] + }, + "onsetDateTime": "2020-11-19", + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Condition/650e3ee3-148d-3895-2406-7dc0da609ae0" + } + }, + { + "fullUrl": "urn:uuid:e6367140-81af-9ccf-c974-c2170bc95500", + "resource": { + "resourceType": "Condition", + "id": "e6367140-81af-9ccf-c974-c2170bc95500", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "58702" + } + ], + "clinicalStatus": { + "coding": [ + { + "code": "55561003", + "system": "http://snomed.info/sct", + "display": "Active" + } + ] + }, + "category": [ + { + "coding": [ + { + "code": "problem-item-list", + "display": "Problem List Item", + "system": "http://hl7.org/fhir/us/core/ValueSet/us-core-condition-category" + } + ] + } + ], + "code": { + "coding": [ + { + "code": "87414006", + "system": "http://snomed.info/sct" + }, + { + "code": "F32.9", + "system": "urn:oid:2.16.840.1.113883.6.90", + "display": "Reactive depression" + }, + { + "code": "300.4", + "system": "urn:oid:2.16.840.1.113883.6.103", + "display": "Reactive depression" + }, + { + "code": "41752", + "system": "urn:oid:2.16.840.1.113883.3.247.1.1", + "display": "Reactive depression" + } + ] + }, + "onsetDateTime": "2020-11-19", + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Condition/e6367140-81af-9ccf-c974-c2170bc95500" + } + }, + { + "fullUrl": "urn:uuid:823720ec-065c-cd62-9e80-9360584e52ab", + "resource": { + "resourceType": "DiagnosticReport", + "id": "823720ec-065c-cd62-9e80-9360584e52ab", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.798268", + "value": "1670844" + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "LAB10082", + "system": "http://www.ama-assn.org/go/cpt", + "display": "STOOL PATHOGENS, NAAT, 12 TO 25 TARGETS" + } + ] + }, + "effectivePeriod": { + "start": "2022-09-28T20:51:00Z", + "end": "2022-09-28T20:51:00Z" + }, + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "performer": [ + { + "reference": "Organization/9e215f4e-aac1-10cb-e412-020cd13a6ad9" + } + ], + "result": [ + { + "reference": "Observation/a00006e4-f2d8-0c10-b96b-6b56def874e1" + }, + { + "reference": "Observation/386f91f9-9bb9-44f2-4e99-284e3d0051c8" + }, + { + "reference": "Observation/db2ddcd3-de40-a980-701d-3295256719bb" + }, + { + "reference": "Observation/ef277bb4-7302-f66e-0585-a90c6fe7b63f" + }, + { + "reference": "Observation/28949844-281e-0581-70e8-38ecd287116b" + }, + { + "reference": "Observation/38af00cb-3319-514b-3a9c-b6f71d57a6a4" + }, + { + "reference": "Observation/9256f7d3-98ec-fce8-90d1-57aec284c887" + }, + { + "reference": "Observation/9f4402c6-0783-bc2d-926f-3c7b96146cfd" + }, + { + "reference": "Observation/06e693a9-b5c4-51ac-8888-086131261c46" + }, + { + "reference": "Observation/b33d223c-9947-0795-a25d-bc0510716509" + }, + { + "reference": "Observation/7086a08a-8e86-6354-8c0c-88d42a1c5234" + }, + { + "reference": "Observation/d41aae21-a91a-74d8-3423-260256bc48b5" + }, + { + "reference": "Observation/93caad24-d8f1-6b8d-82f7-7e757c5f145b" + }, + { + "reference": "Observation/63537cc7-04fe-9788-5390-25547813e41d" + }, + { + "reference": "Observation/23ce6d59-e5cb-a803-97d0-28e9c9ea9cf5" + }, + { + "reference": "Observation/1bace839-10e5-14ad-eb5d-1017c1b563ed" + }, + { + "reference": "Observation/0b6a2f7f-6ee8-c00d-8519-70ae47a94d01" + }, + { + "reference": "Observation/993fdfcb-0d15-1ce5-7652-d9cbccd77d7f" + }, + { + "reference": "Observation/b8746e9c-ed12-1069-1168-095692b463fb" + }, + { + "reference": "Observation/a04992b6-9980-8866-55b9-1187c93c378c" + }, + { + "reference": "Observation/9b963591-7fdd-96a5-69ec-1d56d9dec3a3" + }, + { + "reference": "Observation/ad78d5cf-bae7-2456-a5c2-9a3fe45b8f8c" + }, + { + "reference": "Observation/3d694e5a-92cc-9af5-4365-cfede30abe3c" + }, + { + "reference": "Observation/c94403e0-3f7c-da8f-1ab0-5b426769a8aa" + } + ] + }, + "request": { + "method": "PUT", + "url": "DiagnosticReport/823720ec-065c-cd62-9e80-9360584e52ab" + } + }, + { + "fullUrl": "urn:uuid:9e215f4e-aac1-10cb-e412-020cd13a6ad9", + "resource": { + "resourceType": "Organization", + "id": "9e215f4e-aac1-10cb-e412-020cd13a6ad9", + "name": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "address": [ + { + "use": "work", + "line": [ + "501 S. Buena Vista Street" + ], + "city": "Burbank", + "state": "CA", + "postalCode": "91505" + } + ] + }, + "request": { + "method": "PUT", + "url": "Organization/9e215f4e-aac1-10cb-e412-020cd13a6ad9" + } + }, + { + "fullUrl": "urn:uuid:a00006e4-f2d8-0c10-b96b-6b56def874e1", + "resource": { + "resourceType": "Observation", + "id": "a00006e4-f2d8-0c10-b96b-6b56def874e1", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.1" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82196-7", + "system": "http://loinc.org", + "display": "Campylobacter, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp1" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/a00006e4-f2d8-0c10-b96b-6b56def874e1" + } + }, + { + "fullUrl": "urn:uuid:f35d198c-3f4c-73e3-c9a9-337f3a1f88ea", + "resource": { + "resourceType": "Device", + "id": "f35d198c-3f4c-73e3-c9a9-337f3a1f88ea", + "deviceName": [ + { + "name": "LAB DEVICE: BIOFIRE® FILMARRAY® 2.0 SYSTEM" + } + ] + }, + "request": { + "method": "PUT", + "url": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + } + }, + { + "fullUrl": "urn:uuid:88e344ad-5524-27dc-5803-c49647c531bd", + "resource": { + "resourceType": "Organization", + "id": "88e344ad-5524-27dc-5803-c49647c531bd", + "name": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "address": [ + { + "line": [ + "501 S. Buena Vista Street" + ], + "city": "Burbank", + "state": "CA", + "postalCode": "91505" + } + ], + "telecom": [ + { + "system": "phone", + "value": "+1-818-847-6000" + } + ] + }, + "request": { + "method": "PUT", + "url": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + }, + { + "fullUrl": "urn:uuid:386f91f9-9bb9-44f2-4e99-284e3d0051c8", + "resource": { + "resourceType": "Observation", + "id": "386f91f9-9bb9-44f2-4e99-284e3d0051c8", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.2" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82198-3", + "system": "http://loinc.org", + "display": "Plesiomonas shigelloides, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp2" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/386f91f9-9bb9-44f2-4e99-284e3d0051c8" + } + }, + { + "fullUrl": "urn:uuid:db2ddcd3-de40-a980-701d-3295256719bb", + "resource": { + "resourceType": "Observation", + "id": "db2ddcd3-de40-a980-701d-3295256719bb", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.3" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82199-1", + "system": "http://loinc.org", + "display": "Salmonella, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueCodeableConcept": { + "coding": [ + { + "code": "260373001", + "system": "http://snomed.info/sct", + "display": "DETECTED" + } + ] + }, + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "interpretation": [ + { + "coding": [ + { + "code": "AA", + "system": "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation", + "display": "Abnormal Alert" + } + ] + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp3" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/db2ddcd3-de40-a980-701d-3295256719bb" + } + }, + { + "fullUrl": "urn:uuid:ef277bb4-7302-f66e-0585-a90c6fe7b63f", + "resource": { + "resourceType": "Observation", + "id": "ef277bb4-7302-f66e-0585-a90c6fe7b63f", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.4" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82200-7", + "system": "http://loinc.org", + "display": "Vibrio, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp4" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/ef277bb4-7302-f66e-0585-a90c6fe7b63f" + } + }, + { + "fullUrl": "urn:uuid:28949844-281e-0581-70e8-38ecd287116b", + "resource": { + "resourceType": "Observation", + "id": "28949844-281e-0581-70e8-38ecd287116b", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.5" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82201-5", + "system": "http://loinc.org", + "display": "Vibrio cholerae, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp5" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/28949844-281e-0581-70e8-38ecd287116b" + } + }, + { + "fullUrl": "urn:uuid:38af00cb-3319-514b-3a9c-b6f71d57a6a4", + "resource": { + "resourceType": "Observation", + "id": "38af00cb-3319-514b-3a9c-b6f71d57a6a4", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.6" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82202-3", + "system": "http://loinc.org", + "display": "Yersinia enterocolitica, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp6" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/38af00cb-3319-514b-3a9c-b6f71d57a6a4" + } + }, + { + "fullUrl": "urn:uuid:9256f7d3-98ec-fce8-90d1-57aec284c887", + "resource": { + "resourceType": "Observation", + "id": "9256f7d3-98ec-fce8-90d1-57aec284c887", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.7" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82204-9", + "system": "http://loinc.org", + "display": "E. Coli O157, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp7" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/9256f7d3-98ec-fce8-90d1-57aec284c887" + } + }, + { + "fullUrl": "urn:uuid:9f4402c6-0783-bc2d-926f-3c7b96146cfd", + "resource": { + "resourceType": "Observation", + "id": "9f4402c6-0783-bc2d-926f-3c7b96146cfd", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.8" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "80349-4", + "system": "http://loinc.org", + "display": "E. Coli (EAEC), NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp8" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/9f4402c6-0783-bc2d-926f-3c7b96146cfd" + } + }, + { + "fullUrl": "urn:uuid:06e693a9-b5c4-51ac-8888-086131261c46", + "resource": { + "resourceType": "Observation", + "id": "06e693a9-b5c4-51ac-8888-086131261c46", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.9" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "80348-6", + "system": "http://loinc.org", + "display": "E. Coli (EPEC), NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp9" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/06e693a9-b5c4-51ac-8888-086131261c46" + } + }, + { + "fullUrl": "urn:uuid:b33d223c-9947-0795-a25d-bc0510716509", + "resource": { + "resourceType": "Observation", + "id": "b33d223c-9947-0795-a25d-bc0510716509", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.10" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "80351-0", + "system": "http://loinc.org", + "display": "E. Coli (ETEC), NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp10" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/b33d223c-9947-0795-a25d-bc0510716509" + } + }, + { + "fullUrl": "urn:uuid:7086a08a-8e86-6354-8c0c-88d42a1c5234", + "resource": { + "resourceType": "Observation", + "id": "7086a08a-8e86-6354-8c0c-88d42a1c5234", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.11" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82203-1", + "system": "http://loinc.org", + "display": "Shiga-Like Toxin E. Coli (STEC), NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp11" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/7086a08a-8e86-6354-8c0c-88d42a1c5234" + } + }, + { + "fullUrl": "urn:uuid:d41aae21-a91a-74d8-3423-260256bc48b5", + "resource": { + "resourceType": "Observation", + "id": "d41aae21-a91a-74d8-3423-260256bc48b5", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.12" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "80350-2", + "system": "http://loinc.org", + "display": "Shigella/EIEC, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueCodeableConcept": { + "coding": [ + { + "code": "260373001", + "system": "http://snomed.info/sct", + "display": "DETECTED" + } + ] + }, + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "interpretation": [ + { + "coding": [ + { + "code": "AA", + "system": "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation", + "display": "Abnormal Alert" + } + ] + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp12" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/d41aae21-a91a-74d8-3423-260256bc48b5" + } + }, + { + "fullUrl": "urn:uuid:93caad24-d8f1-6b8d-82f7-7e757c5f145b", + "resource": { + "resourceType": "Observation", + "id": "93caad24-d8f1-6b8d-82f7-7e757c5f145b", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.13" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82205-6", + "system": "http://loinc.org", + "display": "Cryptosporidium, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp13" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/93caad24-d8f1-6b8d-82f7-7e757c5f145b" + } + }, + { + "fullUrl": "urn:uuid:63537cc7-04fe-9788-5390-25547813e41d", + "resource": { + "resourceType": "Observation", + "id": "63537cc7-04fe-9788-5390-25547813e41d", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.14" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82206-4", + "system": "http://loinc.org", + "display": "Cyclospora cayetanensis, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp14" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/63537cc7-04fe-9788-5390-25547813e41d" + } + }, + { + "fullUrl": "urn:uuid:23ce6d59-e5cb-a803-97d0-28e9c9ea9cf5", + "resource": { + "resourceType": "Observation", + "id": "23ce6d59-e5cb-a803-97d0-28e9c9ea9cf5", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.15" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82207-2", + "system": "http://loinc.org", + "display": "E. histolytica, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp15" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/23ce6d59-e5cb-a803-97d0-28e9c9ea9cf5" + } + }, + { + "fullUrl": "urn:uuid:1bace839-10e5-14ad-eb5d-1017c1b563ed", + "resource": { + "resourceType": "Observation", + "id": "1bace839-10e5-14ad-eb5d-1017c1b563ed", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.16" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82208-0", + "system": "http://loinc.org", + "display": "Giardia lamblia, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp16" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/1bace839-10e5-14ad-eb5d-1017c1b563ed" + } + }, + { + "fullUrl": "urn:uuid:0b6a2f7f-6ee8-c00d-8519-70ae47a94d01", + "resource": { + "resourceType": "Observation", + "id": "0b6a2f7f-6ee8-c00d-8519-70ae47a94d01", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.17" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82209-8", + "system": "http://loinc.org", + "display": "Adenovirus F 40/41, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp17" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/0b6a2f7f-6ee8-c00d-8519-70ae47a94d01" + } + }, + { + "fullUrl": "urn:uuid:993fdfcb-0d15-1ce5-7652-d9cbccd77d7f", + "resource": { + "resourceType": "Observation", + "id": "993fdfcb-0d15-1ce5-7652-d9cbccd77d7f", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.18" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82210-6", + "system": "http://loinc.org", + "display": "Astrovirus, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp18" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/993fdfcb-0d15-1ce5-7652-d9cbccd77d7f" + } + }, + { + "fullUrl": "urn:uuid:b8746e9c-ed12-1069-1168-095692b463fb", + "resource": { + "resourceType": "Observation", + "id": "b8746e9c-ed12-1069-1168-095692b463fb", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.19" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82211-4", + "system": "http://loinc.org", + "display": "Norovirus, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp19" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/b8746e9c-ed12-1069-1168-095692b463fb" + } + }, + { + "fullUrl": "urn:uuid:a04992b6-9980-8866-55b9-1187c93c378c", + "resource": { + "resourceType": "Observation", + "id": "a04992b6-9980-8866-55b9-1187c93c378c", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.20" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82212-2", + "system": "http://loinc.org", + "display": "Rotavirus A, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp20" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/a04992b6-9980-8866-55b9-1187c93c378c" + } + }, + { + "fullUrl": "urn:uuid:9b963591-7fdd-96a5-69ec-1d56d9dec3a3", + "resource": { + "resourceType": "Observation", + "id": "9b963591-7fdd-96a5-69ec-1d56d9dec3a3", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.21" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82195-9", + "system": "http://loinc.org", + "display": "Sapovirus, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp21" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/9b963591-7fdd-96a5-69ec-1d56d9dec3a3" + } + }, + { + "fullUrl": "urn:uuid:ad78d5cf-bae7-2456-a5c2-9a3fe45b8f8c", + "resource": { + "resourceType": "Observation", + "id": "ad78d5cf-bae7-2456-a5c2-9a3fe45b8f8c", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670844.22" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "display": "GI Pathogens Panel" + }, + { + "code": "9435", + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768282", + "display": "GI Pathogens Panel" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Acceptable", + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670844.Comp22" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/ad78d5cf-bae7-2456-a5c2-9a3fe45b8f8c" + } + }, + { + "fullUrl": "urn:uuid:3d694e5a-92cc-9af5-4365-cfede30abe3c", + "resource": { + "resourceType": "Observation", + "id": "3d694e5a-92cc-9af5-4365-cfede30abe3c", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.798268", + "value": "1670844" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "56850-1", + "system": "http://loinc.org", + "display": "Lab Interpretation" + } + ] + }, + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueString": "Abnormal", + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Observation/3d694e5a-92cc-9af5-4365-cfede30abe3c" + } + }, + { + "fullUrl": "urn:uuid:c94403e0-3f7c-da8f-1ab0-5b426769a8aa", + "resource": { + "resourceType": "Observation", + "id": "c94403e0-3f7c-da8f-1ab0-5b426769a8aa", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.798268", + "value": "1670844" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "effectiveDateTime": "2022-09-28T21:00:53Z", + "valueCodeableConcept": { + "coding": [ + { + "code": "18", + "system": "urn:oid:1.2.840.114350.1.72.1.5007" + } + ] + }, + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Observation/c94403e0-3f7c-da8f-1ab0-5b426769a8aa" + } + }, + { + "fullUrl": "urn:uuid:d4bcf569-911d-28ce-57e2-ca0c75712c48", + "resource": { + "resourceType": "DiagnosticReport", + "id": "d4bcf569-911d-28ce-57e2-ca0c75712c48", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.798268", + "value": "1670845" + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "LAB10082", + "system": "http://www.ama-assn.org/go/cpt", + "display": "STOOL PATHOGENS, NAAT, 12 TO 25 TARGETS" + } + ] + }, + "effectivePeriod": { + "start": "2022-09-28T20:51:00Z", + "end": "2022-09-28T20:51:00Z" + }, + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "performer": [ + { + "reference": "Organization/9e215f4e-aac1-10cb-e412-020cd13a6ad9" + } + ], + "result": [ + { + "reference": "Observation/57c969ce-4656-9526-8d27-e39eb8e33625" + }, + { + "reference": "Observation/af92101a-6b5d-50b3-ebdb-45658ec25808" + }, + { + "reference": "Observation/c0b99528-7b83-6cdb-b4af-4376e969e11d" + }, + { + "reference": "Observation/a13fc3f5-06ed-2105-98c7-e2e0094fa1f6" + }, + { + "reference": "Observation/f74c4591-b7a0-eceb-f8be-f1441c4bb5f1" + }, + { + "reference": "Observation/87f76719-5e72-e3cd-cf52-5fc8635eebbd" + }, + { + "reference": "Observation/84ba7cd9-c570-9a62-7b1f-d08b19af0973" + }, + { + "reference": "Observation/ee4f7291-130b-ae27-8b59-60b93c8c6e1b" + }, + { + "reference": "Observation/3351c512-bc9e-0bda-3b51-6c6f807b772d" + }, + { + "reference": "Observation/4d20693f-fe7d-5c98-e585-a89ac8088a59" + }, + { + "reference": "Observation/0f447d83-8760-299e-8faa-7343d4988b94" + }, + { + "reference": "Observation/08f51019-a406-1eed-170c-297fa8cd0b68" + }, + { + "reference": "Observation/4621b183-3bc3-6865-6f28-b0561a641270" + }, + { + "reference": "Observation/64b0843f-a299-d049-2d18-29cd8b6de36b" + }, + { + "reference": "Observation/c15f50f5-6285-6956-743e-4cbf10f77604" + }, + { + "reference": "Observation/817b3760-b4a9-9265-e798-d0b2efc7150b" + }, + { + "reference": "Observation/51864ad2-6ad4-3b11-eba3-a4ced945877c" + }, + { + "reference": "Observation/17d1cfd4-d525-16cf-5021-b918be56fe8f" + }, + { + "reference": "Observation/e6b1b714-4a40-5c91-8641-7e324b913652" + }, + { + "reference": "Observation/bb8b7102-09f9-7d34-fa63-70c01d276895" + }, + { + "reference": "Observation/a3d6cd6c-ef20-8b18-9c50-d62212af9cf0" + }, + { + "reference": "Observation/a8147ea6-d0d8-eb95-745d-de5738a03230" + } + ] + }, + "request": { + "method": "PUT", + "url": "DiagnosticReport/d4bcf569-911d-28ce-57e2-ca0c75712c48" + } + }, + { + "fullUrl": "urn:uuid:57c969ce-4656-9526-8d27-e39eb8e33625", + "resource": { + "resourceType": "Observation", + "id": "57c969ce-4656-9526-8d27-e39eb8e33625", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.1" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82196-7", + "system": "http://loinc.org", + "display": "Campylobacter, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp1" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/57c969ce-4656-9526-8d27-e39eb8e33625" + } + }, + { + "fullUrl": "urn:uuid:af92101a-6b5d-50b3-ebdb-45658ec25808", + "resource": { + "resourceType": "Observation", + "id": "af92101a-6b5d-50b3-ebdb-45658ec25808", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.2" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82198-3", + "system": "http://loinc.org", + "display": "Plesiomonas shigelloides, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp2" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/af92101a-6b5d-50b3-ebdb-45658ec25808" + } + }, + { + "fullUrl": "urn:uuid:c0b99528-7b83-6cdb-b4af-4376e969e11d", + "resource": { + "resourceType": "Observation", + "id": "c0b99528-7b83-6cdb-b4af-4376e969e11d", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.3" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82199-1", + "system": "http://loinc.org", + "display": "Salmonella, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp3" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/c0b99528-7b83-6cdb-b4af-4376e969e11d" + } + }, + { + "fullUrl": "urn:uuid:a13fc3f5-06ed-2105-98c7-e2e0094fa1f6", + "resource": { + "resourceType": "Observation", + "id": "a13fc3f5-06ed-2105-98c7-e2e0094fa1f6", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.4" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82200-7", + "system": "http://loinc.org", + "display": "Vibrio, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp4" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/a13fc3f5-06ed-2105-98c7-e2e0094fa1f6" + } + }, + { + "fullUrl": "urn:uuid:f74c4591-b7a0-eceb-f8be-f1441c4bb5f1", + "resource": { + "resourceType": "Observation", + "id": "f74c4591-b7a0-eceb-f8be-f1441c4bb5f1", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.5" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82201-5", + "system": "http://loinc.org", + "display": "Vibrio cholerae, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp5" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/f74c4591-b7a0-eceb-f8be-f1441c4bb5f1" + } + }, + { + "fullUrl": "urn:uuid:87f76719-5e72-e3cd-cf52-5fc8635eebbd", + "resource": { + "resourceType": "Observation", + "id": "87f76719-5e72-e3cd-cf52-5fc8635eebbd", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.6" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82202-3", + "system": "http://loinc.org", + "display": "Yersinia enterocolitica, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp6" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/87f76719-5e72-e3cd-cf52-5fc8635eebbd" + } + }, + { + "fullUrl": "urn:uuid:84ba7cd9-c570-9a62-7b1f-d08b19af0973", + "resource": { + "resourceType": "Observation", + "id": "84ba7cd9-c570-9a62-7b1f-d08b19af0973", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.7" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "80349-4", + "system": "http://loinc.org", + "display": "E. Coli (EAEC), NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp7" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/84ba7cd9-c570-9a62-7b1f-d08b19af0973" + } + }, + { + "fullUrl": "urn:uuid:ee4f7291-130b-ae27-8b59-60b93c8c6e1b", + "resource": { + "resourceType": "Observation", + "id": "ee4f7291-130b-ae27-8b59-60b93c8c6e1b", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.8" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "80348-6", + "system": "http://loinc.org", + "display": "E. Coli (EPEC), NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp8" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/ee4f7291-130b-ae27-8b59-60b93c8c6e1b" + } + }, + { + "fullUrl": "urn:uuid:3351c512-bc9e-0bda-3b51-6c6f807b772d", + "resource": { + "resourceType": "Observation", + "id": "3351c512-bc9e-0bda-3b51-6c6f807b772d", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.9" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "80351-0", + "system": "http://loinc.org", + "display": "E. Coli (ETEC), NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp9" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/3351c512-bc9e-0bda-3b51-6c6f807b772d" + } + }, + { + "fullUrl": "urn:uuid:4d20693f-fe7d-5c98-e585-a89ac8088a59", + "resource": { + "resourceType": "Observation", + "id": "4d20693f-fe7d-5c98-e585-a89ac8088a59", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.10" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82203-1", + "system": "http://loinc.org", + "display": "Shiga-Like Toxin E. Coli (STEC), NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp10" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/4d20693f-fe7d-5c98-e585-a89ac8088a59" + } + }, + { + "fullUrl": "urn:uuid:0f447d83-8760-299e-8faa-7343d4988b94", + "resource": { + "resourceType": "Observation", + "id": "0f447d83-8760-299e-8faa-7343d4988b94", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.11" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "80350-2", + "system": "http://loinc.org", + "display": "Shigella/EIEC, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp11" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/0f447d83-8760-299e-8faa-7343d4988b94" + } + }, + { + "fullUrl": "urn:uuid:08f51019-a406-1eed-170c-297fa8cd0b68", + "resource": { + "resourceType": "Observation", + "id": "08f51019-a406-1eed-170c-297fa8cd0b68", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.12" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82205-6", + "system": "http://loinc.org", + "display": "Cryptosporidium, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp12" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/08f51019-a406-1eed-170c-297fa8cd0b68" + } + }, + { + "fullUrl": "urn:uuid:4621b183-3bc3-6865-6f28-b0561a641270", + "resource": { + "resourceType": "Observation", + "id": "4621b183-3bc3-6865-6f28-b0561a641270", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.13" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82206-4", + "system": "http://loinc.org", + "display": "Cyclospora cayetanensis, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp13" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/4621b183-3bc3-6865-6f28-b0561a641270" + } + }, + { + "fullUrl": "urn:uuid:64b0843f-a299-d049-2d18-29cd8b6de36b", + "resource": { + "resourceType": "Observation", + "id": "64b0843f-a299-d049-2d18-29cd8b6de36b", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.14" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82207-2", + "system": "http://loinc.org", + "display": "E. histolytica, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp14" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/64b0843f-a299-d049-2d18-29cd8b6de36b" + } + }, + { + "fullUrl": "urn:uuid:c15f50f5-6285-6956-743e-4cbf10f77604", + "resource": { + "resourceType": "Observation", + "id": "c15f50f5-6285-6956-743e-4cbf10f77604", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.15" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82208-0", + "system": "http://loinc.org", + "display": "Giardia lamblia, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp15" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/c15f50f5-6285-6956-743e-4cbf10f77604" + } + }, + { + "fullUrl": "urn:uuid:817b3760-b4a9-9265-e798-d0b2efc7150b", + "resource": { + "resourceType": "Observation", + "id": "817b3760-b4a9-9265-e798-d0b2efc7150b", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.16" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82209-8", + "system": "http://loinc.org", + "display": "Adenovirus F 40/41, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp16" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/817b3760-b4a9-9265-e798-d0b2efc7150b" + } + }, + { + "fullUrl": "urn:uuid:51864ad2-6ad4-3b11-eba3-a4ced945877c", + "resource": { + "resourceType": "Observation", + "id": "51864ad2-6ad4-3b11-eba3-a4ced945877c", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.17" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82210-6", + "system": "http://loinc.org", + "display": "Astrovirus, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp17" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/51864ad2-6ad4-3b11-eba3-a4ced945877c" + } + }, + { + "fullUrl": "urn:uuid:17d1cfd4-d525-16cf-5021-b918be56fe8f", + "resource": { + "resourceType": "Observation", + "id": "17d1cfd4-d525-16cf-5021-b918be56fe8f", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.18" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82211-4", + "system": "http://loinc.org", + "display": "Norovirus, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp18" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/17d1cfd4-d525-16cf-5021-b918be56fe8f" + } + }, + { + "fullUrl": "urn:uuid:e6b1b714-4a40-5c91-8641-7e324b913652", + "resource": { + "resourceType": "Observation", + "id": "e6b1b714-4a40-5c91-8641-7e324b913652", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.19" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82212-2", + "system": "http://loinc.org", + "display": "Rotavirus A, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp19" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/e6b1b714-4a40-5c91-8641-7e324b913652" + } + }, + { + "fullUrl": "urn:uuid:bb8b7102-09f9-7d34-fa63-70c01d276895", + "resource": { + "resourceType": "Observation", + "id": "bb8b7102-09f9-7d34-fa63-70c01d276895", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.6.798268.2000", + "value": "1670845.20" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "82195-9", + "system": "http://loinc.org", + "display": "Sapovirus, NAAT" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Not Detected", + "referenceRange": [ + { + "text": "Not Detected" + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + }, + { + "url": "observation entry reference value", + "valueString": "#Result.1.2.840.114350.1.13.297.3.7.2.798268.1670845.Comp20" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + }, + "device": { + "reference": "Device/f35d198c-3f4c-73e3-c9a9-337f3a1f88ea" + }, + "performer": [ + { + "display": "PROVIDENCE ST. JOSEPH MEDICAL CENTER LABORATORY (CLIA 05D0672675)", + "reference": "Organization/88e344ad-5524-27dc-5803-c49647c531bd" + } + ] + }, + "request": { + "method": "PUT", + "url": "Observation/bb8b7102-09f9-7d34-fa63-70c01d276895" + } + }, + { + "fullUrl": "urn:uuid:a3d6cd6c-ef20-8b18-9c50-d62212af9cf0", + "resource": { + "resourceType": "Observation", + "id": "a3d6cd6c-ef20-8b18-9c50-d62212af9cf0", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.798268", + "value": "1670845" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "56850-1", + "system": "http://loinc.org", + "display": "Lab Interpretation" + } + ] + }, + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueString": "Normal", + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Observation/a3d6cd6c-ef20-8b18-9c50-d62212af9cf0" + } + }, + { + "fullUrl": "urn:uuid:a8147ea6-d0d8-eb95-745d-de5738a03230", + "resource": { + "resourceType": "Observation", + "id": "a8147ea6-d0d8-eb95-745d-de5738a03230", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.798268", + "value": "1670845" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "laboratory" + } + ] + } + ], + "status": "final", + "effectiveDateTime": "2022-09-28T20:59:43Z", + "valueCodeableConcept": { + "coding": [ + { + "code": "18", + "system": "urn:oid:1.2.840.114350.1.72.1.5007" + } + ] + }, + "extension": [ + { + "url": "http://hl7.org/fhir/R4/specimen.html", + "extension": [ + { + "url": "specimen source", + "valueString": "Stool" + }, + { + "url": "specimen collection time", + "valueDateTime": "2022-09-28T20:51:00Z" + }, + { + "url": "specimen receive time", + "valueDateTime": "2022-09-28T20:51:36Z" + } + ] + } + ], + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Observation/a8147ea6-d0d8-eb95-745d-de5738a03230" + } + }, + { + "fullUrl": "urn:uuid:8216269f-2076-4765-26e8-f9760da7da3c", + "resource": { + "resourceType": "Observation", + "id": "8216269f-2076-4765-26e8-f9760da7da3c", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.1.1040.1", + "value": "Z41472^^72166-2" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "social-history" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "72166-2", + "system": "http://loinc.org", + "display": "Tobacco smoking status NHIS" + } + ] + }, + "effectiveDateTime": "2019-04-16", + "valueCodeableConcept": { + "coding": [ + { + "code": "266919005", + "system": "http://snomed.info/sct", + "display": "Never smoked tobacco" + } + ] + }, + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Observation/8216269f-2076-4765-26e8-f9760da7da3c" + } + }, + { + "fullUrl": "urn:uuid:70f271bc-1399-6de9-83b6-dd02ae368a16", + "resource": { + "resourceType": "Observation", + "id": "70f271bc-1399-6de9-83b6-dd02ae368a16", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.1.1040.8", + "value": "Z41472^^713914004" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "social-history" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "229819007", + "system": "http://snomed.info/sct", + "display": "Tobacco use and exposure" + }, + { + "code": "88031-0", + "system": "http://loinc.org", + "display": "Smokeless tobacco status" + } + ] + }, + "effectiveDateTime": "2019-04-16", + "valueCodeableConcept": { + "coding": [ + { + "code": "451381000124107", + "system": "http://snomed.info/sct", + "display": "Smokeless tobacco non-user" + } + ] + }, + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Observation/70f271bc-1399-6de9-83b6-dd02ae368a16" + } + }, + { + "fullUrl": "urn:uuid:8bf22e17-362c-0c96-6cd2-8d22655b24bd", + "resource": { + "resourceType": "Observation", + "id": "8bf22e17-362c-0c96-6cd2-8d22655b24bd", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + }, + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.1.1040.12", + "value": "Z41472^55374.98^160573003" + } + ], + "category": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/observation-category", + "code": "social-history" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "code": "160573003", + "system": "http://snomed.info/sct", + "display": "Alcohol intake" + }, + { + "code": "11331-6", + "system": "http://loinc.org", + "display": "History of Alcohol Use" + } + ] + }, + "effectiveDateTime": "2022-02-16", + "valueCodeableConcept": { + "coding": [ + { + "code": "219006", + "system": "http://snomed.info/sct", + "display": "Current drinker of alcohol (finding)" + } + ] + }, + "subject": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Observation/8bf22e17-362c-0c96-6cd2-8d22655b24bd" + } + }, + { + "fullUrl": "urn:uuid:", + "resource": { + "resourceType": "Observation", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults" + ] + } + }, + "request": { + "method": "PUT", + "url": "Observation/" + } + }, + { + "fullUrl": "urn:uuid:7a4b0e4b-ca8a-a39b-1b44-19efe2c9ee5c", + "resource": { + "resourceType": "Immunization", + "id": "7a4b0e4b-ca8a-a39b-1b44-19efe2c9ee5c", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "35371" + } + ], + "occurrenceDateTime": "2010-04-16", + "status": "completed", + "primarySource": true + }, + "request": { + "method": "PUT", + "url": "Immunization/7a4b0e4b-ca8a-a39b-1b44-19efe2c9ee5c" + } + }, + { + "fullUrl": "urn:uuid:b5d003f7-cfe2-56a4-6e91-07307f25aa83", + "resource": { + "resourceType": "Immunization", + "id": "b5d003f7-cfe2-56a4-6e91-07307f25aa83", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "57643" + } + ], + "occurrenceDateTime": "2020-11-10", + "vaccineCode": { + "coding": [ + { + "code": "49281-400-10", + "system": "urn:oid:2.16.840.1.113883.6.69" + } + ] + }, + "lotNumber": "369258741", + "manufacturer": { + "reference": "Organization/b5c77b86-2764-79f9-10bf-5da5e63eb7c1" + }, + "status": "completed", + "primarySource": true, + "patient": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Immunization/b5d003f7-cfe2-56a4-6e91-07307f25aa83" + } + }, + { + "fullUrl": "urn:uuid:b5c77b86-2764-79f9-10bf-5da5e63eb7c1", + "resource": { + "resourceType": "Organization", + "id": "b5c77b86-2764-79f9-10bf-5da5e63eb7c1", + "name": "Sanofi Pasteur" + }, + "request": { + "method": "PUT", + "url": "Organization/b5c77b86-2764-79f9-10bf-5da5e63eb7c1" + } + }, + { + "fullUrl": "urn:uuid:cffb2ab8-483c-a93e-56c3-5cc3d11e9168", + "resource": { + "resourceType": "Immunization", + "id": "cffb2ab8-483c-a93e-56c3-5cc3d11e9168", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "57644" + } + ], + "occurrenceDateTime": "2011-11-11", + "status": "completed", + "primarySource": true + }, + "request": { + "method": "PUT", + "url": "Immunization/cffb2ab8-483c-a93e-56c3-5cc3d11e9168" + } + }, + { + "fullUrl": "urn:uuid:35c0d7fc-0bc0-5a24-e65e-dc30321d7e2e", + "resource": { + "resourceType": "Immunization", + "id": "35c0d7fc-0bc0-5a24-e65e-dc30321d7e2e", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "58353" + } + ], + "occurrenceDateTime": "2020-11-16", + "vaccineCode": { + "coding": [ + { + "code": "50090-1890-1", + "system": "urn:oid:2.16.840.1.113883.6.69" + } + ] + }, + "lotNumber": "1", + "manufacturer": { + "reference": "Organization/b5c77b86-2764-79f9-10bf-5da5e63eb7c1" + }, + "status": "completed", + "primarySource": true, + "patient": { + "reference": "Patient/8766f0ee-be25-6c76-9a5d-e3885ffb79c1" + } + }, + "request": { + "method": "PUT", + "url": "Immunization/35c0d7fc-0bc0-5a24-e65e-dc30321d7e2e" + } + }, + { + "fullUrl": "urn:uuid:50fc36a0-b859-c4a4-de8f-53c149080081", + "resource": { + "resourceType": "Immunization", + "id": "50fc36a0-b859-c4a4-de8f-53c149080081", + "identifier": [ + { + "system": "urn:oid:1.2.840.114350.1.13.297.3.7.2.768076", + "value": "58354" + } + ], + "occurrenceDateTime": "1974-03-21", + "status": "completed", + "primarySource": true + }, + "request": { + "method": "PUT", + "url": "Immunization/50fc36a0-b859-c4a4-de8f-53c149080081" + } + } + ] +} From 9b76856614f253dbf9105c695306fbf1ea7dd03e Mon Sep 17 00:00:00 2001 From: Mary McGrath Date: Fri, 13 Dec 2024 10:06:21 -0500 Subject: [PATCH 7/8] fix: attribution --- .../DiffHelper.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/DiffHelper.cs b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/DiffHelper.cs index 9e3180d0..2c22e509 100644 --- a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/DiffHelper.cs +++ b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/DiffHelper.cs @@ -3,6 +3,7 @@ namespace Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests { + // from https://stackoverflow.com/questions/24876082/find-and-return-json-differences-using-newtonsoft-in-c public static class DiffHelper { public static JObject FindDiff(this JToken Current, JToken Model) From 0cd1e3a84a6e738c0099ee2cd5d8b99ae7656cdc Mon Sep 17 00:00:00 2001 From: Mary McGrath Date: Fri, 13 Dec 2024 10:32:32 -0500 Subject: [PATCH 8/8] test: update snapshot with latest from main --- .../TestData/Expected/eCR/EICR/eCR_full-expected.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/TestData/Expected/eCR/EICR/eCR_full-expected.json b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/TestData/Expected/eCR/EICR/eCR_full-expected.json index 8905be9b..82ea16cb 100644 --- a/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/TestData/Expected/eCR/EICR/eCR_full-expected.json +++ b/src/Microsoft.Health.Fhir.Liquid.Converter.FunctionalTests/TestData/Expected/eCR/EICR/eCR_full-expected.json @@ -974,7 +974,10 @@ "city": "NEWPORT BEACH", "state": "CA", "country": "USA", - "postalCode": "92663" + "postalCode": "92663", + "period": { + "start": "2019-04-10" + } } ], "maritalStatus": {