From e560ca898bbb29d7cb3929bd214c6bcfaf5923a3 Mon Sep 17 00:00:00 2001 From: Josh Fisk Date: Mon, 7 Oct 2024 17:54:48 -0700 Subject: [PATCH 01/34] Update OML mappings (#15910) * Update OML FHIR -> HL7 Mappings * Update OML HL7 -> FHIR mappings * Add OML mapping integration tests * Removing unused FHIR -> HL7 mappings * Adding OML to CWE/CE override * Adjusting existing tests * Adding tests for new misc mappings * Update existing OML integration tests * Fixing integration tests after rebase * expected oru changes * Specimen.collection conditional update * Updating formatting for cleaner diff * Missed e2e test updates * PRT <-> Device mappings will be taken care of in the next PR * Changed line endings from CRLF to LF * Removing OML use of HL7v2Name url --- .../HL7/catchall/hl7/message/OML_O21.yml | 68 +- .../HL7/catchall/hl7/message/ORU_R01.yml | 4 +- .../hl7/segments/ORC/ServiceRequest.yml | 21 + .../catchall/hl7/segments/ORC/Specimen.yml | 30 +- .../HL7/catchall/hl7/segments/PID/Patient.yml | 12 +- .../main/kotlin/fhirengine/utils/HL7Reader.kt | 8 + .../hl7_mapping/OML_O21/OML_O21-base.yml | 72 +- .../hl7_mapping/OML_O21/OML_O21-test.yml | 8 + .../observation-request-base.yml | 15 + .../observation-request.yml | 14 + .../observation/observation.yml | 22 + .../observation-request/specimen/specimen.yml | 15 + .../OML_O21/base/order/order-base.yml | 12 + .../OML_O21/base/patient/patient-base.yml | 12 + .../OML_O21/base/patient/patient-visit.yml | 16 + .../OML_O21/base/patient/patient.yml | 28 + .../service-request-order-observation.yml | 12 - .../OML_O21/base/service-request-order.yml | 42 - .../hl7_mapping/OML_O21/deprecated.md | 6 - .../hl7_mapping/ORU_R01/ORU_R01-base.yml | 7 +- .../order-observation/order-observation.yml | 10 +- .../hl7_mapping/ORU_R01/deprecated.md | 6 - .../common/datatype/ei-entity-identifier.yml | 22 - .../common/datatype/sn-structured-numeric.yml | 25 - .../common/datatype/xad-extended-address.yml | 2 +- .../common/datatype/xon-organization.yml | 42 - .../common/observation-request.yml | 51 - .../hl7_mapping/common/observation-result.yml | 259 -- .../metadata/hl7_mapping/common/specimen.yml | 147 - .../resources/DiagnosticReport/OBR.yml | 3 - .../resources/Observation/OBXValue.yml | 2 - .../resources/ServiceRequest/OBR.yml | 18 +- .../resources/ServiceRequest/ORC.yml | 3 - .../common/UniversalPipelineTestUtils.kt | 10 +- .../Expected_HL7_to_FHIR_FULLELR.fhir | 240 +- .../Expected_HL7_to_FHIR_MARSOTC.fhir | 13 +- .../catchall/omlo21/OMLO21Full.kt | 17 + ...BRToServiceRequestDiagnosticReportTests.kt | 19 +- .../FHIR_to_HL7/sample_OML_20230831-0001.fhir | 2336 +++++++------- .../HL7_to_FHIR/sample_oml_20240319-001.fhir | 2476 ++++++++++----- .../HL7_to_FHIR/sample_oml_20240319-001.hl7 | 2 +- .../ei/EI-to-Identifier-Extension.fhir | 11 +- .../NK1-to-RelatedPerson-with-repeats.fhir | 23 + .../catchall/nk1/NK1-to-RelatedPerson.fhir | 23 + .../catchall/omlo21/oml_o21-full.fhir | 2735 +++++++++++++++++ .../catchall/omlo21/oml_o21-full.hl7 | 11 + ...erequest_diagnosticreport-OML-message.fhir | 228 ++ ...cerequest_diagnosticreport-OML-message.hl7 | 6 + ...equest_diagnosticreport-obr-populated.fhir | 236 +- ...est_diagnosticreport-obr25-not-mapped.fhir | 11 +- ...sticreport-obr25-obrext-not-populated.fhir | 11 +- ...servicerequest_diagnosticreport-obr25.fhir | 11 +- ...t_diagnosticreport-obr8-not-populated.fhir | 15 +- ...st_diagnosticreport-obr8-not-populated.hl7 | 2 +- ...quest_diagnosticreport-obr8-populated.fhir | 192 ++ ...equest_diagnosticreport-obr8-populated.hl7 | 3 + ...st_diagnosticreport-orc-obr-populated.fhir | 236 +- .../catchall/orur01/oru_r01-full.fhir | 46 +- ...-practitioner-dns-assigning-authority.fhir | 175 ++ ...-iso-assigning-authority-no-namespace.fhir | 147 + ...uuid-assigning-authority-no-namespace.fhir | 147 + ...practitioner-uuid-assigning-authority.fhir | 148 + ...tioner-xcn17-populated-xcn19-20-empty.fhir | 176 ++ ...tioner-xcn19-20-populated-xcn17-empty.fhir | 175 ++ 64 files changed, 8200 insertions(+), 2695 deletions(-) create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-test.yml create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/order-base.yml create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-base.yml create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-visit.yml create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order-observation.yml delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order.yml delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/deprecated.md delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/deprecated.md delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/sn-structured-numeric.yml delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xon-organization.yml delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/common/observation-request.yml delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/common/observation-result.yml delete mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/common/specimen.yml create mode 100644 prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/omlo21/OMLO21Full.kt create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.fhir create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.hl7 create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.hl7 diff --git a/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml b/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml index 7e5b303b697..367e43669a8 100644 --- a/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml +++ b/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml @@ -8,27 +8,48 @@ resources: repeats: false isReferenced: false + - resourceName: Provenance + segment: MSH + resourcePath: segments/MSH/Provenance-Source + + - resourceName: Provenance + segment: MSH + resourcePath: segments/MSH/Provenance-Transformation + - resourceName: Patient segment: .PID group: PATIENT resourcePath: segments/PID/Patient isReferenced: true repeats: false + additionalSegments: + - .PD1 + - MSH + - .NTE + - .NK1 - - resourceName: ServiceRequest - segment: .ORC - group: ORDER - resourcePath: segments/ORC/ServiceRequest + - resourceName: Provenance + segment: .PID + group: PATIENT + resourcePath: segments/PID/Provenance-Patient + + - resourceName: RelatedPerson + segment: .NK1 + group: PATIENT + resourcePath: segments/NK1/RelatedPerson + isReferenced: false repeats: true + + - resourceName: Encounter + segment: .PV1 + group: PATIENT.PATIENT_VISIT + resourcePath: segments/PV1/Encounter isReferenced: true additionalSegments: - - .OBSERVATION_REQUEST.OBR - - .OBSERVATION_REQUEST.NTE - - PATIENT.PATIENT_VISIT.PV1 + - .PV2 - MSH - - PATIENT.PID - - resourceName: Observation + - resourceName: OMLObservation segment: .OBSERVATION_REQUEST.OBSERVATION.OBX group: ORDER resourcePath: segments/OBX/Observation @@ -40,11 +61,32 @@ resources: - .OBSERVATION_REQUEST.OBSERVATION.NTE - MSH - - resourceName: Specimen - segment: SPECIMEN.SPM - group: ORDER.OBSERVATION_REQUEST + - resourceName: OMLSpecimenSource + segment: .OBSERVATION_REQUEST.OBR + group: ORDER + resourcePath: segments/ORC/Specimen + isReferenced: true + repeats: true + + - resourceName: OMLSpecimen + segment: .OBSERVATION_REQUEST.SPECIMEN.SPM + group: ORDER resourcePath: segments/SPM/Specimen repeats: true isReferenced: true additionalSegments: - - MSH \ No newline at end of file + - MSH + + - resourceName: ServiceRequest + segment: .ORC + group: ORDER + resourcePath: segments/ORC/ServiceRequest + repeats: true + isReferenced: true + additionalSegments: + - .OBSERVATION_REQUEST.OBR + - .OBSERVATION_REQUEST.NTE + - PATIENT.PATIENT_VISIT.PV1 + - MSH + - PATIENT.PID + - .OBSERVATION_REQUEST.OBSERVATION.OBX \ No newline at end of file diff --git a/prime-router/metadata/HL7/catchall/hl7/message/ORU_R01.yml b/prime-router/metadata/HL7/catchall/hl7/message/ORU_R01.yml index 8fefc94aec4..70d1b4b86d1 100644 --- a/prime-router/metadata/HL7/catchall/hl7/message/ORU_R01.yml +++ b/prime-router/metadata/HL7/catchall/hl7/message/ORU_R01.yml @@ -28,8 +28,8 @@ resources: - .NK1 - resourceName: Provenance - group: PATIENT_RESULT.PATIENT segment: .PID + group: PATIENT_RESULT.PATIENT resourcePath: segments/PID/Provenance-Patient - resourceName: RelatedPerson @@ -45,7 +45,7 @@ resources: resourcePath: segments/PV1/Encounter isReferenced: true additionalSegments: - - .PATIENT.VISIT.PV2 + - .VISIT.PV2 - MSH - resourceName: Observation diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml index a914e822208..b117581e184 100644 --- a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml +++ b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml @@ -348,6 +348,27 @@ subject: expressionType: resource specs: $Patient +specimen: + generateList: true + expressionType: nested + expressions: + - valueOf: datatype/Reference + generateList: true + expressionType: resource + specs: $OMLSpecimen + useGroup: true + - valueOf: datatype/Reference + expressionType: resource + specs: $OMLSpecimenSource + useGroup: true + +supportingInfo: + generateList: true + valueOf: datatype/Reference + expressionType: resource + specs: $OMLObservation + useGroup: true + note: valueOf: segments/NTE/Annotation expressionType: resource diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml index b3135cde3a6..b43c8db1440 100644 --- a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml +++ b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml @@ -29,9 +29,15 @@ container: expressionType: HL7Spec collection: - condition: $spm7 NOT_NULL + condition: $obr7 NOT_NULL || $obr8 NOT_NULL || $obr9 NOT_NULL || $obr10 NOT_NULL || $obr15 NOT_NULL expressionType: nested generateList: true + vars: + obr7: OBR.7 + obr8: OBR.8 + obr9: OBR.9 + obr10: OBR.10 + obr15: OBR.15 expressionsMap: bodySite: valueOf: datatypes/CWE/CodeableConcept @@ -62,6 +68,24 @@ collection: type: STRING valueOf: "GeneralUtils.dateTimeWithZoneId(dateTimeIn,ZONEID)" expressionType: JEXL + _collectedDateTime: + condition: $dateTimeIn NOT_NULL && $end NULL + expressionType: nested + vars: + dateTimeIn: OBR.7 + end: OBR.8 + expressionsMap: + extension_1: + generateList: true + expressionType: nested + expressionsMap: + url: + type: SYSTEM_URL + value: hl7v2-date-time + valueString: + type: STRING + valueOf: $dateTimeIn + expressionType: HL7Spec collector: condition: $obr10 NOT_NULL vars: @@ -87,10 +111,10 @@ note_specimen-source: expressionsMap: url: type: SYSTEM_URL - value: hl7v2Name + value: hl7v2Component valueString: type: STRING - valueOf: specimen-source + valueOf: OBR.15.3 note_collectors-comment: condition: $obr39 NOT_NULL diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml b/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml index f11717e35c6..3dc555ef779 100644 --- a/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml +++ b/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml @@ -91,9 +91,15 @@ contact: vars: nk141: STRING, NK1.41 relationship: - valueOf: datatypes/CWE/CodeableConcept - expressionType: resource - specs: NK1.7 + generateList: true + expressionType: nested + expressions: + - valueOf: datatypes/CWE/CodeableConcept + expressionType: resource + specs: NK1.3 + - valueOf: datatypes/CWE/CodeableConcept + expressionType: resource + specs: NK1.7 period: vars: startDate: NK1.8 diff --git a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt index 95a9244fa21..bc4b8c4fea2 100644 --- a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt +++ b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt @@ -24,6 +24,7 @@ import java.util.Date import ca.uhn.hl7v2.model.v251.message.OML_O21 as v251_OML_O21 import ca.uhn.hl7v2.model.v251.message.ORU_R01 as v251_ORU_R01 import ca.uhn.hl7v2.model.v251.segment.MSH as v251_MSH +import ca.uhn.hl7v2.model.v27.message.OML_O21 as v27_OML_O21 import ca.uhn.hl7v2.model.v27.message.ORU_R01 as v27_ORU_R01 import ca.uhn.hl7v2.model.v27.segment.MSH as v27_MSH import fhirengine.translation.hl7.structures.nistelr251.message.ORU_R01 as NIST_ELR_ORU_R01 @@ -141,6 +142,7 @@ class HL7Reader(private val actionLogger: ActionLogger) : Logging { } "OML" -> { return listOf( + v27_OML_O21::class.java, v251_OML_O21::class.java ) } @@ -301,6 +303,12 @@ class HL7Reader(private val actionLogger: ActionLogger) : Logging { ValidationContextFactory.noValidation(), ReportStreamCanonicalModelClassFactory(ORU_R01::class.java), ) + } else if (hl7MessageType?.msh93 == "OML_O21") { + DefaultHapiContext( + ParserConfiguration(), + ValidationContextFactory.noValidation(), + ReportStreamCanonicalModelClassFactory(v27_OML_O21::class.java), + ) } else { DefaultHapiContext(ValidationContextFactory.noValidation()) } diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-base.yml index d59be416ead..408334e10f3 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-base.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-base.yml @@ -1,9 +1,11 @@ # $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json -hl7Class: ca.uhn.hl7v2.model.v251.message.OML_O21 +hl7Class: ca.uhn.hl7v2.model.v27.message.OML_O21 + constants: # Prefix for RS custom extension URLs rsext: '"https://reportstream.cdc.gov/fhir/StructureDefinition/"' + elements: - name: message-headers condition: > @@ -15,63 +17,25 @@ elements: schema: classpath:/metadata/hl7_mapping/resources/MessageHeader/MSH.yml - name: software-segment - condition: 'Bundle.entry.resource.ofType(MessageHeader).exists()' + resource: 'Bundle.entry.resource.ofType(Provenance).where(entity.exists()).entity.what.resolve()' + schema: classpath:/metadata/hl7_mapping/resources/Device/SFT.yml + + - name: software-segment-legacy + condition: > + Bundle.entry.resource.ofType(MessageHeader).exists() and + (Bundle.entry.resource.ofType(MessageHeader).source.extension(%`rsext-software-vendor-org`).exists() or + Bundle.entry.resource.ofType(Provenance).exists().not()) resource: 'Bundle.entry.resource.ofType(MessageHeader)' schema: classpath:/metadata/hl7_mapping/resources/MessageHeader/SFT.yml - - name: patient-information - resource: 'Bundle.entry.resource.ofType(Patient)' - condition: '%resource.count() = 1' - required: true - constants: - hl7SegmentGroup: '/PATIENT' - schema: classpath:/metadata/hl7_mapping/common/patient.yml - - - name: patient-contact - resource: 'Bundle.entry.resource.ofType(Patient).contact' - condition: '%resource.exists()' - constants: - hl7SegmentGroup: '/PATIENT' - schema: classpath:/metadata/hl7_mapping/common/patient-contact.yml - - - name: patient-visit - resource: 'Bundle.entry.resource.ofType(Encounter)' + - name: patient-base condition: '%resource.count() = 1' - constants: - hl7SegmentGroup: '/PATIENT/PATIENT_VISIT' - schema: classpath:/metadata/hl7_mapping/common/patient-visit.yml - - - name: order - resource: Bundle.entry.resource.ofType(ServiceRequest) - condition: '%resource.count() > 0' - required: true - schema: classpath:/metadata/hl7_mapping/OML_O21/base/service-request-order.yml - constants: - hl7SegmentGroup: '/ORDER' + resource: 'Bundle.entry.resource.ofType(Patient)' + resourceIndex: patientIndex + schema: classpath:/metadata/hl7_mapping/OML_O21/base/patient/patient-base.yml - - name: order-observation-request - resource: Bundle.entry.resource.ofType(ServiceRequest) - condition: '%resource.count() > 0' - required: true - constants: - hl7SegmentGroup: '/ORDER/OBSERVATION_REQUEST' - schema: classpath:/metadata/hl7_mapping/OML_O21/base/service-request-order-observation.yml + - name: order-base + resource: 'Bundle.entry.resource.ofType(ServiceRequest).where(subject.resolve().id = %resource.entry.resource.ofType(Patient).id)' resourceIndex: orderIndex - - - name: order-observation-result - resource: Bundle.entry.resource.ofType(Observation) - condition: '%resource.count() > 0' - required: true - schema: classpath:/metadata/hl7_mapping/common/observation-result.yml - constants: - hl7SegmentGroup: '/ORDER/OBSERVATION_REQUEST/OBSERVATION(%{resultIndex})' - hl7OBXField: '%{hl7SegmentGroup}/OBX' - resourceIndex: resultIndex - - - name: order-specimen - resource: Bundle.entry.resource.ofType(Specimen) - condition: '%resource.count() = 1' required: true - schema: classpath:/metadata/hl7_mapping/common/specimen.yml - constants: - hl7SpecimenFieldPath: /ORDER/OBSERVATION_REQUEST/SPECIMEN/SPM \ No newline at end of file + schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/order-base.yml \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-test.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-test.yml new file mode 100644 index 00000000000..d9c02000ec8 --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-test.yml @@ -0,0 +1,8 @@ +# $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +hl7Class: ca.uhn.hl7v2.model.v27.message.OML_O21 + +extends: classpath:/metadata/hl7_mapping/OML_O21/OML_O21-base.yml +elements: + - name: message-headers + condition: 'true' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml new file mode 100644 index 00000000000..8a6f0c4db02 --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml @@ -0,0 +1,15 @@ +# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +elements: + + - name: observation-request + required: true + schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml + + - name: observation-request-observation + schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml + + - name: observation-request-specimen + resource: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "SPM") | %resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).exists().not())' + resourceIndex: specimenIndex + schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml new file mode 100644 index 00000000000..73879a89232 --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml @@ -0,0 +1,14 @@ +# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +elements: + + - name: observation-request-service-request + required: true + schema: classpath:/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml + constants: + obrFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBR' + +# - name: observation-request-note +# todo in second pass, for ORU this is mapped through Observation.note; OML maps through ServiceRequest.note +# this is already mapped into fhir via ORC/ServiceRequest... where is fhir -> hl7? +# todo add scearnio in full oml test for an OBSERVATION_REQUEST.NTE \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml new file mode 100644 index 00000000000..c30cc39c86e --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml @@ -0,0 +1,22 @@ +# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +constants: + observationPath: '%resource.supportingInfo.resolve().ofType(Observation).where(subject.resolve().id = %resource.subject.resolve().id)' + +elements: + + - name: observation-result + resource: '%observationPath' + resourceIndex: resultIndex + required: false + schema: classpath:/metadata/hl7_mapping/resources/Observation/OBX.yml + constants: + hl7OBXField: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{resultIndex})/OBX' + hl7ObservationPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{resultIndex})' + +# todo +# - name: observation-participation-information +# resource: '%observationPath.device.resolve().where(udiCarrier.exists())' +# schema: classpath:/metadata/hl7_mapping/resources/Device/PRT.yml +# constants: +# hl7SegmentGroup: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{resultIndex})' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml new file mode 100644 index 00000000000..a77522f12f5 --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml @@ -0,0 +1,15 @@ +# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +elements: + + - name: specimen + required: true + schema: classpath:/metadata/hl7_mapping/resources/Specimen/SPM.yml + constants: + hl7SpecimenFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/SPECIMEN(%{specimenIndex})/SPM' + + - name: specimen-extension + resource: '%resource.extension(%`rsext-spm-specimen`)' + schema: classpath:/metadata/hl7_mapping/resources/Specimen/SPMExtension.yml + constants: + hl7SpecimenFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/SPECIMEN(%{specimenIndex})/SPM' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/order-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/order-base.yml new file mode 100644 index 00000000000..9a1d8a742a7 --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/order-base.yml @@ -0,0 +1,12 @@ +# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +elements: + + - name: common-order + required: true + schema: classpath:/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml + constants: + hl7Order: '/ORDER(%{orderIndex})/ORC' + + - name: observation-request-observation + schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-base.yml new file mode 100644 index 00000000000..24512264df5 --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-base.yml @@ -0,0 +1,12 @@ +# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +elements: + + - name: patient + required: true + schema: classpath:/metadata/hl7_mapping/OML_O21/base/patient/patient.yml + + - name: patient-visit + condition: '%resource.count() = 1' + resource: 'Bundle.entry.resource.ofType(Encounter)' + schema: classpath:/metadata/hl7_mapping/OML_O21/base/patient/patient-visit.yml \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-visit.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-visit.yml new file mode 100644 index 00000000000..ac3742c8b38 --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-visit.yml @@ -0,0 +1,16 @@ +# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +elements: + + - name: encounter-pv1 + condition: '%resource.count() = 1' + required: true + schema: classpath:/metadata/hl7_mapping/resources/Encounter/PV1.yml + constants: + hl7PV1Field: '/PATIENT/PATIENT_VISIT/PV1' + + - name: encounter-pv2 + condition: '%resource.count() = 1' + schema: classpath:/metadata/hl7_mapping/resources/Encounter/PV2.yml + constants: + hl7PV2Field: '/PATIENT/PATIENT_VISIT/PV2' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml new file mode 100644 index 00000000000..6923b49a993 --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml @@ -0,0 +1,28 @@ +# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +constants: + hl7SegmentGroup: '/PATIENT' + +elements: + + - name: patient-identification + condition: '%resource.count() = 1' + required: true + schema: classpath:/metadata/hl7_mapping/resources/Patient/PID.yml + + - name: patient-identification-extensions + resource: '%resource.extension(%`rsext-pid-patient`)' + schema: classpath:/metadata/hl7_mapping/resources/Patient/PIDExtension.yml + + - name: additional-demographics + condition: '%resource.count() = 1' + schema: classpath:/metadata/hl7_mapping/resources/Patient/PD1.yml + + - name: additional-demographics-extensions + resource: '%resource.extension(%`rsext-pd1-patient-additional-demographic`)' + schema: classpath:/metadata/hl7_mapping/resources/Patient/PD1Extension.yml + + - name: related-person-nk1 + resource: 'Bundle.entry.resource.ofType(RelatedPerson).where(extension(%`rsext-hl7v2Segment`).value = "NK1" and patient.resolve().id = %resource.id)' + resourceIndex: relatedPersonIndex + schema: classpath:/metadata/hl7_mapping/resources/RelatedPerson/NK1.yml \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order-observation.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order-observation.yml deleted file mode 100644 index ed3027c53c3..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order-observation.yml +++ /dev/null @@ -1,12 +0,0 @@ -# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json - -constants: - fieldPath: '%{hl7SegmentGroup}/OBR' -elements: - - name: observation-request - schema: classpath:/metadata/hl7_mapping/common/observation-request.yml - - - name: order-observation-date-time-start - condition: '%rootResource.entry.resource.ofType(Specimen).collection.collected.exists()' - value: [ '%rootResource.entry.resource.ofType(Specimen).collection.collected' ] - hl7Spec: [ '%{fieldPath}-7' ] diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order.yml deleted file mode 100644 index 24c6f82d521..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order.yml +++ /dev/null @@ -1,42 +0,0 @@ -# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json - -constants: - hl7ORCField: '%{hl7SegmentGroup}/ORC' -elements: - - name: order-control - value: [ '"NW"' ] - required: true - hl7Spec: [ '%{hl7ORCField}-1' ] - - - name: order-placer-order-number - resource: > - %resource.identifier.where(type.coding.system = 'http://terminology.hl7.org/CodeSystem/v2-0203') - .where(type.coding.code = 'PLAC') - condition: '%resource.count() > 0' - constants: - entityIdFieldPath: '%{hl7ORCField}(%{entityIdIndex})-2' - resourceIndex: entityIdIndex - schema: classpath:/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml - - - name: order-status - value: [ '%resource.status' ] - valueSet: - values: - revoked: CA - completed: CM - entered-in-error: ER - on-hold: HD - active: IP - hl7Spec: [ '%{hl7ORCField}-5' ] - - - name: order-date-time-of-transaction - resource: '%resource.authoredOn' - constants: - dtmFieldPath: '%{hl7ORCField}-9' - schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml - - - name: ordering-facility-name - resource: '%resource.requester.resolve().organization.resolve()' - schema: classpath:/metadata/hl7_mapping/common/datatype/xon-organization.yml - constants: - hl7OrgField: '%{hl7ORCField}-21' diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/deprecated.md b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/deprecated.md deleted file mode 100644 index 9c27ced798d..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/deprecated.md +++ /dev/null @@ -1,6 +0,0 @@ -## Deprecated location - -Use of this location for mapping schema is deprecated. Please see -the [Mapping schema file structure](../../../docs/design/design/mapping-schemas.md) design document to review current -mapping schema structure guidelines. New work should follow the new design as much as possible. When mapping work is -completed, this directory should be removed. \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/ORU_R01-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/ORU_R01-base.yml index d30c96c3e37..1b4e0adf9c4 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/ORU_R01-base.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/ORU_R01-base.yml @@ -4,7 +4,9 @@ hl7Class: ca.uhn.hl7v2.model.v27.message.ORU_R01 constants: # Prefix for RS custom extension URLs rsext: '"https://reportstream.cdc.gov/fhir/StructureDefinition/"' + elements: + - name: message-header condition: > Bundle.entry.resource.ofType(MessageHeader).exists() and @@ -20,12 +22,11 @@ elements: - name: software-segment-legacy condition: > - Bundle.entry.resource.ofType(MessageHeader).exists() - and Bundle.entry.resource.ofType(MessageHeader).source.extension(%`rsext-software-vendor-org`).exists() + Bundle.entry.resource.ofType(MessageHeader).exists() and + Bundle.entry.resource.ofType(MessageHeader).source.extension(%`rsext-software-vendor-org`).exists() resource: 'Bundle.entry.resource.ofType(MessageHeader)' schema: classpath:/metadata/hl7_mapping/resources/MessageHeader/SFT.yml - - name: patient-result resource: 'Bundle.entry.resource.ofType(Patient)' resourceIndex: patientIndex diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml index a444932e335..3aacd09688c 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml @@ -5,15 +5,23 @@ elements: - name: common-order-service-request resource: '%resource.basedOn.resolve()' schema: classpath:/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml + constants: + hl7Order: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/ORC - name: common-order-diagnostic-report resource: '%resource' schema: classpath:/metadata/hl7_mapping/resources/DiagnosticReport/ORC.yml + constants: + hl7Order: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/ORC - name: observation-request-service-request resource: '%resource.basedOn.resolve()' schema: classpath:/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml + constants: + obrFieldPath: '/PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR' - name: observation-request-diagnostic-report resource: '%resource' - schema: classpath:/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml \ No newline at end of file + schema: classpath:/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml + constants: + obrFieldPath: '/PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/deprecated.md b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/deprecated.md deleted file mode 100644 index 9c27ced798d..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/deprecated.md +++ /dev/null @@ -1,6 +0,0 @@ -## Deprecated location - -Use of this location for mapping schema is deprecated. Please see -the [Mapping schema file structure](../../../docs/design/design/mapping-schemas.md) design document to review current -mapping schema structure guidelines. New work should follow the new design as much as possible. When mapping work is -completed, this directory should be removed. \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml deleted file mode 100644 index 7d3a478a09c..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml +++ /dev/null @@ -1,22 +0,0 @@ -# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json - -# Identifier to EI mapping -elements: - - name: entity-identifier - value: [ '%deidentifiedValue', '%resource.value' ] - hl7Spec: [ '%{entityIdFieldPath}-1' ] - - - name: entity-namespace-id - value: - - '%resource.extension(%`rsext-namespace-id`).value' - - '%resource.system.getId()' - - '%resource.system' - hl7Spec: [ '%{entityIdFieldPath}-2' ] - - - name: entity-universal-id - value: [ '%resource.extension(%`rsext-universal-id`).value.getId()' ] - hl7Spec: [ '%{entityIdFieldPath}-3' ] - - - name: entity-id-type - value: [ '%resource.extension(%`rsext-universal-id`).value.getIdType()' ] - hl7Spec: [ '%{entityIdFieldPath}-4' ] \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/sn-structured-numeric.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/sn-structured-numeric.yml deleted file mode 100644 index 78af906ba4b..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/sn-structured-numeric.yml +++ /dev/null @@ -1,25 +0,0 @@ -# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json - -elements: - # FHIR Spec does not support "=" and "<>" comparators, so those are in an extension - - name: observation-value-sn-comparator-1 - condition: '%resource.numerator.comparator.exists().not()' - value: [ '%resource.numerator.extension(%`rsext-comparator`).value' ] - hl7Spec: [ '%{hl7OBXField}-5-1' ] - - - name: observation-value-sn-comparator-2 - condition: '%resource.numerator.comparator.exists()' - value: [ '%resource.numerator.comparator' ] - hl7Spec: [ '%{hl7OBXField}-5-1' ] - - - name: observation-value-sn-value - value: [ '%resource.numerator.value' ] - hl7Spec: [ '%{hl7OBXField}-5-2' ] - - - name: observation-value-sn-separator - value: [ '%resource.numerator.extension(%`rsext-separator`).value' ] - hl7Spec: [ '%{hl7OBXField}-5-3' ] - - - name: observation-value-sn-denominator - value: [ '%resource.denominator.value' ] - hl7Spec: [ '%{hl7OBXField}-5-4' ] \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xad-extended-address.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xad-extended-address.yml index 73d244c0ebd..9b57e009243 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xad-extended-address.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xad-extended-address.yml @@ -53,4 +53,4 @@ elements: condition: '%resource.exists()' schema: classpath:/metadata/hl7_mapping/resources/Patient/DR.yml constants: - hl7DRField: '%{hl7XADField}-10' \ No newline at end of file + hl7DRField: '%{hl7XADField}-12' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xon-organization.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xon-organization.yml deleted file mode 100644 index 011cf65f009..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xon-organization.yml +++ /dev/null @@ -1,42 +0,0 @@ -# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json - -elements: - - name: xon-organization-name - value: [ '%resource.name' ] - hl7Spec: [ '%{hl7OrgField}-1' ] - - - name: xon-organization-name-type - resource: '%resource.extension(%`rsext-organization-name-type`)' - condition: '%resource.exists()' - value: [ '%resource.value.code' ] - hl7Spec: [ '%{hl7OrgField}-2' ] - - - name: xon-assigning-authority - resource: '%resource.identifier.extension(%`rsext-assigning-authority`)' - constants: - hl7HDField: '%{hl7OrgField}-6' - # cannot use %`rext due to mix of constant and fhirpath substitution syntax - namespaceExtName: '"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"' - universalIdExtName: '"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"' - universalIdTypeExtName: '"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type"' - schema: classpath:/metadata/hl7_mapping/common/datatype/hd-hierarchic-designator.yml - - - name: xon-organization-id-type - resource: '%resource.identifier.type.where(coding.system = ''http://terminology.hl7.org/CodeSystem/v2-0203'')' - condition: '%resource.exists()' - value: [ '%resource.coding[0].code' ] - hl7Spec: [ '%{hl7OrgField}-7' ] - - - name: xon-assigning-facility - resource: '%resource.identifier.extension(%`rsext-assigning-facility`).value.resolve()' - constants: - hl7HDField: '%{hl7OrgField}-8' - schema: classpath:/metadata/hl7_mapping/resources/Location/HD.yml - - - name: xon-name-representation-code - value: [ '%resource.identifier.extension(%`rsext-name-representation-code`).value' ] - hl7Spec: [ '%{hl7OrgField}-9' ] - - - name: xon-organization-id - value: [ '%resource.identifier[0].value' ] - hl7Spec: [ '%{hl7OrgField}-10' ] \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-request.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-request.yml deleted file mode 100644 index 6152def7b86..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-request.yml +++ /dev/null @@ -1,51 +0,0 @@ -# $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json - -elements: - - name: set-id - value: [ '%orderIndex + 1' ] - hl7Spec: [ '%{fieldPath}-1' ] - - - name: placer-order-number - resource: '%resource.identifier.where(extension(%`rsext-hl7-use`).value = "placer-order-number")' - constants: - eiFieldPath: '%{fieldPath}(%{entityIdIndex})-2' - schema: classpath:/metadata/hl7_mapping/datatypes/identifier-extension/EI.yml - resourceIndex: entityIdIndex - - - name: filler-order - resource: '%resource.identifier.where(type.coding.code = "FILL")' - condition: '%resource.exists()' - constants: - entityIdFieldPath: '%{fieldPath}(%{entityIdIndex})-3' - schema: classpath:/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml - resourceIndex: entityIdIndex - - - name: universal-service - resource: '%resource.code' - constants: - cweFieldPath: '%{fieldPath}-4' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: result-interpreter - resource: '%resource.resultsInterpreter.resolve()' - constants: - hl7NDLField: '%{fieldPath}-32' - schema: classpath:/metadata/hl7_mapping/resources/PractitionerRole/NDL.yml - - - name: technician - resource: '%resource.performer.resolve().where(extension("http://hl7.org/fhir/StructureDefinition/event-performerFunction").value.coding.code = "SPRF")' - constants: - hl7NDLField: '%{fieldPath}-34' - schema: classpath:/metadata/hl7_mapping/resources/PractitionerRole/NDL.yml - - - name: transcriptionist - resource: '%resource.performer.resolve().where(extension("http://hl7.org/fhir/StructureDefinition/event-performerFunction").value.coding.code = "TRANS")' - constants: - hl7NDLField: '%{fieldPath}-35' - schema: classpath:/metadata/hl7_mapping/resources/PractitionerRole/NDL.yml - - - name: alternate-placer-order-number - resource: '%service.identifier.where(extension(%`rsext-hl7-use`).value = "alternate-placer-identifier" )' - constants: - cxField: '%{fieldPath}-53' - schema: classpath:/metadata/hl7_mapping/datatypes/identifier/CX.yml \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-result.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-result.yml deleted file mode 100644 index 5808edbc66d..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-result.yml +++ /dev/null @@ -1,259 +0,0 @@ -# $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json - -elements: - - name: result-set-id - value: [ '%resultIndex + 1' ] - hl7Spec: [ '%{hl7OBXField}-1' ] - - - name: result-value-type-st - condition: '%resource.value.exists() and %resource.value.is(string)' - value: [ '"ST"' ] - hl7Spec: [ '%{hl7OBXField}-2' ] - - - name: result-value-type-dt - condition: '%resource.value.exists() and %resource.value.is(dateTime)' - value: [ '"DT"' ] - hl7Spec: [ '%{hl7OBXField}-2' ] - - - name: result-value-type-ce - resource: '%resource.value' - condition: 'false' - # This element remains here for usage in receiver-transforms - value: [ '"CE"' ] - hl7Spec: [ '%{hl7OBXField}-2' ] - - - name: result-value-type-cwe - resource: '%resource.value' - condition: '%resource.exists() and %resource.is(CodeableConcept)' - # Note that for v.2.5 and earlier, CWE is not officially in-spec, but is widely used. If a receiver requires - # CE, that should be handled via receiver transform - value: [ '"CWE"' ] - hl7Spec: [ '%{hl7OBXField}-2' ] - - - name: result-value-type-sn - condition: '%resource.value.exists() and %resource.value.is(Ratio)' - value: [ '"SN"' ] - hl7Spec: [ '%{hl7OBXField}-2' ] - - - name: result-value-type-nm - condition: > - %resource.value.exists() and - %resource.value.is(Quantity) and - %resource.value.where(extension(%`rsext-cwe-quantity`)).exists().not() - value: [ '"NM"' ] - hl7Spec: [ '%{hl7OBXField}-2' ] - - - name: result-value-type-na - condition: > - %resource.value.exists() and - %resource.value.is(Quantity) and - %resource.value.where(extension(%`rsext-cwe-quantity`)).exists() - value: [ '"NA"' ] - hl7Spec: [ '%{hl7OBXField}-2' ] - - - name: observation-identifier-code - resource: '%resource.code' - constants: - cweFieldPath: '%{hl7OBXField}-3' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: observation-value-sub-id - value: [ '%resource.extension(%`rsext-sub-id`).value' ] - hl7Spec: [ '%{hl7OBXField}-4' ] - - - name: observation-value-st - condition: '%resource.value.exists() and %resource.value is string' - value: [ '%resource.value' ] - hl7Spec: [ '%{hl7OBXField}-5' ] - - - name: observation-value-dateTime - condition: '%context.value.exists() and %context.value is dateTime' - resource: '%resource.value' - constants: - dtmFieldPath: '%{hl7OBXField}-5' - schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml - - - name: observation-value-cwe - resource: '%resource.value' - condition: '%resource.exists() and %resource is CodeableConcept' - constants: - cweFieldPath: '%{hl7OBXField}-5' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: observation-value-quantity - condition: '%resource.value.exists() and %resource.value is Quantity' - value: [ '%resource.value.value' ] - hl7Spec: [ '%{hl7OBXField}-5' ] - - - name: observation-value-numeric - resource: '%resource.value' - condition: '%resource.exists() and %resource is Ratio' - schema: classpath:/metadata/hl7_mapping/common/datatype/sn-structured-numeric.yml - - - name: observation-units-identifier - condition: > - %context.where(extension(%`rsext-units`)).exists() and - %context.value.where(extension(%`rsext-cwe-quantity`)).exists().not() - resource: '%resource.extension(%`rsext-units`).value' - constants: - cweFieldPath: '%{hl7OBXField}-6' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: observation-units-identifier - condition: > - %context.value.exists() and - %context.value.is(Quantity) and - %context.value.where(extension(%`rsext-cwe-quantity`)).exists() and - %context.value.extension(%`rsext-cwe-quantity`).value.where(extension(%`rsext-hl7v2Name`).value = "units").exists() - resource: '%resource.value.extension(%`rsext-cwe-quantity`).value' - constants: - cweField: '%{hl7OBXField}-6' - schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml - - - name: observation-reference-range - value: [ '%resource.referenceRange.text' ] - hl7Spec: [ '%{hl7OBXField}-7' ] - - - name: observation-abnormal-flag - resource: '%resource.interpretation' - constants: - cweFieldPath: '%{hl7OBXField}-8' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: observation-result-status - value: [ '%resource.status' ] - condition: '%resource.dataAbsentReason.exists().not() or %resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "identifier").code = "unknown"' - hl7Spec: [ '%{hl7OBXField}-11' ] - valueSet: - values: - registered: I - preliminary: P - final: F - corrected: C - amended: C - entered-in-error: W - - - name: observation-result-status-cancelled - value: [ "'X'" ] - condition: '%resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "identifier").exists() and %resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "identifier").code = "cannot-be-obtained"' - hl7Spec: [ '%{hl7OBXField}-11' ] - - - name: observation-result-status-not-asked - value: [ "'N'" ] - condition: '%resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "alternate identifier").exists() and %resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "alternate identifier").code = "not-asked"' - hl7Spec: [ '%{hl7OBXField}-11' ] - - - - name: observation-date-time - resource: '%resource.effective' - constants: - dtmFieldPath: '%{hl7OBXField}-14' - schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml - - - name: observation-producer-id - resource: '%resource.extension(%`rsext-producer-id`).value' - constants: - ceFieldPath: '%{hl7OBXField}-15' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-element.yml - - - name: observation-producer-id-identifier - resource: '%resource.extension(%`rsext-producer-id`).value.resolve()' - value: [ '%resource.identifier[0].value' ] - hl7Spec: [ '%{hl7OBXField}-15-1' ] - - - name: observation-producer-id-text - resource: '%resource.extension(%`rsext-producer-id`).value.resolve()' - value: [ '%resource.name' ] - hl7Spec: [ '%{hl7OBXField}-15-2' ] - - - name: observation-producer-id-system - resource: '%resource.extension(%`rsext-producer-id`).value.resolve().identifier.extension(%`rsext-coding-system`).value' - value: [ '%resource.coding.code' ] - hl7Spec: [ '%{hl7OBXField}-15-3' ] - - - name: responsible-observer - resource: '%resource.performer.resolve().practitioner.resolve()' - condition: '%resource.identifier.type.coding.code="responsibleObserver"' - constants: - hl7XCNField: '%{hl7OBXField}-16' - schema: classpath:/metadata/hl7_mapping/common/datatype/xcn-contact.yml - resourceIndex: contactIndex - - - name: observation-method - resource: '%resource.method' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - constants: - cweFieldPath: '%{hl7OBXField}-17' - - - name: equipment-instance-identifier - resource: '%resource.device.resolve().identifier' - schema: classpath:/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml - constants: - entityIdFieldPath: '%{hl7OBXField}-18' - - - name: analysis-date-time - resource: '%resource.issued' - constants: - dtmFieldPath: '%{hl7OBXField}-19' - schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml - - - name: performing-organization-name-pracrole - condition: > - Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).exists() and - (Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).practitioner.exists() or - Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).practitioner.identifier.type.coding.code="MDIR") - resource: '%resource.performer.resolve().ofType(PractitionerRole).organization.resolve()' - schema: classpath:/metadata/hl7_mapping/common/datatype/xon-organization.yml - constants: - hl7OrgField: '%{hl7OBXField}-23' - - - name: performing-organization-name-non-pracrole - condition: 'Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(Organization).exists()' - resource: '%resource.performer.resolve().ofType(Organization)' - schema: classpath:/metadata/hl7_mapping/common/datatype/xon-organization.yml - constants: - hl7OrgField: '%{hl7OBXField}-23' - - - name: performing-organization-address-pracrole - condition: > - Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).exists() and - (Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).practitioner.exists() or - Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).practitioner.identifier.type.coding.code="MDIR") - resource: '%resource.performer.resolve().ofType(PractitionerRole).organization.resolve().address' - constants: - hl7AddressField: '%{hl7OBXField}-24' - schema: classpath:/metadata/hl7_mapping/common/datatype/xad-extended-address.yml - resourceIndex: contactIndex - - - name: performing-organization-address-non-pracrole - condition: 'Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(Organization).exists()' - resource: '%resource.performer.resolve().ofType(Organization).address' - constants: - hl7AddressField: '%{hl7OBXField}-24' - schema: classpath:/metadata/hl7_mapping/common/datatype/xad-extended-address.yml - resourceIndex: contactIndex - - # This is technically incorrect as this should be using the PractitionerRole instead - # It works because the HL7 -> FHIR mapping sets the same value on the practitioner - # It cannot be changed at this time because this is the shape of the FHIR that SR sends in - - name: performing-organization-director - resource: '%resource.performer.resolve().practitioner.resolve()' - condition: '%resource.identifier.type.coding.code="MDIR"' - constants: - hl7XCNField: '%{hl7OBXField}-25' - schema: classpath:/metadata/hl7_mapping/common/datatype/xcn-contact.yml - resourceIndex: contactIndex - - - name: observation-aoe-identifier - condition: '%resource.meta.tag.code="AOE"' - value: [ '"QST"' ] - hl7Spec: [ '%{hl7OBXField}-29' ] - - - - name: observation-note - condition: '%context.note.exists()' - resource: '%resource.note' - schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml - resourceIndex: noteIndex - constants: - hl7NotePath: '%{hl7SegmentGroup}' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/specimen.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/specimen.yml deleted file mode 100644 index eca87775b5d..00000000000 --- a/prime-router/src/main/resources/metadata/hl7_mapping/common/specimen.yml +++ /dev/null @@ -1,147 +0,0 @@ -# $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json - -elements: - - name: specimen-set-id - value: [ '"1"' ] - hl7Spec: [ '%{hl7SpecimenFieldPath}-1' ] - - - name: specimen-identifier - resource: '%resource.identifier.where(extension(%`rsext-hl7-use`).value = "specimen-id-placer")' - condition: '%resource.exists()' - constants: - eipFieldPath: '%{hl7SpecimenFieldPath}-2' - schema: classpath:/metadata/hl7_mapping/datatypes/identifier-placerAssignedIdentifier/EIP.yml - - - name: specimen-identifier-backup - resource: '%resource.identifier.where(extension(%`rsext-hl7-use`).value = "specimen-id-filler")' - condition: > - %resource.identifier.where(extension(%`rsext-hl7-use`).value = "specimen-id-placer").exists().not() and - %resource.exists() - constants: - eipFieldPath: '%{hl7SpecimenFieldPath}-2' - schema: classpath:/metadata/hl7_mapping/datatypes/identifier-fillerAssignedIdentifier/EIP.yml - - - name: specimen-type - resource: '%resource.type' - constants: - cweFieldPath: '%{hl7SpecimenFieldPath}-4' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: specimen-type-modifier - resource: '%resource.extension(%`rsext-specimen-type-modifier`).value' - condition: '%resource.exists()' - constants: - cweFieldPath: '%{hl7SpecimenFieldPath}-5' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: specimen-additives - resource: '%resource.container.additive[0]' - condition: '%resource.exists()' - constants: - cweFieldPath: '%{hl7SpecimenFieldPath}-6' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: specimen-collection-method - resource: '%resource.collection.method' - condition: '%resource.exists()' - constants: - cweFieldPath: '%{hl7SpecimenFieldPath}-7' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: specimen-source-site - resource: '%resource.collection.bodySite' - condition: '%resource.exists()' - constants: - cweFieldPath: '%{hl7SpecimenFieldPath}-8' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: specimen-source-site-modifier - resource: '%resource.collection.extension(%`rsext-specimen-source-site-modifier`).value' - condition: '%resource.exists()' - constants: - cweFieldPath: '%{hl7SpecimenFieldPath}-9' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: specimen-role - value: [ '""' ] - hl7Spec: [ '%{hl7SpecimenFieldPath}-11' ] - - - name: specimen-collection-amount - resource: '%resource.collection.quantity' - constants: - cqFieldPath: '%{hl7SpecimenFieldPath}-12' - schema: classpath:/metadata/hl7_mapping/datatypes/Quantity/CQ.yml - - - name: specimen-description - resource: '%resource.note.where(extension(%`rsext-hl7v2Name`).exists().not())' - value: [ '%resource.text' ] - hl7Spec: [ '%{hl7SpecimenFieldPath}-14' ] - - - name: specimen-collection-time - condition: '%context.collection.collected.exists() and %context.collection.collected is dateTime' - resource: '%resource.collection.collected' - constants: - dtmFieldPath: '%{hl7SpecimenFieldPath}-17-1' - schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml - - - name: specimen-observation-date-time-start - condition: '%context.collection.collected.exists() and %context.collection.collected is Period' - resource: '%resource.collection.collected.start' - constants: - dtmFieldPath: '%{hl7SpecimenFieldPath}-17-1' - schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml - - # Alternative to getting specimen collection time from DiagnosticReport instead - - name: specimen-collection-time-diagnostic - condition: '%context.collection.collected.exists().not()' - resource: '%diagnostic.effective' - constants: - dtmFieldPath: '%{hl7SpecimenFieldPath}-17-1' - schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml - - - name: specimen-observation-date-time-end - condition: '%context.collection.collected.exists() and %context.collection.collected is Period' - resource: '%resource.collection.collected.end' - constants: - dtmFieldPath: '%{hl7SpecimenFieldPath}-17-2' - schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml - - - name: specimen-received-time - condition: '%context.receivedTime.exists() and %context.receivedTime is dateTime' - resource: '%resource.receivedTime' - constants: - dtmFieldPath: '%{hl7SpecimenFieldPath}-18' - schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml - - - name: specimen-reject-reason - value: [ '""' ] - hl7Spec: [ '%{hl7SpecimenFieldPath}-21' ] - - - name: specimen-condition - resource: '%resource.condition' - condition: '%resource.exists()' - constants: - cweFieldPath: '%{hl7SpecimenFieldPath}-24' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: specimen-number-of-containers - resource: '%resource.container.specimenQuantity' - condition: '%resource.exists()' - value: [ '%resource.value' ] - hl7Spec: [ '%{hl7SpecimenFieldPath}-26' ] - - - name: specimen-container-type - resource: '%resource.container.type' - constants: - cweFieldPath: '%{hl7SpecimenFieldPath}-27' - schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml - - - name: specimen-observation-result-with-aoe - resource: '%service.supportingInfo.resolve().where(specimen.id = Bundle.entry.resource.ofType(Specimen).id and (meta.exists().not() or meta.tag.code != "AOE"))' - schema: classpath:/metadata/hl7_mapping/resources/Observation/OBX.yml - resourceIndex: specimenObservationIndex - constants: - hl7ObservationPath: '/PATIENT_RESULT/ORDER_OBSERVATION(%{orderIndex})/SPECIMEN(%{specimenIndex})/SPECIMEN_OBSERVATION' - hl7OBXField: '/PATIENT_RESULT/ORDER_OBSERVATION(%{orderIndex})/SPECIMEN(%{specimenIndex})/SPECIMEN_OBSERVATION(%{specimenObservationIndex})/OBX' - observation: '%service.supportingInfo.resolve().where(specimen.id = Bundle.entry.resource.ofType(Specimen).id)[%specimenObservationIndex]' - resultIndex: '%specimenObservationIndex' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml index 796415372f4..ab59f1508f9 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml @@ -1,8 +1,5 @@ # $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json -constants: - obrFieldPath: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR - elements: - name: observation-datetime diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Observation/OBXValue.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Observation/OBXValue.yml index b00993240e2..7ef010ffcab 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Observation/OBXValue.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Observation/OBXValue.yml @@ -22,7 +22,6 @@ elements: value: [ '%resource.value.extension(%`rsext-hl7v2-date-time`).value' ] hl7Spec: [ '%{hl7OBXField}-5' ] - - name: obx-value-vr-1 condition: '%context.extension(%`rsext-obx-observation`).extension.where(url = "OBX.2").value = "VR"' value: [ '%resource.value.split("-").first()' ] @@ -98,7 +97,6 @@ elements: constants: hl7NRField: '%{hl7OBXField}-5' - - name: obx-value-nm condition: '%context.extension(%`rsext-obx-observation`).extension.where(url = "OBX.2").value = "NM"' value: [ '%resource.value.value' ] diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml index 9e560a5a30a..8fdab94f0db 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml @@ -1,8 +1,5 @@ # $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json -constants: - obrFieldPath: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR - elements: - name: set-id @@ -32,6 +29,21 @@ elements: value: [ '%resource.occurrence.extension(%`rsext-hl7v2-date-time`).value' ] hl7Spec: [ '%{obrFieldPath}-6' ] + - name: observation-collected-datetime + condition: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.is(dateTime)' + value: [ '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-7' ] + + - name: observation-collected-datetime-start + condition: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.is(Period)' + value: [ '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.start.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-7' ] + + - name: observation-collected-end-datetime + condition: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.is(Period)' + value: [ '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.end.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-8' ] + - name: ordering-provider-from-practitioner condition: '%context.requester.resolve().is(Practitioner) and %context.requester.resolve().extension(%`rsext-hl7v2Field`).value = "OBR.16"' schema: classpath:/metadata/hl7_mapping/resources/Practitioner/XCN.yml diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml index 4c8879dbe65..f815c352171 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml @@ -1,8 +1,5 @@ # $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json -constants: - hl7Order: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/ORC - elements: - name: order-control hl7Spec: [ '%{hl7Order}-1' ] diff --git a/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt b/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt index f158a08993b..d6c338c0d0b 100644 --- a/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt +++ b/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt @@ -67,11 +67,11 @@ SPM|1|0cba76f5-35e0-4a28-803a-2f31308aae9b||258500001^Nasopharyngeal swab^SCT||| @Suppress("ktlint:standard:max-line-length") const val cleanHL7RecordConverted = - """{"resourceType":"Bundle","id":"1721779095041066000.8124ea86-afeb-4eb2-8971-312b9fb7acb8","meta":{"lastUpdated":"2024-07-23T16:58:15.045-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6"}}],"sender":{"reference":"Organization/1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7","resource":{"resourceType":"Organization","id":"1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6","resource":{"resourceType":"Organization","id":"1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1721779095325537000.37c25033-9e7b-483a-9ca2-8b553244c297","resource":{"resourceType":"Provenance","id":"1721779095325537000.37c25033-9e7b-483a-9ca2-8b553244c297","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478"}}],"entity":[{"role":"source","what":{"reference":"Device/1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10"}}]}},{"fullUrl":"Organization/1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478","resource":{"resourceType":"Organization","id":"1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f","resource":{"resourceType":"Organization","id":"1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10","resource":{"resourceType":"Device","id":"1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1721779095333009000.bd411d6d-f4cf-4c49-9cae-25b4358d5611","resource":{"resourceType":"Provenance","id":"1721779095333009000.bd411d6d-f4cf-4c49-9cae-25b4358d5611","recorded":"2024-07-23T16:58:15Z","policy":[ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117"}}]}},{"fullUrl":"Organization/1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117","resource":{"resourceType":"Organization","id":"1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1","resource":{"resourceType":"Patient","id":"1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":[ "Kareem", "Millie" ]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean": false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":[ "688 Leighann Inlet" ],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b","resource":{"resourceType":"Organization","id":"1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1721779095355228000.9beb413b-8721-4221-8c79-499e20f2fd92","resource":{"resourceType":"Provenance","id":"1721779095355228000.9beb413b-8721-4221-8c79-499e20f2fd92","target":[{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"}],"recorded":"2024-07-23T16:58:15Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c","resource":{"resourceType":"Observation","id":"1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848","resource":{"resourceType":"Organization","id":"1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc","resource":{"resourceType":"Observation","id":"1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62","resource":{"resourceType":"Observation","id":"1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae","resource":{"resourceType":"Observation","id":"1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445","resource":{"resourceType":"Observation","id":"1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba","resource":{"resourceType":"Specimen","id":"1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b","resource":{"resourceType":"Specimen","id":"1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f","resource":{"resourceType":"ServiceRequest","id":"1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19"}}},{"fullUrl":"Practitioner/1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83","resource":{"resourceType":"Practitioner","id":"1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306","resource":{"resourceType":"Organization","id":"1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19","resource":{"resourceType":"PractitionerRole","id":"1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19","practitioner":{"reference":"Practitioner/1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83"},"organization":{"reference":"Organization/1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306"}}},{"fullUrl":"Organization/1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37","resource":{"resourceType":"Organization","id":"1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b","resource":{"resourceType":"Practitioner","id":"1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}]}},{"fullUrl":"Practitioner/1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18","resource":{"resourceType":"Practitioner","id":"1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}]}},{"fullUrl":"DiagnosticReport/1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf","resource":{"resourceType":"DiagnosticReport","id":"1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b"},{"reference":"Specimen/1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba"}],"result":[{"reference":"Observation/1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c"},{"reference":"Observation/1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc"},{"reference":"Observation/1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62"},{"reference":"Observation/1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae"},{"reference":"Observation/1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445"}]}}]}""" + """{"resourceType":"Bundle","id":"1721779095041066000.8124ea86-afeb-4eb2-8971-312b9fb7acb8","meta":{"lastUpdated":"2024-07-23T16:58:15.045-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6"}}],"sender":{"reference":"Organization/1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7","resource":{"resourceType":"Organization","id":"1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6","resource":{"resourceType":"Organization","id":"1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1721779095325537000.37c25033-9e7b-483a-9ca2-8b553244c297","resource":{"resourceType":"Provenance","id":"1721779095325537000.37c25033-9e7b-483a-9ca2-8b553244c297","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478"}}],"entity":[{"role":"source","what":{"reference":"Device/1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10"}}]}},{"fullUrl":"Organization/1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478","resource":{"resourceType":"Organization","id":"1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f","resource":{"resourceType":"Organization","id":"1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10","resource":{"resourceType":"Device","id":"1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1721779095333009000.bd411d6d-f4cf-4c49-9cae-25b4358d5611","resource":{"resourceType":"Provenance","id":"1721779095333009000.bd411d6d-f4cf-4c49-9cae-25b4358d5611","recorded":"2024-07-23T16:58:15Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117"}}]}},{"fullUrl":"Organization/1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117","resource":{"resourceType":"Organization","id":"1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1","resource":{"resourceType":"Patient","id":"1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b","resource":{"resourceType":"Organization","id":"1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1721779095355228000.9beb413b-8721-4221-8c79-499e20f2fd92","resource":{"resourceType":"Provenance","id":"1721779095355228000.9beb413b-8721-4221-8c79-499e20f2fd92","target":[{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"}],"recorded":"2024-07-23T16:58:15Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c","resource":{"resourceType":"Observation","id":"1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848","resource":{"resourceType":"Organization","id":"1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc","resource":{"resourceType":"Observation","id":"1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62","resource":{"resourceType":"Observation","id":"1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae","resource":{"resourceType":"Observation","id":"1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445","resource":{"resourceType":"Observation","id":"1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba","resource":{"resourceType":"Specimen","id":"1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b","resource":{"resourceType":"Specimen","id":"1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f","resource":{"resourceType":"ServiceRequest","id":"1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19"}}},{"fullUrl":"Practitioner/1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83","resource":{"resourceType":"Practitioner","id":"1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306","resource":{"resourceType":"Organization","id":"1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19","resource":{"resourceType":"PractitionerRole","id":"1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19","practitioner":{"reference":"Practitioner/1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83"},"organization":{"reference":"Organization/1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306"}}},{"fullUrl":"Organization/1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37","resource":{"resourceType":"Organization","id":"1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b","resource":{"resourceType":"Practitioner","id":"1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18","resource":{"resourceType":"Practitioner","id":"1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf","resource":{"resourceType":"DiagnosticReport","id":"1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b"},{"reference":"Specimen/1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba"}],"result":[{"reference":"Observation/1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c"},{"reference":"Observation/1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc"},{"reference":"Observation/1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62"},{"reference":"Observation/1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae"},{"reference":"Observation/1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445"}]}}]}""" @Suppress("ktlint:standard:max-line-length") const val cleanHL7RecordConvertedAndTransformed = - """{"resourceType":"Bundle","id":"1714075986350543000.8e8b0e71-a366-41cc-acca-041376e7b05e","meta":{"lastUpdated":"2024-04-25T16:13:06.357-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3"}}],"sender":{"reference":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","resource":{"resourceType":"Organization","id":"1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","resource":{"resourceType":"Organization","id":"1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","resource":{"resourceType":"Provenance","id":"1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2"}}],"entity":[{"role":"source","what":{"reference":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc"}}]}},{"fullUrl":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","resource":{"resourceType":"Organization","id":"1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","resource":{"resourceType":"Organization","id":"1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","resource":{"resourceType":"Device","id":"1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","resource":{"resourceType":"Provenance","id":"1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","recorded":"2024-04-25T16:13:06Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6"}}]}},{"fullUrl":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","resource":{"resourceType":"Organization","id":"1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","resource":{"resourceType":"Patient","id":"1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean": false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","resource":{"resourceType":"Organization","id":"1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","resource":{"resourceType":"Provenance","id":"1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","target":[{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"}],"recorded":"2024-04-25T16:13:06Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","resource":{"resourceType":"Observation","id":"1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","resource":{"resourceType":"Organization","id":"1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","resource":{"resourceType":"Observation","id":"1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","resource":{"resourceType":"Observation","id":"1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","resource":{"resourceType":"Observation","id":"1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","resource":{"resourceType":"Observation","id":"1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","resource":{"resourceType":"Specimen","id":"1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","resource":{"resourceType":"Specimen","id":"1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","resource":{"resourceType":"ServiceRequest","id":"1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08"}}},{"fullUrl":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","resource":{"resourceType":"Practitioner","id":"1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","resource":{"resourceType":"Organization","id":"1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","resource":{"resourceType":"PractitionerRole","id":"1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","practitioner":{"reference":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7"},"organization":{"reference":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f"}}},{"fullUrl":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","resource":{"resourceType":"Organization","id":"1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","resource":{"resourceType":"Practitioner","id":"1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","resource":{"resourceType":"Practitioner","id":"1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","resource":{"resourceType":"DiagnosticReport","id":"1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b"},{"reference":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed"}],"result":[{"reference":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81"},{"reference":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9"},{"reference":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01"},{"reference":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789"},{"reference":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d"}]}}]}""" + """{"resourceType":"Bundle","id":"1714075986350543000.8e8b0e71-a366-41cc-acca-041376e7b05e","meta":{"lastUpdated":"2024-04-25T16:13:06.357-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3"}}],"sender":{"reference":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","resource":{"resourceType":"Organization","id":"1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","resource":{"resourceType":"Organization","id":"1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","resource":{"resourceType":"Provenance","id":"1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2"}}],"entity":[{"role":"source","what":{"reference":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc"}}]}},{"fullUrl":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","resource":{"resourceType":"Organization","id":"1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","resource":{"resourceType":"Organization","id":"1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","resource":{"resourceType":"Device","id":"1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","resource":{"resourceType":"Provenance","id":"1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","recorded":"2024-04-25T16:13:06Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6"}}]}},{"fullUrl":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","resource":{"resourceType":"Organization","id":"1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","resource":{"resourceType":"Patient","id":"1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","resource":{"resourceType":"Organization","id":"1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","resource":{"resourceType":"Provenance","id":"1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","target":[{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"}],"recorded":"2024-04-25T16:13:06Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","resource":{"resourceType":"Observation","id":"1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","resource":{"resourceType":"Organization","id":"1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","resource":{"resourceType":"Observation","id":"1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","resource":{"resourceType":"Observation","id":"1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","resource":{"resourceType":"Observation","id":"1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","resource":{"resourceType":"Observation","id":"1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","resource":{"resourceType":"Specimen","id":"1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","resource":{"resourceType":"Specimen","id":"1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","resource":{"resourceType":"ServiceRequest","id":"1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08"}}},{"fullUrl":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","resource":{"resourceType":"Practitioner","id":"1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","resource":{"resourceType":"Organization","id":"1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","resource":{"resourceType":"PractitionerRole","id":"1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","practitioner":{"reference":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7"},"organization":{"reference":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f"}}},{"fullUrl":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","resource":{"resourceType":"Organization","id":"1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","resource":{"resourceType":"Practitioner","id":"1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","resource":{"resourceType":"Practitioner","id":"1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","resource":{"resourceType":"DiagnosticReport","id":"1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b"},{"reference":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed"}],"result":[{"reference":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81"},{"reference":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9"},{"reference":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01"},{"reference":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789"},{"reference":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d"}]}}]}""" // This message will be parsed and successfully passed through the convert step // despite having a nonexistent NNN segement and an SFT.2 that is not an ST @@ -91,11 +91,11 @@ SPM|1|0cba76f5-35e0-4a28-803a-2f31308aae9b||258500001^Nasopharyngeal swab^SCT||| @Suppress("ktlint:standard:max-line-length") const val invalidHL7RecordConverted = - """{"resourceType":"Bundle","id":"1721777846019696000.250a7183-cf4a-4b93-bc5d-7d584e7f1491","meta":{"lastUpdated":"2024-07-23T16:37:26.024-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2"}}],"sender":{"reference":"Organization/1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67","resource":{"resourceType":"Organization","id":"1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2","resource":{"resourceType":"Organization","id":"1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1721777846291501000.4e6fef75-50f5-4a90-8700-e4c5863d9ba5","resource":{"resourceType":"Provenance","id":"1721777846291501000.4e6fef75-50f5-4a90-8700-e4c5863d9ba5","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073"}}]}},{"fullUrl":"Organization/1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4","resource":{"resourceType":"Organization","id":"1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36","resource":{"resourceType":"Organization","id":"1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073","resource":{"resourceType":"Device","id":"1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1721777846299096000.a563e83f-a551-4782-9f79-0717a607df25","resource":{"resourceType":"Provenance","id":"1721777846299096000.a563e83f-a551-4782-9f79-0717a607df25","recorded":"2024-07-23T16:37:26Z","policy":[ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e"}}]}},{"fullUrl":"Organization/1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e","resource":{"resourceType":"Organization","id":"1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63","resource":{"resourceType":"Patient","id":"1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":[ "Kareem","Millie" ]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":[ "688 Leighann Inlet" ],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547","resource":{"resourceType":"Organization","id":"1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1721777846319409000.99a988d3-2061-464e-8f1f-45b2343be6c2","resource":{"resourceType":"Provenance","id":"1721777846319409000.99a988d3-2061-464e-8f1f-45b2343be6c2","target":[{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"}],"recorded":"2024-07-23T16:37:26Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b","resource":{"resourceType":"Observation","id":"1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac","resource":{"resourceType":"Organization","id":"1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a","resource":{"resourceType":"Observation","id":"1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba","resource":{"resourceType":"Observation","id":"1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d","resource":{"resourceType":"Observation","id":"1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8","resource":{"resourceType":"Specimen","id":"1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376","resource":{"resourceType":"Specimen","id":"1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3","resource":{"resourceType":"ServiceRequest","id":"1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f"}}},{"fullUrl":"Practitioner/1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02","resource":{"resourceType":"Practitioner","id":"1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d","resource":{"resourceType":"Organization","id":"1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f","resource":{"resourceType":"PractitionerRole","id":"1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f","practitioner":{"reference":"Practitioner/1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02"},"organization":{"reference":"Organization/1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d"}}},{"fullUrl":"Organization/1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd","resource":{"resourceType":"Organization","id":"1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc","resource":{"resourceType":"Practitioner","id":"1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}]}},{"fullUrl":"Practitioner/1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19","resource":{"resourceType":"Practitioner","id":"1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}]}},{"fullUrl":"DiagnosticReport/1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d","resource":{"resourceType":"DiagnosticReport","id":"1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376"},{"reference":"Specimen/1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8"}],"result":[{"reference":"Observation/1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b"},{"reference":"Observation/1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a"},{"reference":"Observation/1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba"},{"reference":"Observation/1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d"}]}}]}""" + """{"resourceType":"Bundle","id":"1721777846019696000.250a7183-cf4a-4b93-bc5d-7d584e7f1491","meta":{"lastUpdated":"2024-07-23T16:37:26.024-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2"}}],"sender":{"reference":"Organization/1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67","resource":{"resourceType":"Organization","id":"1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2","resource":{"resourceType":"Organization","id":"1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1721777846291501000.4e6fef75-50f5-4a90-8700-e4c5863d9ba5","resource":{"resourceType":"Provenance","id":"1721777846291501000.4e6fef75-50f5-4a90-8700-e4c5863d9ba5","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073"}}]}},{"fullUrl":"Organization/1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4","resource":{"resourceType":"Organization","id":"1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36","resource":{"resourceType":"Organization","id":"1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073","resource":{"resourceType":"Device","id":"1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1721777846299096000.a563e83f-a551-4782-9f79-0717a607df25","resource":{"resourceType":"Provenance","id":"1721777846299096000.a563e83f-a551-4782-9f79-0717a607df25","recorded":"2024-07-23T16:37:26Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e"}}]}},{"fullUrl":"Organization/1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e","resource":{"resourceType":"Organization","id":"1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63","resource":{"resourceType":"Patient","id":"1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547","resource":{"resourceType":"Organization","id":"1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1721777846319409000.99a988d3-2061-464e-8f1f-45b2343be6c2","resource":{"resourceType":"Provenance","id":"1721777846319409000.99a988d3-2061-464e-8f1f-45b2343be6c2","target":[{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"}],"recorded":"2024-07-23T16:37:26Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b","resource":{"resourceType":"Observation","id":"1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac","resource":{"resourceType":"Organization","id":"1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a","resource":{"resourceType":"Observation","id":"1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba","resource":{"resourceType":"Observation","id":"1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d","resource":{"resourceType":"Observation","id":"1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8","resource":{"resourceType":"Specimen","id":"1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376","resource":{"resourceType":"Specimen","id":"1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3","resource":{"resourceType":"ServiceRequest","id":"1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f"}}},{"fullUrl":"Practitioner/1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02","resource":{"resourceType":"Practitioner","id":"1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d","resource":{"resourceType":"Organization","id":"1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f","resource":{"resourceType":"PractitionerRole","id":"1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f","practitioner":{"reference":"Practitioner/1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02"},"organization":{"reference":"Organization/1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d"}}},{"fullUrl":"Organization/1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd","resource":{"resourceType":"Organization","id":"1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc","resource":{"resourceType":"Practitioner","id":"1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19","resource":{"resourceType":"Practitioner","id":"1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d","resource":{"resourceType":"DiagnosticReport","id":"1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376"},{"reference":"Specimen/1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8"}],"result":[{"reference":"Observation/1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b"},{"reference":"Observation/1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a"},{"reference":"Observation/1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba"},{"reference":"Observation/1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d"}]}}]}""" @Suppress("ktlint:standard:max-line-length") const val invalidHL7RecordConvertedAndTransformed = - """{"resourceType":"Bundle","id":"1714076050088111000.a4c2ec65-b182-45da-9f14-80db72ebdd42","meta":{"lastUpdated":"2024-04-25T16:14:10.094-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58"}}],"sender":{"reference":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","resource":{"resourceType":"Organization","id":"1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","resource":{"resourceType":"Organization","id":"1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","resource":{"resourceType":"Provenance","id":"1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8"}}],"entity":[{"role":"source","what":{"reference":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb"}}]}},{"fullUrl":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","resource":{"resourceType":"Organization","id":"1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","resource":{"resourceType":"Organization","id":"1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","resource":{"resourceType":"Device","id":"1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","resource":{"resourceType":"Provenance","id":"1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","recorded":"2024-04-25T16:14:10Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6"}}]}},{"fullUrl":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","resource":{"resourceType":"Organization","id":"1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","resource":{"resourceType":"Patient","id":"1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean": false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","resource":{"resourceType":"Organization","id":"1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","resource":{"resourceType":"Provenance","id":"1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","target":[{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"}],"recorded":"2024-04-25T16:14:10Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","resource":{"resourceType":"Observation","id":"1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","resource":{"resourceType":"Organization","id":"1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","resource":{"resourceType":"Observation","id":"1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","resource":{"resourceType":"Observation","id":"1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","resource":{"resourceType":"Observation","id":"1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","resource":{"resourceType":"Specimen","id":"1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","resource":{"resourceType":"Specimen","id":"1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","resource":{"resourceType":"ServiceRequest","id":"1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624"}}},{"fullUrl":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","resource":{"resourceType":"Practitioner","id":"1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","resource":{"resourceType":"Organization","id":"1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","resource":{"resourceType":"PractitionerRole","id":"1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","practitioner":{"reference":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14"},"organization":{"reference":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a"}}},{"fullUrl":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","resource":{"resourceType":"Organization","id":"1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","resource":{"resourceType":"Practitioner","id":"1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","resource":{"resourceType":"Practitioner","id":"1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","resource":{"resourceType":"DiagnosticReport","id":"1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924"},{"reference":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5"}],"result":[{"reference":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d"},{"reference":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3"},{"reference":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9"},{"reference":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85"}]}}]}""" + """{"resourceType":"Bundle","id":"1714076050088111000.a4c2ec65-b182-45da-9f14-80db72ebdd42","meta":{"lastUpdated":"2024-04-25T16:14:10.094-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58"}}],"sender":{"reference":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","resource":{"resourceType":"Organization","id":"1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","resource":{"resourceType":"Organization","id":"1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","resource":{"resourceType":"Provenance","id":"1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8"}}],"entity":[{"role":"source","what":{"reference":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb"}}]}},{"fullUrl":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","resource":{"resourceType":"Organization","id":"1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","resource":{"resourceType":"Organization","id":"1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","resource":{"resourceType":"Device","id":"1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","resource":{"resourceType":"Provenance","id":"1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","recorded":"2024-04-25T16:14:10Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6"}}]}},{"fullUrl":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","resource":{"resourceType":"Organization","id":"1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","resource":{"resourceType":"Patient","id":"1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","resource":{"resourceType":"Organization","id":"1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","resource":{"resourceType":"Provenance","id":"1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","target":[{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"}],"recorded":"2024-04-25T16:14:10Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","resource":{"resourceType":"Observation","id":"1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","resource":{"resourceType":"Organization","id":"1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","resource":{"resourceType":"Observation","id":"1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","resource":{"resourceType":"Observation","id":"1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","resource":{"resourceType":"Observation","id":"1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","resource":{"resourceType":"Specimen","id":"1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","resource":{"resourceType":"Specimen","id":"1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","resource":{"resourceType":"ServiceRequest","id":"1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624"}}},{"fullUrl":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","resource":{"resourceType":"Practitioner","id":"1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","resource":{"resourceType":"Organization","id":"1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","resource":{"resourceType":"PractitionerRole","id":"1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","practitioner":{"reference":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14"},"organization":{"reference":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a"}}},{"fullUrl":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","resource":{"resourceType":"Organization","id":"1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","resource":{"resourceType":"Practitioner","id":"1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","resource":{"resourceType":"Practitioner","id":"1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","resource":{"resourceType":"DiagnosticReport","id":"1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924"},{"reference":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5"}],"result":[{"reference":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d"},{"reference":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3"},{"reference":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9"},{"reference":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85"}]}}]}""" // The encoding ^~\&#! make this message not parseable @Suppress("ktlint:standard:max-line-length") @@ -159,7 +159,7 @@ SPM|1|^dba7572cc6334f1ea0744c5f235c823e&MMTC.PROD&2.16.840.1.113883.3.8589.4.2.1 @Suppress("ktlint:standard:max-line-length") const val validRadxMarsHL7MessageConverted = - """{"resourceType":"Bundle","id":"1721777538349722000.36548b19-d5d0-49bf-ad94-aad0220b4d57","meta":{"lastUpdated":"2024-07-23T16:32:18.355-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"20240403205305_dba7572cc6334f1ea0744c5f235c823e"},"type":"message","timestamp":"2024-04-03T13:53:05.000-07:00","entry":[{"fullUrl":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051","resource":{"resourceType":"MessageHeader","id":"df373c48-bfb2-36b0-b63c-5be13bc5d051","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20240403205305+0000"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR251R1_Rcvr_Prof"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.11"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReport-NoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.3.15.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"AIMS.INTEGRATION.PRD","endpoint":"urn:oid:2.16.840.1.114222.4.3.15.1","receiver":{"reference":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6"}}],"sender":{"reference":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"MMTC.PROD","version":"2022","endpoint":"urn:oid:2.16.840.1.113883.3.8589.4.2.106.1"}}},{"fullUrl":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","resource":{"resourceType":"Organization","id":"1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","resource":{"resourceType":"Organization","id":"1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"AIMS.PLATFORM"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"ISO"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.217446"}]}},{"fullUrl":"Provenance/1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","resource":{"resourceType":"Provenance","id":"1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","target":[{"reference":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051"},{"reference":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765"}],"recorded":"2024-04-03T20:53:05Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3"}}]}},{"fullUrl":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","resource":{"resourceType":"Organization","id":"1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","resource":{"resourceType":"Organization","id":"1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","name":"CAREEVOLUTION"}},{"fullUrl":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","resource":{"resourceType":"Device","id":"1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7"}}],"manufacturer":"CAREEVOLUTION","deviceName":[{"name":"MMTC.PROD","type":"manufacturer-name"}],"modelNumber":"16498","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2024-04-02","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240402"}]}}],"value":"2022"}]}},{"fullUrl":"Provenance/1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","resource":{"resourceType":"Provenance","id":"1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","recorded":"2024-07-23T16:32:18Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539"}}]}},{"fullUrl":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","resource":{"resourceType":"Organization","id":"1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","resource":{"resourceType":"Patient","id":"1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"system":"MMTC.PROD","_system":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"}]},"value":"8be6fa3710374dcebe0174e0fd5a1a7c"}],"name":[{ },{ }],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"111"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"1111111"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.7","valueString":"1111111"}]}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"home"}],"address":[{"postalCode":"02139","country":"USA"}]}},{"fullUrl":"Provenance/1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","resource":{"resourceType":"Provenance","id":"1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","target":[{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"}],"recorded":"2024-07-23T16:32:18Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","resource":{"resourceType":"Observation","id":"1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2024-04-03T12:00:00-04:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a"},{"reference":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"260373001","display":"Detected"}]},"note":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation","extension":[{"url":"NTE.2","valueId":"L"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment","valueId":"Note"}],"text":"Note"}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","resource":{"resourceType":"Organization","id":"1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","resource":{"resourceType":"Organization","id":"1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133","resource":{"resourceType":"Observation","id":"1721777538647578000.c2004093-e546-4860-8033-58cba343f133","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"NM"},{"url":"OBX.6","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"UCUM"}],"system":"http://unitsofmeasure.org","version":"2.1","code":"a","display":"year"}]}},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"35659-2","display":"Age at specimen collection"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92"},{"reference":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449"}],"valueQuantity":{"value":24,"unit":"year","system":"UCUM","code":"a"}}},{"fullUrl":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","resource":{"resourceType":"Organization","id":"1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","resource":{"resourceType":"Organization","id":"1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","resource":{"resourceType":"Specimen","id":"1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","resource":{"resourceType":"Specimen","id":"1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FGN"}]},"value":"dba7572cc6334f1ea0744c5f235c823e"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"697989009","display":"Anterior nares swab"}]},"receivedTime":"2024-04-03T12:00:00-04:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","resource":{"resourceType":"ServiceRequest","id":"1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"postalCode":"02139"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.3","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}]}},{"url":"OBR.22","valueString":"20240403120000-0400"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}],"reference":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1"}}},{"fullUrl":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","resource":{"resourceType":"Practitioner","id":"1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}]}},{"fullUrl":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","resource":{"resourceType":"Organization","id":"1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","name":"SA.OTCSelfReport","telecom":[{"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}],"address":[{"postalCode":"02139"}]}},{"fullUrl":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","resource":{"resourceType":"PractitionerRole","id":"1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","practitioner":{"reference":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab"},"organization":{"reference":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091"}}},{"fullUrl":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","resource":{"resourceType":"Organization","id":"1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","name":"SA.OTCSelfReport"}},{"fullUrl":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8","resource":{"resourceType":"Practitioner","id":"1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}},{"fullUrl":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7","resource":{"resourceType":"Practitioner","id":"1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"fullUrl":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","resource":{"resourceType":"DiagnosticReport","id":"1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"basedOn":[{"reference":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"effectiveDateTime":"2024-04-03T12:00:00-04:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"issued":"2024-04-03T12:00:00-04:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"specimen":[{"reference":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08"},{"reference":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b"}],"result":[{"reference":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d"},{"reference":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133"}]}}]}""" + """{"resourceType":"Bundle","id":"1721777538349722000.36548b19-d5d0-49bf-ad94-aad0220b4d57","meta":{"lastUpdated":"2024-07-23T16:32:18.355-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"20240403205305_dba7572cc6334f1ea0744c5f235c823e"},"type":"message","timestamp":"2024-04-03T13:53:05.000-07:00","entry":[{"fullUrl":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051","resource":{"resourceType":"MessageHeader","id":"df373c48-bfb2-36b0-b63c-5be13bc5d051","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20240403205305+0000"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR251R1_Rcvr_Prof"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.11"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReport-NoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.3.15.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"AIMS.INTEGRATION.PRD","endpoint":"urn:oid:2.16.840.1.114222.4.3.15.1","receiver":{"reference":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6"}}],"sender":{"reference":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"MMTC.PROD","version":"2022","endpoint":"urn:oid:2.16.840.1.113883.3.8589.4.2.106.1"}}},{"fullUrl":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","resource":{"resourceType":"Organization","id":"1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","resource":{"resourceType":"Organization","id":"1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"AIMS.PLATFORM"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"ISO"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.217446"}]}},{"fullUrl":"Provenance/1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","resource":{"resourceType":"Provenance","id":"1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","target":[{"reference":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051"},{"reference":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765"}],"recorded":"2024-04-03T20:53:05Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3"}}]}},{"fullUrl":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","resource":{"resourceType":"Organization","id":"1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","resource":{"resourceType":"Organization","id":"1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","name":"CAREEVOLUTION"}},{"fullUrl":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","resource":{"resourceType":"Device","id":"1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7"}}],"manufacturer":"CAREEVOLUTION","deviceName":[{"name":"MMTC.PROD","type":"manufacturer-name"}],"modelNumber":"16498","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2024-04-02","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240402"}]}}],"value":"2022"}]}},{"fullUrl":"Provenance/1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","resource":{"resourceType":"Provenance","id":"1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","recorded":"2024-07-23T16:32:18Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539"}}]}},{"fullUrl":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","resource":{"resourceType":"Organization","id":"1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","resource":{"resourceType":"Patient","id":"1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"system":"MMTC.PROD","_system":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"}]},"value":"8be6fa3710374dcebe0174e0fd5a1a7c"}],"name":[{},{}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"111"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"1111111"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.7","valueString":"1111111"}]}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"home"}],"address":[{"postalCode":"02139","country":"USA"}]}},{"fullUrl":"Provenance/1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","resource":{"resourceType":"Provenance","id":"1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","target":[{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"}],"recorded":"2024-07-23T16:32:18Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","resource":{"resourceType":"Observation","id":"1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2024-04-03T12:00:00-04:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a"},{"reference":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"260373001","display":"Detected"}]},"note":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation","extension":[{"url":"NTE.2","valueId":"L"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment","valueId":"Note"}],"text":"Note"}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","resource":{"resourceType":"Organization","id":"1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","resource":{"resourceType":"Organization","id":"1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133","resource":{"resourceType":"Observation","id":"1721777538647578000.c2004093-e546-4860-8033-58cba343f133","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"NM"},{"url":"OBX.6","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"UCUM"}],"system":"http://unitsofmeasure.org","version":"2.1","code":"a","display":"year"}]}},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"35659-2","display":"Age at specimen collection"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92"},{"reference":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449"}],"valueQuantity":{"value":24,"unit":"year","system":"UCUM","code":"a"}}},{"fullUrl":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","resource":{"resourceType":"Organization","id":"1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","resource":{"resourceType":"Organization","id":"1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","resource":{"resourceType":"Specimen","id":"1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","resource":{"resourceType":"Specimen","id":"1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FGN"}]},"value":"dba7572cc6334f1ea0744c5f235c823e"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"697989009","display":"Anterior nares swab"}]},"receivedTime":"2024-04-03T12:00:00-04:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","resource":{"resourceType":"ServiceRequest","id":"1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"postalCode":"02139"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.3","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}]}},{"url":"OBR.22","valueString":"20240403120000-0400"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}],"reference":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1"}}},{"fullUrl":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","resource":{"resourceType":"Practitioner","id":"1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}]}},{"fullUrl":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","resource":{"resourceType":"Organization","id":"1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","name":"SA.OTCSelfReport","telecom":[{"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}],"address":[{"postalCode":"02139"}]}},{"fullUrl":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","resource":{"resourceType":"PractitionerRole","id":"1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","practitioner":{"reference":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab"},"organization":{"reference":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091"}}},{"fullUrl":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","resource":{"resourceType":"Organization","id":"1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","name":"SA.OTCSelfReport"}},{"fullUrl":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8","resource":{"resourceType":"Practitioner","id":"1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}},{"fullUrl":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7","resource":{"resourceType":"Practitioner","id":"1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"fullUrl":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","resource":{"resourceType":"DiagnosticReport","id":"1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"basedOn":[{"reference":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"effectiveDateTime":"2024-04-03T12:00:00-04:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"issued":"2024-04-03T12:00:00-04:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"specimen":[{"reference":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08"},{"reference":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b"}],"result":[{"reference":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d"},{"reference":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133"}]}}]}""" @Suppress("ktlint:standard:max-line-length") const val invalidRadxMarsHL7Message = diff --git a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir index 9ccf36c7252..d9e98bfe84f 100644 --- a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir +++ b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir @@ -1091,6 +1091,43 @@ } } ], + "relationship" : [ + { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70063" + } + ], + "version" : "2.5.1", + "code" : "OTH", + "display" : "Other" + }, + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "L" + } + ], + "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version" : "5.67", + "code" : "OT", + "display" : "OTHER RELATIONSHIP" + } + ] + } + ], "name" : { "extension" : [ { @@ -8011,21 +8048,21 @@ "reference" : "PractitionerRole/1716965606277846000.0f708c16-acaa-4120-914e-deb0ab03c36d" } ], - "valueCodeableConcept": { - "coding": [ + "valueCodeableConcept" : { + "coding" : [ { - "extension": [ + "extension" : [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString": "coding" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString": "L" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "L" } ], - "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code": "COM" + "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code" : "COM" } ] } @@ -13824,6 +13861,43 @@ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" } + ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727474667987404000.47d8c87d-22f6-4c2e-b128-c7581a9dcb37" + }, + "collectedPeriod" : { + "start" : "2028-08-02T02:52:01-06:00", + "_start" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280802025201-0600" + } + ] + }, + "end" : "2028-08-02T02:52:01-06:00", + "_end" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280802025201-0600" + } + ] + } + } + } + } + }, + { + "fullUrl" : "Practitioner/1727474667987404000.47d8c87d-22f6-4c2e-b128-c7581a9dcb37", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727474667987404000.47d8c87d-22f6-4c2e-b128-c7581a9dcb37", + "identifier" : [ + { + "value" : "ER" + } ] } }, @@ -13837,6 +13911,43 @@ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" } + ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727474667989088000.ec94c45e-f6be-4bdb-83b4-4655198ff7a0" + }, + "collectedPeriod" : { + "start" : "2028-08-02T02:52:01-06:00", + "_start" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280802025201-0600" + } + ] + }, + "end" : "2028-08-02T02:52:01-06:00", + "_end" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280802025201-0600" + } + ] + } + } + } + } + }, + { + "fullUrl" : "Practitioner/1727474667989088000.ec94c45e-f6be-4bdb-83b4-4655198ff7a0", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727474667989088000.ec94c45e-f6be-4bdb-83b4-4655198ff7a0", + "identifier" : [ + { + "value" : "ER" + } ] } }, @@ -13850,6 +13961,43 @@ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" } + ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727474667990026000.862f5c24-268b-4fe0-b856-483da2916bbe" + }, + "collectedPeriod" : { + "start" : "2028-08-02T02:52:01-06:00", + "_start" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280802025201-0600" + } + ] + }, + "end" : "2028-08-02T02:52:01-06:00", + "_end" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280802025201-0600" + } + ] + } + } + } + } + }, + { + "fullUrl" : "Practitioner/1727474667990026000.862f5c24-268b-4fe0-b856-483da2916bbe", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727474667990026000.862f5c24-268b-4fe0-b856-483da2916bbe", + "identifier" : [ + { + "value" : "ER" + } ] } }, @@ -13863,6 +14011,43 @@ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" } + ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727474667990903000.8194b15d-a1f0-4516-ad43-4f42d819e4ea" + }, + "collectedPeriod" : { + "start" : "2028-08-07T16:36:01-06:00", + "_start" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280807163601-0600" + } + ] + }, + "end" : "2028-08-07T16:36:01-06:00", + "_end" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280807163601-0600" + } + ] + } + } + } + } + }, + { + "fullUrl" : "Practitioner/1727474667990903000.8194b15d-a1f0-4516-ad43-4f42d819e4ea", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727474667990903000.8194b15d-a1f0-4516-ad43-4f42d819e4ea", + "identifier" : [ + { + "value" : "ER" + } ] } }, @@ -13876,6 +14061,43 @@ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" } + ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727474667991784000.0ebbce89-11bf-4a99-ae60-e0079aa53226" + }, + "collectedPeriod" : { + "start" : "2028-08-07T16:36:01-06:00", + "_start" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280807163601-0600" + } + ] + }, + "end" : "2028-08-07T16:36:01-06:00", + "_end" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20280807163601-0600" + } + ] + } + } + } + } + }, + { + "fullUrl" : "Practitioner/1727474667991784000.0ebbce89-11bf-4a99-ae60-e0079aa53226", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727474667991784000.0ebbce89-11bf-4a99-ae60-e0079aa53226", + "identifier" : [ + { + "value" : "ER" + } ] } }, diff --git a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir index 097f4e1f6d6..8c265ff96f4 100644 --- a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir +++ b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir @@ -926,7 +926,18 @@ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" } - ] + ], + "collection" : { + "collectedDateTime" : "2024-04-03T12:00:00-04:00", + "_collectedDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20240403120000-0400" + } + ] + } + } } }, { diff --git a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/omlo21/OMLO21Full.kt b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/omlo21/OMLO21Full.kt new file mode 100644 index 00000000000..338e9d73f3a --- /dev/null +++ b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/omlo21/OMLO21Full.kt @@ -0,0 +1,17 @@ +package gov.cdc.prime.router.datatests.mappinginventory.omlo21 + +import gov.cdc.prime.router.datatests.mappinginventory.verifyHL7ToFHIRToHL7Mapping +import org.junit.jupiter.api.Test + +class OMLO21Full { + + @Test + fun `test OML_O21 all segments`() { + assert( + verifyHL7ToFHIRToHL7Mapping( + "catchall/omlo21/oml_o21-full", + outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml" + ).passed + ) + } +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt index f69513f6a5c..a0a2d7c2747 100644 --- a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt +++ b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt @@ -68,11 +68,17 @@ class ORCOBRToServiceRequestDiagnosticReportTests { } @Test - fun `test correctly handles the effective when OBR8 is not populated`() { + fun `test correctly handles the effectiveDateTime when OBR8 is not populated`() { val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated" assert(verifyHL7ToFHIRToHL7Mapping(testFileName).passed) } + @Test + fun `test correctly handles the effectivePeriod when OBR8 is populated`() { + val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated" + assert(verifyHL7ToFHIRToHL7Mapping(testFileName).passed) + } + @Test fun `test handles mapped HL7 values to OBRExtension from OBR25`() { val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25" @@ -90,4 +96,15 @@ class ORCOBRToServiceRequestDiagnosticReportTests { val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated" assert(verifyHL7ToFHIRToHL7Mapping(testFileName, true, false, true).passed) } + + @Test + fun `test populates OML specific fields for OML messages`() { + val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message" + assert( + verifyHL7ToFHIRToHL7Mapping( + testFileName, + outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml" + ).passed + ) + } } \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/FHIR_to_HL7/sample_OML_20230831-0001.fhir b/prime-router/src/testIntegration/resources/datatests/FHIR_to_HL7/sample_OML_20230831-0001.fhir index 17e218b8700..e09c6717d59 100644 --- a/prime-router/src/testIntegration/resources/datatests/FHIR_to_HL7/sample_OML_20230831-0001.fhir +++ b/prime-router/src/testIntegration/resources/datatests/FHIR_to_HL7/sample_OML_20230831-0001.fhir @@ -1,8 +1,8 @@ { "resourceType" : "Bundle", - "id" : "1695669259031463000.f0525223-538b-4b70-9fce-3120011fb551", + "id" : "1727133200498293000.0551381e-87bb-4eed-9c3c-2a34fb70ef51", "meta" : { - "lastUpdated" : "2023-09-25T12:14:19.058-07:00" + "lastUpdated" : "2024-09-23T16:13:20.502-07:00" }, "identifier" : { "system" : "https://reportstream.cdc.gov/prime-router", @@ -12,17 +12,11 @@ "timestamp" : "2023-05-06T03:29:16.000-07:00", "entry" : [ { - "fullUrl" : "MessageHeader/87c2d0db-6f31-3666-b9e2-7152e039c11f", + "fullUrl" : "MessageHeader/1727133200547009000.51500f0c-c723-46b9-b64a-d2ec3a519da7", "resource" : { "resourceType" : "MessageHeader", - "id" : "87c2d0db-6f31-3666-b9e2-7152e039c11f", + "id" : "1727133200547009000.51500f0c-c723-46b9-b64a-d2ec3a519da7", "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], "tag" : [ { "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", @@ -35,13 +29,17 @@ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", "extension" : [ { - "url" : "MSH.16", - "valueString" : "AL" + "url" : "MSH.7", + "valueString" : "20230506052916-0500" }, { "url" : "MSH.15", "valueString" : "AL" }, + { + "url" : "MSH.16", + "valueString" : "AL" + }, { "url" : "MSH.21", "valueIdentifier" : { @@ -109,23 +107,16 @@ } ], "name" : "NATUS", - "endpoint" : "urn:dns:natus.health.state.mn.us", "receiver" : { - "reference" : "Organization/urn-oid-2.16.840.1.114222.4.1.10080" + "reference" : "Organization/1727133200546249000.da25de11-15e0-47cd-9605-451628d137c7" } } ], "sender" : { - "reference" : "Organization/1695669260998438000.c605a46a-9711-4fbb-b14e-fc6814ed8311" + "reference" : "Organization/1727133200528316000.74e31b18-88b7-4038-b55e-9e83473516ad" }, "source" : { "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", - "valueReference" : { - "reference" : "Organization/1695669259213507000.4b999e35-7d47-48a1-ac6e-88f144e21093" - } - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", "valueString" : "Epic" @@ -143,16 +134,50 @@ "valueString" : "MSH.3" } ], - "name" : "Epic", "endpoint" : "urn:oid:1.2.840.114350.1.13.145.2.7.2.695071" } } }, { - "fullUrl" : "Organization/urn-oid-2.16.840.1.114222.4.1.10080", + "fullUrl" : "Organization/1727133200528316000.74e31b18-88b7-4038-b55e-9e83473516ad", + "resource" : { + "resourceType" : "Organization", + "id" : "1727133200528316000.74e31b18-88b7-4038-b55e-9e83473516ad", + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } + ], + "value" : "Centracare" + }, + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "DNS" + } + ] + }, + "value" : "centracare.com" + } + ] + } + }, + { + "fullUrl" : "Organization/1727133200546249000.da25de11-15e0-47cd-9605-451628d137c7", "resource" : { "resourceType" : "Organization", - "id" : "urn-oid-2.16.840.1.114222.4.1.10080", + "id" : "1727133200546249000.da25de11-15e0-47cd-9605-451628d137c7", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -187,50 +212,44 @@ "system" : "urn:ietf:rfc:3986", "value" : "2.16.840.1.114222.4.1.10080" } - ], - "name" : "MN Public Health Lab" + ] } }, { - "fullUrl" : "Organization/1695669259213507000.4b999e35-7d47-48a1-ac6e-88f144e21093", + "fullUrl" : "Provenance/1727133200761072000.6508f066-08f5-49cb-87c4-6305cabd20f6", "resource" : { - "resourceType" : "Organization", - "id" : "1695669259213507000.4b999e35-7d47-48a1-ac6e-88f144e21093", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ + "resourceType" : "Provenance", + "id" : "1727133200761072000.6508f066-08f5-49cb-87c4-6305cabd20f6", + "recorded" : "2023-05-06T05:29:16-05:00", + "activity" : { + "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" + "display" : "OML^O21^OML_O21" } ] - } + }, + "agent" : [ + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "author" + } + ] + }, + "who" : { + "reference" : "Organization/1727133200760575000.e1170a0a-e2a5-48cd-99b7-86c9298368ef" + } + } + ] } }, { - "fullUrl" : "Organization/1695669260998438000.c605a46a-9711-4fbb-b14e-fc6814ed8311", + "fullUrl" : "Organization/1727133200760575000.e1170a0a-e2a5-48cd-99b7-86c9298368ef", "resource" : { "resourceType" : "Organization", - "id" : "1695669260998438000.c605a46a-9711-4fbb-b14e-fc6814ed8311", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200760575000.e1170a0a-e2a5-48cd-99b7-86c9298368ef", "identifier" : [ { "extension" : [ @@ -262,467 +281,542 @@ } }, { - "fullUrl" : "ServiceRequest/1695669261555831000.5ad804c8-3508-4a62-8ced-23eb4351c2f6", + "fullUrl" : "Provenance/1727133200768658000.8264ccb6-32c2-45be-a64d-e983aabee81a", "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1695669261555831000.5ad804c8-3508-4a62-8ced-23eb4351c2f6", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ + "resourceType" : "Provenance", + "id" : "1727133200768658000.8264ccb6-32c2-45be-a64d-e983aabee81a", + "recorded" : "2024-09-23T16:13:20Z", + "policy" : [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity" : { + "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" + "code" : "v2-FHIR transformation" } ] }, - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entered-by", - "valueReference" : { - "reference" : "Practitioner/1695669261548614000.8d8ad999-27fa-4f35-9231-6e571f7bc87a" - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/collector-identifier", - "valueReference" : { - "reference" : "Practitioner/1695669261552537000.d98fe0f9-f125-4509-a0ae-49239ddb7b7f" - } - }, + "agent" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/order-control", - "valueCodeableConcept" : { + "type" : { "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0119", - "code" : "NW" + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" } ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/enterers-location", - "valueReference" : { - "reference" : "Location/1695669261570648000.f8e4036c-2730-4423-918c-c694f1b902e3" + }, + "who" : { + "reference" : "Organization/1727133200768394000.754699fa-4751-435b-b31f-46dfbfe99753" } } - ], + ] + } + }, + { + "fullUrl" : "Organization/1727133200768394000.754699fa-4751-435b-b31f-46dfbfe99753", + "resource" : { + "resourceType" : "Organization", + "id" : "1727133200768394000.754699fa-4751-435b-b31f-46dfbfe99753", "identifier" : [ { - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "VN", - "display" : "Visit number" - } - ] - }, - "value" : "20230506052916-0500" + "value" : "CDC PRIME - Atlanta" }, { "type" : { "coding" : [ { - "code" : "CMS" + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" } ] }, - "value" : "1043269798" + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e", + "resource" : { + "resourceType" : "Patient", + "id" : "1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", + "extension" : [ + { + "url" : "PID.8", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "M" + } + ] + } + }, + { + "url" : "PID.24", + "valueString" : "N" + }, + { + "url" : "PID.30", + "valueString" : "N" + } + ] }, { - "type" : { - "coding" : [ + "url" : "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", + "valueHumanName" : { + "extension" : [ { - "code" : "MN Public Health Lab" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ + { + "url" : "XPN.2", + "valueString" : "SADIE" + }, + { + "url" : "XPN.3", + "valueString" : "S" + } + ] } + ], + "family" : "SMITH", + "given" : [ + "SADIE", + "S" ] - }, - "value" : "739" - }, + } + } + ], + "identifier" : [ { "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueOid" : "urn:oid:1.2.840.114350.1.13.145.2.7.2.695071" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension" : [ + { + "url" : "CX.5", + "valueString" : "MR" + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.3" } ], "type" : { "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC", - "display" : "Placer Identifier" + "code" : "MR" } ] }, - "system" : "urn:id:EPIC", - "value" : "421832901" - }, + "value" : "11102779" + } + ], + "name" : [ { "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7-use", - "valueString" : "placer-order-number" - }, + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ + { + "url" : "XPN.2", + "valueString" : "BB SARAH" + }, + { + "url" : "XPN.7", + "valueString" : "L" + } + ] + } + ], + "use" : "official", + "family" : "SMITH", + "given" : [ + "BB SARAH" + ] + } + ], + "telecom" : [ + { + "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" + "url" : "XTN.2", + "valueString" : "PRN" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + "url" : "XTN.3", + "valueString" : "PH" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url" : "XTN.9", + "valueString" : "(763)555-5555" + }, + { + "url" : "XTN.12", + "valueString" : "(763)555-5555" } ] } ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } - ] - }, - "value" : "421832901" + "system" : "phone", + "value" : "(763)555-5555", + "use" : "home" } ], - "status" : "unknown", - "intent" : "order", - "code" : { - "coding" : [ - { - "system" : "http://loinc.org", - "code" : "54089-8", - "display" : "Newborn screening panel American Health Information Community (AHIC)" - } - ] - }, - "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" - }, - "authoredOn" : "2023-05-06T05:29:13-05:00", - "_authoredOn" : { - "extension" : [ + "gender" : "male", + "birthDate" : "2023-05-04", + "_birthDate" : { + "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506052913-0500" - } - ] - }, - "requester" : { - "reference" : "PractitionerRole/1695669261568047000.72f08cf4-2bc0-4be2-bc26-ad36f1f0da5b" - } - } - }, - { - "fullUrl" : "Practitioner/1695669261548614000.8d8ad999-27fa-4f35-9231-6e571f7bc87a", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1695669261548614000.8d8ad999-27fa-4f35-9231-6e571f7bc87a", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - } - } - }, - { - "fullUrl" : "Practitioner/1695669261552537000.d98fe0f9-f125-4509-a0ae-49239ddb7b7f", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1695669261552537000.d98fe0f9-f125-4509-a0ae-49239ddb7b7f", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - } - } - }, - { - "fullUrl" : "Practitioner/1695669261560416000.a8835be5-eee4-4709-ba55-d4d997aaf896", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1695669261560416000.a8835be5-eee4-4709-ba55-d4d997aaf896", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ + "valueString" : "20230504131023-0500" + }, { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" + "url" : "http://hl7.org/fhir/StructureDefinition/patient-birthTime", + "valueDateTime" : "2023-05-04T13:10:23-05:00" } ] }, - "extension" : [ + "deceasedBoolean" : false, + "address" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-type", - "valueCodeableConcept" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" - } - ] - } + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ + { + "url" : "SAD.1", + "valueString" : "555 STATE HIGHWAY 13" + } + ] + }, + { + "url" : "XAD.7", + "valueCode" : "H" + } + ] + } + ], + "use" : "home", + "line" : [ + "555 STATE HIGHWAY 13" + ], + "city" : "DEER CREEK", + "district" : "OTTER TAIL", + "state" : "IG", + "postalCode" : "56527-9657", + "country" : "USA" } ], - "identifier" : [ + "multipleBirthBoolean" : false, + "contact" : [ { "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" + "url" : "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70131" + } + ], + "code" : "N", + "display" : "Next-of-Kin" + } + ] + } } ], - "type" : { - "coding" : [ + "relationship" : [ + { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70131" + } + ], + "code" : "N", + "display" : "Next-of-Kin" + } + ] + } + ], + "name" : { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI", - "display" : "National provider identifier" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ + { + "url" : "XPN.2", + "valueString" : "Leia" + } + ] } + ], + "family" : "Organa", + "given" : [ + "Leia" ] }, - "system" : "http://hl7.org/fhir/sid/us-npi", - "value" : "1265136360" - } - ], - "name" : [ - { - "use" : "official", - "text" : "JANE JONES", - "family" : "JONES", - "given" : [ - "JANE" + "telecom" : [ + { + "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "31" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "201" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "234567" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ + { + "url" : "XTN.3", + "valueString" : "PH" + }, + { + "url" : "XTN.7", + "valueString" : "234567" + }, + { + "url" : "XTN.12", + "valueString" : "+31201234567" + } + ] + } + ], + "system" : "phone", + "value" : "+31201234567" + } ] } ] } }, { - "fullUrl" : "Location/1695669261565432000.384cef22-33c2-45d7-bf14-fe1b2e82855d", + "fullUrl" : "Provenance/1727133200788450000.13955a83-ca9d-4215-a89b-44e626579bba", "resource" : { - "resourceType" : "Location", - "id" : "1695669261565432000.384cef22-33c2-45d7-bf14-fe1b2e82855d", - "meta" : { - "extension" : [ + "resourceType" : "Provenance", + "id" : "1727133200788450000.13955a83-ca9d-4215-a89b-44e626579bba", + "target" : [ + { + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" + } + ], + "recorded" : "2024-09-23T16:13:20Z", + "activity" : { + "coding" : [ { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" } ] } } }, { - "fullUrl" : "Organization/1695669261567733000.3bdd12c2-f56f-400b-aecc-9883e5685362", + "fullUrl" : "RelatedPerson/1727133200790203000.00aa30cf-f5b2-4b0d-a294-4bf348c11b02", "resource" : { - "resourceType" : "Organization", - "id" : "1695669261567733000.3bdd12c2-f56f-400b-aecc-9883e5685362", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "resourceType" : "RelatedPerson", + "id" : "1727133200790203000.00aa30cf-f5b2-4b0d-a294-4bf348c11b02", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0204", - "code" : "L", - "display" : "Legal name" - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "NK1" } ], - "identifier" : [ + "patient" : { + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" + }, + "relationship" : [ { "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.3" + } + ], + "coding" : [ + { "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CMS" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70131" } - ] + ], + "code" : "N", + "display" : "Next-of-Kin" + } + ] + } + ], + "name" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Location/1695669261565432000.384cef22-33c2-45d7-bf14-fe1b2e82855d" - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ + { + "url" : "XPN.2", + "valueString" : "Leia" + } + ] } ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" - } - ] - }, - "value" : "1043269798" + "family" : "Organa", + "given" : [ + "Leia" + ] } ], - "name" : "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl" : "PractitionerRole/1695669261568047000.72f08cf4-2bc0-4be2-bc26-ad36f1f0da5b", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1695669261568047000.72f08cf4-2bc0-4be2-bc26-ad36f1f0da5b", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, - "practitioner" : { - "reference" : "Practitioner/1695669261560416000.a8835be5-eee4-4709-ba55-d4d997aaf896" - }, - "organization" : { - "reference" : "Organization/1695669261567733000.3bdd12c2-f56f-400b-aecc-9883e5685362" - } - } - }, - { - "fullUrl" : "Location/1695669261570648000.f8e4036c-2730-4423-918c-c694f1b902e3", - "resource" : { - "resourceType" : "Location", - "id" : "1695669261570648000.f8e4036c-2730-4423-918c-c694f1b902e3", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - } + "telecom" : [ + { + "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "31" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "201" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "234567" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ + { + "url" : "XTN.3", + "valueString" : "PH" + }, + { + "url" : "XTN.7", + "valueString" : "234567" + }, + { + "url" : "XTN.12", + "valueString" : "+31201234567" + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.5" + } + ], + "system" : "phone", + "value" : "+31201234567" + } + ] } }, { - "fullUrl" : "Observation/1695669261775617000.d5df762f-03f4-4e6d-af35-446ec9df2c31", + "fullUrl" : "Observation/1727133200793272000.a7cc16be-b4a3-4f2e-82c9-e1d95a7149f5", "resource" : { "resourceType" : "Observation", - "id" : "1695669261775617000.d5df762f-03f4-4e6d-af35-446ec9df2c31", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200793272000.a7cc16be-b4a3-4f2e-82c9-e1d95a7149f5", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/units", - "valueCodeableConcept" : { - "coding" : [ - { - "system" : "http://unitsofmeasure.org", - "code" : "g", - "display" : "gram" - } - ] - } - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "NM" + }, + { + "url" : "OBX.6", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "UCUM" + } + ], + "system" : "http://unitsofmeasure.org", + "code" : "g", + "display" : "gram" + } + ] + } + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "8339-4", "display" : "BIRTH WEIGHT MEASURED" @@ -730,7 +824,7 @@ ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -742,78 +836,73 @@ ] }, "valueQuantity" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/alternate-value", - "valueString" : "1769.859285" - } - ], "value" : 1769.8593, - "unit" : "g", - "system" : "http://unitsofmeasure.org", + "unit" : "gram", + "system" : "UCUM", "code" : "g" } } }, { - "fullUrl" : "Observation/1695669261780337000.da275dfc-1950-472b-8a3c-f558c8e69333", + "fullUrl" : "Observation/1727133200795547000.8a17d6b0-ba46-4417-a7cd-dd15e7095eb7", "resource" : { "resourceType" : "Observation", - "id" : "1695669261780337000.da275dfc-1950-472b-8a3c-f558c8e69333", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200795547000.8a17d6b0-ba46-4417-a7cd-dd15e7095eb7", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/units", - "valueCodeableConcept" : { - "coding" : [ - { - "system" : "http://unitsofmeasure.org", - "code" : "wk", - "display" : "week" - } - ] - } - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "NM" + }, + { + "url" : "OBX.6", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "UCUM" + } + ], + "system" : "http://unitsofmeasure.org", + "code" : "wk", + "display" : "week" + } + ] + } + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "57714-8", "display" : "OBSTETRIC ESTIMATION OF GESTATIONAL AGE" @@ -821,7 +910,7 @@ ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -833,66 +922,51 @@ ] }, "valueQuantity" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/alternate-value", - "valueString" : "32" - } - ], "value" : 32, - "unit" : "wk", - "system" : "http://unitsofmeasure.org", + "unit" : "week", + "system" : "UCUM", "code" : "wk" } } }, { - "fullUrl" : "Observation/1695669261784168000.35a25dff-438e-4262-9397-939eaf5f024e", + "fullUrl" : "Observation/1727133200797365000.9b7d00cb-f2b8-4749-92c8-225cab5f259b", "resource" : { "resourceType" : "Observation", - "id" : "1695669261784168000.35a25dff-438e-4262-9397-939eaf5f024e", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200797365000.9b7d00cb-f2b8-4749-92c8-225cab5f259b", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "57713-0", "display" : "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION" @@ -900,7 +974,7 @@ ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -914,6 +988,16 @@ "valueCodeableConcept" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "LA12419-0", "display" : "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" @@ -923,60 +1007,50 @@ } }, { - "fullUrl" : "Observation/1695669261787987000.904d10b9-c831-4d93-9751-edbec5b1f04d", + "fullUrl" : "Observation/1727133200799038000.534eab68-0842-4dfe-9d9c-c3cdd6828316", "resource" : { "resourceType" : "Observation", - "id" : "1695669261787987000.904d10b9-c831-4d93-9751-edbec5b1f04d", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200799038000.534eab68-0842-4dfe-9d9c-c3cdd6828316", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { - "system" : "99MDH", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], "code" : "MNDSIB", "display" : "DOES THE BABY HAVE A DECEASED SIBLING?" } ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -990,7 +1064,16 @@ "valueCodeableConcept" : { "coding" : [ { - "system" : "99MDH", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], "code" : "N", "display" : "No" } @@ -999,60 +1082,50 @@ } }, { - "fullUrl" : "Observation/1695669261791552000.5eef397b-048b-46d1-99c6-48bceaa95ecd", + "fullUrl" : "Observation/1727133200800657000.5b01a1c4-e769-477d-88dd-8fac17a37ab4", "resource" : { "resourceType" : "Observation", - "id" : "1695669261791552000.5eef397b-048b-46d1-99c6-48bceaa95ecd", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200800657000.5b01a1c4-e769-477d-88dd-8fac17a37ab4", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { - "system" : "99MDH", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], "code" : "MNDEFECT", "display" : "DOES THE BABY HAVE BIRTH DEFECTS?" } ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1066,7 +1139,16 @@ "valueCodeableConcept" : { "coding" : [ { - "system" : "99MDH", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], "code" : "N", "display" : "No" } @@ -1075,60 +1157,50 @@ } }, { - "fullUrl" : "Observation/1695669261794640000.aebb6fa3-9574-4f83-af82-06b6d2df27ae", + "fullUrl" : "Observation/1727133200802546000.6215f7d5-6c47-4337-8b6a-503ac0bdb67f", "resource" : { "resourceType" : "Observation", - "id" : "1695669261794640000.aebb6fa3-9574-4f83-af82-06b6d2df27ae", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200802546000.6215f7d5-6c47-4337-8b6a-503ac0bdb67f", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { - "system" : "99MDH", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], "code" : "MNFAM", "display" : "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL" } ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1142,7 +1214,16 @@ "valueCodeableConcept" : { "coding" : [ { - "system" : "99MDH", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], "code" : "N", "display" : "No" } @@ -1151,52 +1232,43 @@ } }, { - "fullUrl" : "Observation/1695669261797898000.1f2a7080-6188-477b-8310-a7c82b28e81e", + "fullUrl" : "Observation/1727133200804303000.a749bc39-0714-4f69-87db-a634642d22d3", "resource" : { "resourceType" : "Observation", - "id" : "1695669261797898000.1f2a7080-6188-477b-8310-a7c82b28e81e", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200804303000.a749bc39-0714-4f69-87db-a634642d22d3", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "67704-7", "display" : "FEEDING TYPES" @@ -1204,7 +1276,7 @@ ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1218,6 +1290,16 @@ "valueCodeableConcept" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "LA12418-2", "display" : "TPN" @@ -1227,52 +1309,43 @@ } }, { - "fullUrl" : "Observation/1695669261801446000.ddbee45e-3169-46f5-bb3c-6fb9f8458cd8", + "fullUrl" : "Observation/1727133200805779000.834301e0-25fa-45d7-8ddc-3ad1b7561630", "resource" : { "resourceType" : "Observation", - "id" : "1695669261801446000.ddbee45e-3169-46f5-bb3c-6fb9f8458cd8", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200805779000.834301e0-25fa-45d7-8ddc-3ad1b7561630", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "2" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "67704-7", "display" : "FEEDING TYPES" @@ -1280,7 +1353,7 @@ ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1294,6 +1367,16 @@ "valueCodeableConcept" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "LA16914-6", "display" : "BREAST MILK" @@ -1303,52 +1386,43 @@ } }, { - "fullUrl" : "Observation/1695669261805167000.af8d435c-63ac-4874-a7ed-6f48797d1b1c", + "fullUrl" : "Observation/1727133200808186000.7fcebe37-0de0-45aa-9872-ec3723585bf2", "resource" : { "resourceType" : "Observation", - "id" : "1695669261805167000.af8d435c-63ac-4874-a7ed-6f48797d1b1c", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200808186000.7fcebe37-0de0-45aa-9872-ec3723585bf2", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "57723-9", "display" : "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE" @@ -1356,7 +1430,7 @@ ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1370,6 +1444,12 @@ "valueCodeableConcept" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], "code" : "0516199364" } ] @@ -1377,52 +1457,43 @@ } }, { - "fullUrl" : "Observation/1695669261807707000.4f04a3ff-10bc-4cdd-be13-54cd68f7067c", + "fullUrl" : "Observation/1727133200809672000.42257385-71c9-4c34-b285-2f01d06e8f82", "resource" : { "resourceType" : "Observation", - "id" : "1695669261807707000.4f04a3ff-10bc-4cdd-be13-54cd68f7067c", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200809672000.42257385-71c9-4c34-b285-2f01d06e8f82", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "ST" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "62328-0", "display" : "DISCHARGE PROVIDER PRACTICE PHONE NUMBER" @@ -1430,67 +1501,58 @@ ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueString" : "Daniel Davis/218-555-1000" - } - }, - { - "fullUrl" : "Observation/1695669261810041000.e47d7a7f-b710-421f-b2fd-07337243454f", - "resource" : { - "resourceType" : "Observation", - "id" : "1695669261810041000.e47d7a7f-b710-421f-b2fd-07337243454f", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" } ] }, + "valueString" : "Daniel Davis/218-555-1000" + } + }, + { + "fullUrl" : "Observation/1727133200811020000.2c39eec2-a445-4f80-8ef2-f3b8283dc0f9", + "resource" : { + "resourceType" : "Observation", + "id" : "1727133200811020000.2c39eec2-a445-4f80-8ef2-f3b8283dc0f9", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "ST" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "62324-9", "display" : "POST-DISCHARGE PROVIDER NAME" @@ -1498,7 +1560,7 @@ ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1513,52 +1575,43 @@ } }, { - "fullUrl" : "Observation/1695669261812411000.3a388f9f-a4d9-44da-80d5-c597bfec30e5", + "fullUrl" : "Observation/1727133200812409000.b17af112-d0f9-409b-ab63-6d3d3dbd4ff9", "resource" : { "resourceType" : "Observation", - "id" : "1695669261812411000.3a388f9f-a4d9-44da-80d5-c597bfec30e5", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200812409000.b17af112-d0f9-409b-ab63-6d3d3dbd4ff9", "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueString" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type", - "valueString" : "QST" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text", - "valueString" : "O" - }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", "valueString" : "1" - } - ], - "identifier" : [ + }, { - "system" : "urn:id:extID", - "value" : "421832901" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "ST" + }, + { + "url" : "OBX.11", + "valueString" : "unknown" + } + ] } ], "status" : "unknown", "code" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], "system" : "http://loinc.org", "code" : "62326-4", "display" : "POST-DISCHARGE PROVIDER PRACTICE NAME" @@ -1566,7 +1619,7 @@ ] }, "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1581,440 +1634,435 @@ } }, { - "fullUrl" : "Specimen/1695669261832353000.1ac58cbf-b88d-4758-842a-9bae875a9295", + "fullUrl" : "Specimen/1727133200930568000.b93de036-e291-4e43-86cd-87c54945e375", "resource" : { "resourceType" : "Specimen", - "id" : "1695669261832353000.1ac58cbf-b88d-4758-842a-9bae875a9295", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } - ] - }, + "id" : "1727133200930568000.b93de036-e291-4e43-86cd-87c54945e375", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "OBR" + } + ], + "collection" : { + "collectedDateTime" : "2023-05-06T05:00:00Z", + "_collectedDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000+0000" + } + ] + } + } + } + }, + { + "fullUrl" : "Specimen/1727133200932421000.edb6d55e-9178-417f-8e7a-597f7e1e0901", + "resource" : { + "resourceType" : "Specimen", + "id" : "1727133200932421000.edb6d55e-9178-417f-8e7a-597f7e1e0901", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/specimen-name-or-code", - "valueString" : "440500007" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "SPM" } ], "type" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } + ], "system" : "http://snomed.info/sct", "code" : "440500007", "display" : "Blood spot specimen" } ] }, - "subject" : { - "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655" - }, "collection" : { - "collectedDateTime" : "2023-05-06T05:00:00Z" + "collectedDateTime" : "2023-05-06T05:00:00Z", + "_collectedDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000+0000" + } + ] + } } } }, { - "fullUrl" : "Provenance/1695669261841269000.fc89473e-7bea-4d6d-b251-f56adfad0d81", + "fullUrl" : "ServiceRequest/1727133200936686000.bc160026-49d9-449d-ae77-afa1ebbd9be6", "resource" : { - "resourceType" : "Provenance", - "id" : "1695669261841269000.fc89473e-7bea-4d6d-b251-f56adfad0d81", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" + "resourceType" : "ServiceRequest", + "id" : "1727133200936686000.bc160026-49d9-449d-ae77-afa1ebbd9be6", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode" : "NW" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString" : "20230506052913-0500" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension" : [ + { + "url" : "ORC.5", + "valueString" : "unknown" + }, + { + "url" : "orc-21-ordering-facility-name", + "valueReference" : { + "reference" : "Organization/1727133200935545000.77ac7a1a-0fe6-43ad-b4a2-1febff073af6" + } + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ + { + "url" : "OBR.2", + "valueIdentifier" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "EPIC" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + } + ], + "value" : "421832901" + } + }, + { + "url" : "OBR.11", + "valueString" : "P" + } + ] + } + ], + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.2" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "EPIC" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } + ] }, + "value" : "421832901" + } + ], + "status" : "unknown", + "intent" : "order", + "code" : { + "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0207", - "code" : "P" + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "54089-8", + "display" : "Newborn screening panel American Health Information Community (AHIC)" } ] }, - "recorded" : "2023-05-06T05:29:16-05:00", - "_recorded" : { + "subject" : { + "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e" + }, + "authoredOn" : "2023-05-06T05:29:13-05:00", + "_authoredOn" : { "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506052916-0500" + "valueString" : "20230506052913-0500" } ] }, - "activity" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "ORM", - "display" : "ORM_ORM" - } - ] + "requester" : { + "reference" : "PractitionerRole/1727133200933005000.a8a10515-3bbf-42e6-b39f-9c1bcce88d73" }, - "agent" : [ + "supportingInfo" : [ { - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "author" - } - ] - }, - "who" : { - "reference" : "Organization/1695669261836791000.91b18428-3050-4162-9340-e69819fdd013" - } + "reference" : "Observation/1727133200793272000.a7cc16be-b4a3-4f2e-82c9-e1d95a7149f5" }, { - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "author" - } - ] - }, - "who" : { - "reference" : "Practitioner/1695669261839977000.c8459a68-e347-4263-8fa3-4c1142a85dd2" - } + "reference" : "Observation/1727133200795547000.8a17d6b0-ba46-4417-a7cd-dd15e7095eb7" + }, + { + "reference" : "Observation/1727133200797365000.9b7d00cb-f2b8-4749-92c8-225cab5f259b" + }, + { + "reference" : "Observation/1727133200799038000.534eab68-0842-4dfe-9d9c-c3cdd6828316" + }, + { + "reference" : "Observation/1727133200800657000.5b01a1c4-e769-477d-88dd-8fac17a37ab4" + }, + { + "reference" : "Observation/1727133200802546000.6215f7d5-6c47-4337-8b6a-503ac0bdb67f" + }, + { + "reference" : "Observation/1727133200804303000.a749bc39-0714-4f69-87db-a634642d22d3" + }, + { + "reference" : "Observation/1727133200805779000.834301e0-25fa-45d7-8ddc-3ad1b7561630" + }, + { + "reference" : "Observation/1727133200808186000.7fcebe37-0de0-45aa-9872-ec3723585bf2" + }, + { + "reference" : "Observation/1727133200809672000.42257385-71c9-4c34-b285-2f01d06e8f82" + }, + { + "reference" : "Observation/1727133200811020000.2c39eec2-a445-4f80-8ef2-f3b8283dc0f9" + }, + { + "reference" : "Observation/1727133200812409000.b17af112-d0f9-409b-ab63-6d3d3dbd4ff9" } ], - "entity" : [ + "specimen" : [ { - "role" : "source", - "what" : { - "reference" : "Device/1695669261842644000.c2c89cf8-1f3b-49b3-af27-274fb99c332d" - } + "reference" : "Specimen/1727133200932421000.edb6d55e-9178-417f-8e7a-597f7e1e0901" + }, + { + "reference" : "Specimen/1727133200930568000.b93de036-e291-4e43-86cd-87c54945e375" } ] } }, { - "fullUrl" : "Organization/1695669261836791000.91b18428-3050-4162-9340-e69819fdd013", + "fullUrl" : "Organization/1727133200933847000.64f9079f-21e1-408e-86d3-0d21fc9f69f4", "resource" : { "resourceType" : "Organization", - "id" : "1695669261836791000.91b18428-3050-4162-9340-e69819fdd013", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - }, - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0207", - "code" : "P" - } - ] - }, - "name" : "Centracare", - "contact" : [ + "id" : "1727133200933847000.64f9079f-21e1-408e-86d3-0d21fc9f69f4", + "extension" : [ { - "purpose" : { - "coding" : [ + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/contactentity-type", - "code" : "ADMIN", - "display" : "Administrative" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } } ], - "text" : "Organization Medical Director" - } - } - ] - } - }, - { - "fullUrl" : "Practitioner/1695669261839977000.c8459a68-e347-4263-8fa3-4c1142a85dd2", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1695669261839977000.c8459a68-e347-4263-8fa3-4c1142a85dd2", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - }, - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0207", - "code" : "P" + "code" : "L" } - ] - }, - "extension" : [ + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-type", - "valueCodeableConcept" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" - } - ] - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ + { + "url" : "XON.10", + "valueString" : "1043269798" + } + ] } ], "identifier" : [ { "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CMS" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] } ], "type" : { "coding" : [ { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name", + "valueString" : "identifier" + } + ], "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI", - "display" : "National provider identifier" + "code" : "NPI" } ] }, - "system" : "http://hl7.org/fhir/sid/us-npi", - "value" : "1265136360" + "value" : "1043269798" } ], - "name" : [ - { - "use" : "official", - "text" : "JANE JONES", - "family" : "JONES", - "given" : [ - "JANE" - ] - } - ] + "name" : "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "Device/1695669261842644000.c2c89cf8-1f3b-49b3-af27-274fb99c332d", + "fullUrl" : "PractitionerRole/1727133200933005000.a8a10515-3bbf-42e6-b39f-9c1bcce88d73", "resource" : { - "resourceType" : "Device", - "id" : "1695669261842644000.c2c89cf8-1f3b-49b3-af27-274fb99c332d", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P", - "display" : "Epic" - }, - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0207", - "code" : "P", - "display" : "Epic" - } - ] - }, - "identifier" : [ - { - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/NamingSystem/uri", - "code" : "Epic", - "display" : "Epic" - } - ] - } - } - ], - "deviceName" : [ - { - "name" : "Epic", - "type" : "user-friendly-name" - } - ] + "resourceType" : "PractitionerRole", + "id" : "1727133200933005000.a8a10515-3bbf-42e6-b39f-9c1bcce88d73", + "organization" : { + "reference" : "Organization/1727133200933847000.64f9079f-21e1-408e-86d3-0d21fc9f69f4" + } } }, { - "fullUrl" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655", + "fullUrl" : "Organization/1727133200935545000.77ac7a1a-0fe6-43ad-b4a2-1febff073af6", "resource" : { - "resourceType" : "Patient", - "id" : "1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655", - "meta" : { - "extension" : [ - { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version", - "valueString" : "2.5.1" - } - ], - "tag" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - }, - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0207", - "code" : "P" - } - ] - }, + "resourceType" : "Organization", + "id" : "1727133200935545000.77ac7a1a-0fe6-43ad-b4a2-1febff073af6", "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", - "valueHumanName" : { - "text" : "SADIE S SMITH", - "family" : "SMITH", - "given" : [ - "SADIE", - "S" - ] - } - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MR", - "display" : "Medical record number" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } } - ] - }, - "system" : "CRPMRN", - "value" : "11102779" - } - ], - "name" : [ + ], + "code" : "L" + } + }, { - "use" : "official", - "text" : "BB SARAH SMITH", - "family" : "SMITH", - "given" : [ - "BB SARAH" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ + { + "url" : "XON.10", + "valueString" : "1043269798" + } ] } ], - "telecom" : [ + "identifier" : [ { "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension" : [ { - "url" : "XTN.9", - "valueString" : "(763)555-5555" - }, - { - "url" : "XTN.12", - "valueString" : "(763)555-5555" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CMS" }, { - "url" : "XTN.3", - "valueString" : "PH" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" }, { - "url" : "XTN.2", - "valueString" : "PRN" - } - ] - } - ], - "system" : "phone", - "value" : "(763)555-5555", - "use" : "home" - } - ], - "gender" : "male", - "birthDate" : "2023-05-04", - "_birthDate" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230504131023-0500" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-birthTime", - "valueDateTime" : "2023-05-04T13:10:23-05:00" - } - ] - }, - "deceasedBoolean" : false, - "address" : [ - { - "use" : "home", - "line" : [ - "555 STATE HIGHWAY 13" - ], - "city" : "DEER CREEK", - "district" : "OTTER TAIL", - "state" : "IG", - "postalCode" : "56527-9657", - "country" : "USA" - } - ], - "multipleBirthBoolean" : false, - "contact" : [ - { - "relationship" : [ - { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0131", - "code" : "N", - "display" : "Next-of-Kin" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] } ], - "name" : { - "extension" : [ + "type" : { + "coding" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", "extension" : [ { - "url" : "XPN.2", - "valueString" : "Leia" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name", + "valueString" : "identifier" } - ] + ], + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" } - ], - "family" : "Organa", - "given" : [ - "Leia" ] }, - "telecom" : [ - { - "system" : "phone", - "value" : "+31201234567" - } - ] + "value" : "1043269798" } - ] + ], + "name" : "ST. CLOUD HOSPITAL" } } ] -} +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir index 89311771508..f2b15d87ce9 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir @@ -1,21 +1,21 @@ { "resourceType" : "Bundle", - "id" : "1711057489333547000.de4ee6f2-3ae9-4041-9eae-66a49d883798", + "id" : "1726681492187301000.a875f234-ab35-4fae-afd9-5ae70b139c6f", "meta" : { - "lastUpdated" : "2024-03-21T17:44:49.340-04:00" + "lastUpdated" : "2024-09-18T10:44:52.191-07:00" }, "identifier" : { "system" : "https://reportstream.cdc.gov/prime-router", "value" : "31808297" }, "type" : "message", - "timestamp" : "2023-05-06T06:29:16.000-04:00", + "timestamp" : "2023-05-06T03:29:16.000-07:00", "entry" : [ { - "fullUrl" : "MessageHeader/87c2d0db-6f31-3666-b9e2-7152e039c11f", + "fullUrl" : "MessageHeader/1726681492235526000.3872119a-ff86-4f47-afb6-951b5f38482e", "resource" : { "resourceType" : "MessageHeader", - "id" : "87c2d0db-6f31-3666-b9e2-7152e039c11f", + "id" : "1726681492235526000.3872119a-ff86-4f47-afb6-951b5f38482e", "meta" : { "tag" : [ { @@ -129,12 +129,12 @@ ], "name" : "NATUS", "receiver" : { - "reference" : "Organization/1711057489418382000.2634a831-fc30-4e3c-9ad1-38956816c7cb" + "reference" : "Organization/1726681492234640000.978cc409-b284-4272-94ad-90e384d3bc22" } } ], "sender" : { - "reference" : "Organization/1711057489388301000.230b2a54-9a57-42fe-8b05-76279ff73a84" + "reference" : "Organization/1726681492217092000.99e99c90-e066-41d0-a470-36b00030d11d" }, "source" : { "extension" : [ @@ -160,10 +160,10 @@ } }, { - "fullUrl" : "Organization/1711057489388301000.230b2a54-9a57-42fe-8b05-76279ff73a84", + "fullUrl" : "Organization/1726681492217092000.99e99c90-e066-41d0-a470-36b00030d11d", "resource" : { "resourceType" : "Organization", - "id" : "1711057489388301000.230b2a54-9a57-42fe-8b05-76279ff73a84", + "id" : "1726681492217092000.99e99c90-e066-41d0-a470-36b00030d11d", "identifier" : [ { "extension" : [ @@ -195,10 +195,10 @@ } }, { - "fullUrl" : "Organization/1711057489418382000.2634a831-fc30-4e3c-9ad1-38956816c7cb", + "fullUrl" : "Organization/1726681492234640000.978cc409-b284-4272-94ad-90e384d3bc22", "resource" : { "resourceType" : "Organization", - "id" : "1711057489418382000.2634a831-fc30-4e3c-9ad1-38956816c7cb", + "id" : "1726681492234640000.978cc409-b284-4272-94ad-90e384d3bc22", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -237,16 +237,150 @@ } }, { - "fullUrl" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8", + "fullUrl" : "Provenance/1726681492462211000.f88f909e-b256-4878-bb85-e8f12b57006d", + "resource" : { + "resourceType" : "Provenance", + "id" : "1726681492462211000.f88f909e-b256-4878-bb85-e8f12b57006d", + "recorded" : "2023-05-06T05:29:16-05:00", + "activity" : { + "coding" : [ + { + "display" : "OML^O21^OML_O21" + } + ] + }, + "agent" : [ + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "author" + } + ] + }, + "who" : { + "reference" : "Organization/1726681492461714000.b6b09a47-7620-4bb8-9769-8bfc72ce8418" + } + } + ] + } + }, + { + "fullUrl" : "Organization/1726681492461714000.b6b09a47-7620-4bb8-9769-8bfc72ce8418", + "resource" : { + "resourceType" : "Organization", + "id" : "1726681492461714000.b6b09a47-7620-4bb8-9769-8bfc72ce8418", + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } + ], + "value" : "Centracare" + }, + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "DNS" + } + ] + }, + "value" : "centracare.com" + } + ] + } + }, + { + "fullUrl" : "Provenance/1726681492472018000.8fe8eb07-0f82-42fd-b2c9-a1129152e100", + "resource" : { + "resourceType" : "Provenance", + "id" : "1726681492472018000.8fe8eb07-0f82-42fd-b2c9-a1129152e100", + "recorded" : "2024-09-18T10:44:52Z", + "policy" : [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity" : { + "coding" : [ + { + "code" : "v2-FHIR transformation" + } + ] + }, + "agent" : [ + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } + ] + }, + "who" : { + "reference" : "Organization/1726681492471750000.f3f9a9c5-71c6-4458-901c-4ebe9bdddd0a" + } + } + ] + } + }, + { + "fullUrl" : "Organization/1726681492471750000.f3f9a9c5-71c6-4458-901c-4ebe9bdddd0a", + "resource" : { + "resourceType" : "Organization", + "id" : "1726681492471750000.f3f9a9c5-71c6-4458-901c-4ebe9bdddd0a", + "identifier" : [ + { + "value" : "CDC PRIME - Atlanta" + }, + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c", "resource" : { "resourceType" : "Patient", - "id" : "1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8", + "id" : "1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", "extension" : [ { - "url" : "PID.8" + "url" : "PID.8", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "M" + } + ] + } }, { "url" : "PID.24", @@ -305,7 +439,7 @@ }, "value" : "11102779", "assigner" : { - "reference" : "Organization/1711057490004869000.f9fc321d-8e76-4dbd-8119-38e7070309ed" + "reference" : "Organization/1726681492476947000.cf295bf5-9766-4218-b9b0-5a70765c125e" } } ], @@ -415,10 +549,149 @@ } ], "multipleBirthInteger" : 2, + "contact" : [ + { + "extension" : [ + { + "url" : "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70063" + } + ], + "code" : "MTH", + "display" : "Mother" + } + ], + "text" : "Mother" + } + } + ], + "relationship" : [ + { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70063" + } + ], + "code" : "MTH", + "display" : "Mother" + } + ], + "text" : "Mother" + } + ], + "name" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ + { + "url" : "XPN.2", + "valueString" : "SADIE" + }, + { + "url" : "XPN.3", + "valueString" : "S" + }, + { + "url" : "XPN.7", + "valueString" : "L" + } + ] + } + ], + "use" : "official", + "family" : "SMITH", + "given" : [ + "SADIE", + "S" + ] + }, + "telecom" : [ + { + "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "763" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5555555" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ + { + "url" : "XTN.3", + "valueString" : "PH" + }, + { + "url" : "XTN.7", + "valueString" : "5555555" + }, + { + "url" : "XTN.9", + "valueString" : "(763)555-5555" + } + ] + } + ], + "system" : "phone" + } + ], + "address" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ + { + "url" : "SAD.1", + "valueString" : "555 STATE HIGHWAY 13" + } + ] + }, + { + "url" : "XAD.7", + "valueCode" : "H" + } + ] + } + ], + "use" : "home", + "line" : [ + "555 STATE HIGHWAY 13" + ], + "city" : "DEER CREEK", + "district" : "OTTER TAIL", + "state" : "MN", + "postalCode" : "56527-9657", + "country" : "USA" + } + } + ], "link" : [ { "other" : { - "reference" : "RelatedPerson/1711057490022564000.99d677b9-359b-41c9-9669-5245fe62ff3d" + "reference" : "RelatedPerson/1726681492484536000.de59b5c4-28e4-4bdc-a9a5-8c8faa1ae0c2" }, "type" : "seealso" } @@ -426,10 +699,10 @@ } }, { - "fullUrl" : "Organization/1711057490004869000.f9fc321d-8e76-4dbd-8119-38e7070309ed", + "fullUrl" : "Organization/1726681492476947000.cf295bf5-9766-4218-b9b0-5a70765c125e", "resource" : { "resourceType" : "Organization", - "id" : "1711057490004869000.f9fc321d-8e76-4dbd-8119-38e7070309ed", + "id" : "1726681492476947000.cf295bf5-9766-4218-b9b0-5a70765c125e", "identifier" : [ { "extension" : [ @@ -444,10 +717,10 @@ } }, { - "fullUrl" : "RelatedPerson/1711057490022564000.99d677b9-359b-41c9-9669-5245fe62ff3d", + "fullUrl" : "RelatedPerson/1726681492484536000.de59b5c4-28e4-4bdc-a9a5-8c8faa1ae0c2", "resource" : { "resourceType" : "RelatedPerson", - "id" : "1711057490022564000.99d677b9-359b-41c9-9669-5245fe62ff3d", + "id" : "1726681492484536000.de59b5c4-28e4-4bdc-a9a5-8c8faa1ae0c2", "identifier" : [ { "extension" : [ @@ -466,524 +739,791 @@ } }, { - "fullUrl" : "ServiceRequest/1711057490064383000.440f5be7-f1ae-48ec-bc18-b5c51f278dc9", + "fullUrl" : "Provenance/1726681492497877000.6eaec073-c8e7-40f3-87ae-930e78673ac5", "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1711057490064383000.440f5be7-f1ae-48ec-bc18-b5c51f278dc9", - "extension" : [ + "resourceType" : "Provenance", + "id" : "1726681492497877000.6eaec073-c8e7-40f3-87ae-930e78673ac5", + "target" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "NW" - }, + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + } + ], + "recorded" : "2024-09-18T10:44:52Z", + "activity" : { + "coding" : [ + { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } + ] + } + } + }, + { + "fullUrl" : "RelatedPerson/1726681492500140000.15180afe-202e-448f-b448-f8cd41fe8e99", + "resource" : { + "resourceType" : "RelatedPerson", + "id" : "1726681492500140000.15180afe-202e-448f-b448-f8cd41fe8e99", + "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "20230506052913-0500" - }, + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "NK1" + } + ], + "patient" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "relationship" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", "extension" : [ { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1711057490059315000.6242a24f-c085-4313-83ec-c057fc602200" - } - }, - { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1711057490061423000.f70f1019-e293-475c-be0c-b8bbc264beed" - } - }, - { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1711057490062970000.0e6e9314-bc38-4a3a-9563-5ceb148c07dc" - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.3" } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ + ], + "coding" : [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - } - ], - "value" : "421832901" - } + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70063" + } + ], + "code" : "MTH", + "display" : "Mother" } - ] + ], + "text" : "Mother" } ], - "identifier" : [ + "name" : [ { "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "valueString" : "NK1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" + "url" : "XPN.2", + "valueString" : "SADIE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + "url" : "XPN.3", + "valueString" : "S" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url" : "XPN.7", + "valueString" : "L" } ] } ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } - ] - }, - "value" : "421832901" + "use" : "official", + "family" : "SMITH", + "given" : [ + "SADIE", + "S" + ] } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "authoredOn" : "2023-05-06T05:29:13-05:00", - "_authoredOn" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506052913-0500" - } - ] - }, - "requester" : { - "reference" : "PractitionerRole/1711057490050288000.49fc10fd-e410-4862-bac9-9dbda84a2798" - } - } - }, - { - "fullUrl" : "Organization/1711057490050705000.817ab24f-30a2-47b0-8b06-289cbe842702", - "resource" : { - "resourceType" : "Organization", - "id" : "1711057490050705000.817ab24f-30a2-47b0-8b06-289cbe842702", - "identifier" : [ + "telecom" : [ { "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "763" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5555555" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ + { + "url" : "XTN.3", + "valueString" : "PH" + }, + { + "url" : "XTN.7", + "valueString" : "5555555" + }, + { + "url" : "XTN.9", + "valueString" : "(763)555-5555" + } + ] + }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "valueString" : "NK1.5" } ], - "value" : "NPI" + "system" : "phone" + } + ], + "address" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.4" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ + { + "url" : "SAD.1", + "valueString" : "555 STATE HIGHWAY 13" + } + ] + }, + { + "url" : "XAD.7", + "valueCode" : "H" + } + ] + } + ], + "use" : "home", + "line" : [ + "555 STATE HIGHWAY 13" + ], + "city" : "DEER CREEK", + "district" : "OTTER TAIL", + "state" : "MN", + "postalCode" : "56527-9657", + "country" : "USA" } ] } }, { - "fullUrl" : "Practitioner/1711057490052021000.d196ef95-5b27-468c-ab41-3444bf76029a", + "fullUrl" : "Observation/1726681492502864000.c02d636a-6733-4db1-9a05-98f2dbff71fd", "resource" : { - "resourceType" : "Practitioner", - "id" : "1711057490052021000.d196ef95-5b27-468c-ab41-3444bf76029a", + "resourceType" : "Observation", + "id" : "1726681492502864000.c02d636a-6733-4db1-9a05-98f2dbff71fd", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" + "url" : "OBX.2", + "valueId" : "NM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + "url" : "OBX.6", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "UCUM" + } + ], + "system" : "http://unitsofmeasure.org", + "code" : "g", + "display" : "gram" + } + ] + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "JANE" + "url" : "OBX.29", + "valueId" : "QST" }, { - "url" : "XCN.10", - "valueString" : "L" + "url" : "OBX.11", + "valueString" : "O" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" } ], - "identifier" : [ - { - "type" : { - "coding" : [ + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" } - ] - }, - "value" : "1265136360", - "assigner" : { - "reference" : "Organization/1711057490050705000.817ab24f-30a2-47b0-8b06-289cbe842702" + ], + "system" : "http://loinc.org", + "code" : "8339-4", + "display" : "BIRTH WEIGHT MEASURED" } - } - ], - "name" : [ - { - "use" : "official", - "family" : "JONES", - "given" : [ - "JANE" - ] - } - ] + ] + }, + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueQuantity" : { + "value" : 1769.859285, + "unit" : "gram", + "system" : "UCUM", + "code" : "g" + } } }, { - "fullUrl" : "Organization/1711057490055996000.c11fedb1-26f0-4585-80fc-0342b257ec44", + "fullUrl" : "Observation/1726681492505294000.25e21bd9-8244-4398-8722-bfaac9a6e875", "resource" : { - "resourceType" : "Organization", - "id" : "1711057490055996000.c11fedb1-26f0-4585-80fc-0342b257ec44", + "resourceType" : "Observation", + "id" : "1726681492505294000.25e21bd9-8244-4398-8722-bfaac9a6e875", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ] - } - } - ] - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "XON.10", - "valueString" : "1043269798" + "url" : "OBX.2", + "valueId" : "NM" + }, + { + "url" : "OBX.6", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "UCUM" + } + ], + "system" : "http://unitsofmeasure.org", + "code" : "wk", + "display" : "week" + } + ] + } + }, + { + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CMS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - } - ], - "type" : { - "coding" : [ + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" } - ] - }, - "value" : "1043269798" - } - ], - "name" : "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl" : "PractitionerRole/1711057490050288000.49fc10fd-e410-4862-bac9-9dbda84a2798", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1711057490050288000.49fc10fd-e410-4862-bac9-9dbda84a2798", - "practitioner" : { - "reference" : "Practitioner/1711057490052021000.d196ef95-5b27-468c-ab41-3444bf76029a" + ], + "system" : "http://loinc.org", + "code" : "57714-8", + "display" : "OBSTETRIC ESTIMATION OF GESTATIONAL AGE" + } + ] }, - "organization" : { - "reference" : "Organization/1711057490055996000.c11fedb1-26f0-4585-80fc-0342b257ec44" + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueQuantity" : { + "value" : 32, + "unit" : "week", + "system" : "UCUM", + "code" : "wk" } } }, { - "fullUrl" : "Organization/1711057490059315000.6242a24f-c085-4313-83ec-c057fc602200", + "fullUrl" : "Observation/1726681492507390000.09f9b155-2775-4212-8670-f5b558ad6389", "resource" : { - "resourceType" : "Organization", - "id" : "1711057490059315000.6242a24f-c085-4313-83ec-c057fc602200", + "resourceType" : "Observation", + "id" : "1726681492507390000.09f9b155-2775-4212-8670-f5b558ad6389", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ] - } - } - ] - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "XON.10", - "valueString" : "1043269798" + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CMS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - } - ], - "type" : { - "coding" : [ + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" } - ] - }, - "value" : "1043269798" - } - ], - "name" : "ST. CLOUD HOSPITAL" + ], + "system" : "http://loinc.org", + "code" : "57713-0", + "display" : "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION" + } + ] + }, + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "LA12419-0", + "display" : "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + } + ] + } } }, { - "fullUrl" : "Organization/1711057490061423000.f70f1019-e293-475c-be0c-b8bbc264beed", + "fullUrl" : "Observation/1726681492509157000.c220f0f1-f17e-4dcc-b483-8384fb764c30", "resource" : { - "resourceType" : "Organization", - "id" : "1711057490061423000.f70f1019-e293-475c-be0c-b8bbc264beed", + "resourceType" : "Observation", + "id" : "1726681492509157000.c220f0f1-f17e-4dcc-b483-8384fb764c30", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ] - } - } - ] - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "XON.10", - "valueString" : "739" + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MN Public Health Lab" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - } - ], - "type" : { - "coding" : [ + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" } - ] - }, - "value" : "739" - } - ], - "name" : "ST. CLOUD HOSPITAL" + ], + "code" : "MNDSIB", + "display" : "DOES THE BABY HAVE A DECEASED SIBLING?" + } + ] + }, + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "N", + "display" : "No" + } + ] + } } }, { - "fullUrl" : "Organization/1711057490061890000.764a4034-fdb6-4b0b-a0c5-579f84644c1c", + "fullUrl" : "Observation/1726681492510785000.a0cc0b9a-52e3-4410-b1fd-d22aba3b06c0", "resource" : { - "resourceType" : "Organization", - "id" : "1711057490061890000.764a4034-fdb6-4b0b-a0c5-579f84644c1c", - "identifier" : [ + "resourceType" : "Observation", + "id" : "1726681492510785000.a0cc0b9a-52e3-4410-b1fd-d22aba3b06c0", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } - ], - "value" : "NPI" + ] } - ] + ], + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "MNDEFECT", + "display" : "DOES THE BABY HAVE BIRTH DEFECTS?" + } + ] + }, + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "N", + "display" : "No" + } + ] + } } }, { - "fullUrl" : "Practitioner/1711057490062970000.0e6e9314-bc38-4a3a-9563-5ceb148c07dc", + "fullUrl" : "Observation/1726681492513068000.65109631-48cc-4490-b644-95e448d4e852", "resource" : { - "resourceType" : "Practitioner", - "id" : "1711057490062970000.0e6e9314-bc38-4a3a-9563-5ceb148c07dc", + "resourceType" : "Observation", + "id" : "1726681492513068000.65109631-48cc-4490-b644-95e448d4e852", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" + "url" : "OBX.2", + "valueId" : "CWE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + "url" : "OBX.29", + "valueId" : "QST" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + "url" : "OBX.11", + "valueString" : "O" } ] + } + ], + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "MNFAM", + "display" : "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL" + } + ] + }, + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "N", + "display" : "No" + } + ] + } + } + }, + { + "fullUrl" : "Observation/1726681492514904000.a0b6424a-acc9-4ec8-bac1-eb4d84146150", + "resource" : { + "resourceType" : "Observation", + "id" : "1726681492514904000.a0b6424a-acc9-4ec8-bac1-eb4d84146150", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "XCN.3", - "valueString" : "JANE" + "url" : "OBX.2", + "valueId" : "CWE" }, { - "url" : "XCN.10", - "valueString" : "L" + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], - "identifier" : [ - { - "type" : { - "coding" : [ + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" } - ] - }, - "value" : "1265136360", - "assigner" : { - "reference" : "Organization/1711057490061890000.764a4034-fdb6-4b0b-a0c5-579f84644c1c" + ], + "system" : "http://loinc.org", + "code" : "67704-7", + "display" : "FEEDING TYPES" + } + ] + }, + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "LA12418-2", + "display" : "TPN" } - } - ], - "name" : [ - { - "use" : "official", - "family" : "JONES", - "given" : [ - "JANE" - ] - } - ] + ] + } } }, { - "fullUrl" : "Observation/1711057490279999000.7d669a9b-5913-45e9-8bff-eb0c10f03a92", + "fullUrl" : "Observation/1726681492516655000.24e44cdd-01f6-495d-81c9-8ca178b20623", "resource" : { "resourceType" : "Observation", - "id" : "1711057490279999000.7d669a9b-5913-45e9-8bff-eb0c10f03a92", + "id" : "1726681492516655000.24e44cdd-01f6-495d-81c9-8ca178b20623", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "valueString" : "2" }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", @@ -994,25 +1534,41 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "NM" + "valueId" : "CWE" }, { - "url" : "OBX.6" + "url" : "OBX.29", + "valueId" : "QST" }, { "url" : "OBX.11", "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "67704-7", + "display" : "FEEDING TYPES" + } + ] + }, "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1023,19 +1579,32 @@ } ] }, - "valueQuantity" : { - "value" : 1769.859285, - "unit" : "gram", - "system" : "UCUM", - "code" : "g" + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "LA16914-6", + "display" : "BREAST MILK" + } + ] } } }, { - "fullUrl" : "Observation/1711057490283879000.6853f004-9e13-4497-8858-b1b0565b2d15", + "fullUrl" : "Observation/1726681492518122000.34be2e23-9fcb-4841-bb82-21ac92f5e88f", "resource" : { "resourceType" : "Observation", - "id" : "1711057490283879000.6853f004-9e13-4497-8858-b1b0565b2d15", + "id" : "1726681492518122000.34be2e23-9fcb-4841-bb82-21ac92f5e88f", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1050,25 +1619,41 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "NM" + "valueId" : "CWE" }, { - "url" : "OBX.6" + "url" : "OBX.29", + "valueId" : "QST" }, { "url" : "OBX.11", "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "57723-9", + "display" : "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE" + } + ] + }, "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1079,19 +1664,26 @@ } ] }, - "valueQuantity" : { - "value" : 32, - "unit" : "week", - "system" : "UCUM", - "code" : "wk" + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "0516199364" + } + ] } } }, { - "fullUrl" : "Observation/1711057490288537000.61e8c41b-74b6-454f-8f88-47d034a9314c", + "fullUrl" : "Observation/1726681492519165000.07f0cdb5-071d-4699-9fe1-feeb50d18ee1", "resource" : { "resourceType" : "Observation", - "id" : "1711057490288537000.61e8c41b-74b6-454f-8f88-47d034a9314c", + "id" : "1726681492519165000.07f0cdb5-071d-4699-9fe1-feeb50d18ee1", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1106,33 +1698,21 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "valueId" : "ST" }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { + "code" : { "coding" : [ { "extension" : [ @@ -1146,18 +1726,31 @@ } ], "system" : "http://loinc.org", - "code" : "LA12419-0", - "display" : "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + "code" : "62328-0", + "display" : "DISCHARGE PROVIDER PRACTICE PHONE NUMBER" } ] - } + }, + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueString" : "Daniel Davis/218-555-1000" } }, { - "fullUrl" : "Observation/1711057490290772000.0fa2cf5f-84b2-4327-b32f-ecca89de0476", + "fullUrl" : "Observation/1726681492521073000.e71f7a63-9494-4eb5-9f4c-17e3a584e380", "resource" : { "resourceType" : "Observation", - "id" : "1711057490290772000.0fa2cf5f-84b2-4327-b32f-ecca89de0476", + "id" : "1726681492521073000.e71f7a63-9494-4eb5-9f4c-17e3a584e380", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1172,22 +1765,41 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "valueId" : "ST" }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "62324-9", + "display" : "POST-DISCHARGE PROVIDER NAME" + } + ] + }, "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1198,7 +1810,43 @@ } ] }, - "valueCodeableConcept" : { + "valueString" : "DAVIS, DANIEL, MD" + } + }, + { + "fullUrl" : "Observation/1726681492522150000.dffa99af-cf3f-4635-9979-abd7a1b1f4d5", + "resource" : { + "resourceType" : "Observation", + "id" : "1726681492522150000.dffa99af-cf3f-4635-9979-abd7a1b1f4d5", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ + { + "url" : "OBX.2", + "valueId" : "ST" + }, + { + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" + } + ] + } + ], + "status" : "unknown", + "code" : { "coding" : [ { "extension" : [ @@ -1208,62 +1856,108 @@ }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "valueString" : "LN" } ], - "code" : "N", - "display" : "No" + "system" : "http://loinc.org", + "code" : "62326-4", + "display" : "POST-DISCHARGE PROVIDER PRACTICE NAME" } ] - } + }, + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueString" : "Lakeridge Health Revere" } }, { - "fullUrl" : "Observation/1711057490313175000.403b2603-7a71-4082-8a33-cc8f2490593f", + "fullUrl" : "Specimen/1727313792886618000.d45f77c7-ecb4-4a11-a10c-ae901a61957a", "resource" : { - "resourceType" : "Observation", - "id" : "1711057490313175000.403b2603-7a71-4082-8a33-cc8f2490593f", + "resourceType" : "Specimen", + "id" : "1727313792886618000.d45f77c7-ecb4-4a11-a10c-ae901a61957a", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "OBR" + } + ], + "collection" : { + "collectedDateTime" : "2023-05-06T05:00:00Z", + "_collectedDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000" + } + ] + } + }, + "note" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" - }, + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString" : "OBR.15.3" + } + ], + "text" : "440500007" + } + ] + } + }, + { + "fullUrl" : "Specimen/1727313792888577000.a67f4df4-1f53-4021-9d02-348da64f37b6", + "resource" : { + "resourceType" : "Specimen", + "id" : "1727313792888577000.a67f4df4-1f53-4021-9d02-348da64f37b6", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "SPM" + } + ], + "identifier" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "EPIC" }, { - "url" : "OBX.11", - "valueString" : "O" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString" : "SPM.2.1" } - ] + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PGN" + } + ] + }, + "value" : "421832901" } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { + "type" : { "coding" : [ { "extension" : [ @@ -1273,62 +1967,134 @@ }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "valueString" : "SCT" } ], - "code" : "N", - "display" : "No" + "system" : "http://snomed.info/sct", + "code" : "440500042", + "display" : "Blood spatter specimen" } ] + }, + "collection" : { + "collectedDateTime" : "2023-05-06T06:00:00-05:00", + "_collectedDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506060000-0500" + } + ] + } } } }, { - "fullUrl" : "Observation/1711057490315326000.77cd2a7d-1907-453c-8c6d-3212db6a5811", + "fullUrl" : "ServiceRequest/1726681492644006000.cba3ce33-4a32-4756-8991-cd4c93e667c9", "resource" : { - "resourceType" : "Observation", - "id" : "1711057490315326000.77cd2a7d-1907-453c-8c6d-3212db6a5811", + "resourceType" : "ServiceRequest", + "id" : "1726681492644006000.cba3ce33-4a32-4756-8991-cd4c93e667c9", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode" : "NW" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString" : "20230506052913-0500" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url" : "orc-21-ordering-facility-name", + "valueReference" : { + "reference" : "Organization/1726681492641945000.9f5a3115-e1c7-4b81-acd0-5ee33ab3af95" + } }, { - "url" : "OBX.11", - "valueString" : "O" + "url" : "orc-21-ordering-facility-name", + "valueReference" : { + "reference" : "Organization/1726681492642419000.74f305db-5a72-4d9f-b1b1-147bf46fe812" + } }, { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "orc-12-ordering-provider", + "valueReference" : { + "reference" : "Practitioner/1726681492643096000.0d4b4565-fa10-4992-b4a8-becf558b8dec" + } + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ + { + "url" : "OBR.2", + "valueIdentifier" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "EPIC" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + } + ], + "value" : "421832901" + } } ] } ], + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.2" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "EPIC" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } + ] + }, + "value" : "421832901" + } + ], "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { + "code" : { "coding" : [ { "extension" : [ @@ -1338,424 +2104,500 @@ }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "valueString" : "LN" } ], - "code" : "N", - "display" : "No" + "system" : "http://loinc.org", + "code" : "54089-8", + "display" : "Newborn screening panel American Health Information Community (AHIC)" } ] - } + }, + "subject" : { + "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + }, + "authoredOn" : "2023-05-06T05:29:13-05:00", + "_authoredOn" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506052913-0500" + } + ] + }, + "requester" : { + "reference" : "PractitionerRole/1726681492639136000.d4cb865c-1dbc-458a-aeee-4e353e11c314" + }, + "supportingInfo" : [ + { + "reference" : "Observation/1726681492502864000.c02d636a-6733-4db1-9a05-98f2dbff71fd" + }, + { + "reference" : "Observation/1726681492505294000.25e21bd9-8244-4398-8722-bfaac9a6e875" + }, + { + "reference" : "Observation/1726681492507390000.09f9b155-2775-4212-8670-f5b558ad6389" + }, + { + "reference" : "Observation/1726681492509157000.c220f0f1-f17e-4dcc-b483-8384fb764c30" + }, + { + "reference" : "Observation/1726681492510785000.a0cc0b9a-52e3-4410-b1fd-d22aba3b06c0" + }, + { + "reference" : "Observation/1726681492513068000.65109631-48cc-4490-b644-95e448d4e852" + }, + { + "reference" : "Observation/1726681492514904000.a0b6424a-acc9-4ec8-bac1-eb4d84146150" + }, + { + "reference" : "Observation/1726681492516655000.24e44cdd-01f6-495d-81c9-8ca178b20623" + }, + { + "reference" : "Observation/1726681492518122000.34be2e23-9fcb-4841-bb82-21ac92f5e88f" + }, + { + "reference" : "Observation/1726681492519165000.07f0cdb5-071d-4699-9fe1-feeb50d18ee1" + }, + { + "reference" : "Observation/1726681492521073000.e71f7a63-9494-4eb5-9f4c-17e3a584e380" + }, + { + "reference" : "Observation/1726681492522150000.dffa99af-cf3f-4635-9979-abd7a1b1f4d5" + } + ], + "specimen" : [ + { + "reference" : "Specimen/1727313792888577000.a67f4df4-1f53-4021-9d02-348da64f37b6" + }, + { + "reference" : "Specimen/1727313792886618000.d45f77c7-ecb4-4a11-a10c-ae901a61957a" + } + ] } }, { - "fullUrl" : "Observation/1711057490317098000.ac57ad8d-27d3-48d6-8686-6979ebb59693", + "fullUrl" : "Organization/1726681492639344000.e2d9306c-68d1-4791-960b-9178e657382d", "resource" : { - "resourceType" : "Observation", - "id" : "1711057490317098000.ac57ad8d-27d3-48d6-8686-6979ebb59693", - "extension" : [ + "resourceType" : "Organization", + "id" : "1726681492639344000.e2d9306c-68d1-4791-960b-9178e657382d", + "identifier" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } + ], + "value" : "NPI" + } + ] + } + }, + { + "fullUrl" : "Practitioner/1726681492639901000.8cf23e0c-cbbe-439a-8314-ef797620db05", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1726681492639901000.8cf23e0c-cbbe-439a-8314-ef797620db05", + "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "NPI" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "url" : "XCN.3", + "valueString" : "JANE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "XCN.10", + "valueString" : "L" } ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.12" } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, + "identifier" : [ + { + "type" : { + "coding" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } + ], + "code" : "NPI" } - ], - "system" : "http://loinc.org", - "code" : "LA12418-2", - "display" : "TPN" + ] + }, + "value" : "1265136360", + "assigner" : { + "reference" : "Organization/1726681492639344000.e2d9306c-68d1-4791-960b-9178e657382d" } - ] - } + } + ], + "name" : [ + { + "use" : "official", + "family" : "JONES", + "given" : [ + "JANE" + ] + } + ] } }, { - "fullUrl" : "Observation/1711057490322446000.d5906865-982f-4b37-8866-77f168927838", + "fullUrl" : "Organization/1726681492640505000.d15bca18-6c50-4720-8e35-b67d67d378c0", "resource" : { - "resourceType" : "Observation", - "id" : "1711057490322446000.d5906865-982f-4b37-8866-77f168927838", + "resourceType" : "Organization", + "id" : "1726681492640505000.d15bca18-6c50-4720-8e35-b67d67d378c0", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } + } + ], + "code" : "L" + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "XON.10", + "valueString" : "1043269798" } ] } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CMS" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + } + ], + "type" : { + "coding" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" } - ], - "system" : "http://loinc.org", - "code" : "LA16914-6", - "display" : "BREAST MILK" - } - ] + ] + }, + "value" : "1043269798" + } + ], + "name" : "ST. CLOUD HOSPITAL" + } + }, + { + "fullUrl" : "PractitionerRole/1726681492639136000.d4cb865c-1dbc-458a-aeee-4e353e11c314", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1726681492639136000.d4cb865c-1dbc-458a-aeee-4e353e11c314", + "practitioner" : { + "reference" : "Practitioner/1726681492639901000.8cf23e0c-cbbe-439a-8314-ef797620db05" + }, + "organization" : { + "reference" : "Organization/1726681492640505000.d15bca18-6c50-4720-8e35-b67d67d378c0" } } }, { - "fullUrl" : "Observation/1711057490325872000.8fe8e639-92a0-4881-a7f3-32a6e5983423", + "fullUrl" : "Organization/1726681492641945000.9f5a3115-e1c7-4b81-acd0-5ee33ab3af95", "resource" : { - "resourceType" : "Observation", - "id" : "1711057490325872000.8fe8e639-92a0-4881-a7f3-32a6e5983423", + "resourceType" : "Organization", + "id" : "1726681492641945000.9f5a3115-e1c7-4b81-acd0-5ee33ab3af95", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } + } + ], + "code" : "L" + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "XON.10", + "valueString" : "1043269798" } ] } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CMS" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" } - ], - "code" : "0516199364" - } - ] - } + ] + }, + "value" : "1043269798" + } + ], + "name" : "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "Observation/1711057490327553000.7dd7a1b1-9503-418d-aa81-e720f23f7f69", + "fullUrl" : "Organization/1726681492642419000.74f305db-5a72-4d9f-b1b1-147bf46fe812", "resource" : { - "resourceType" : "Observation", - "id" : "1711057490327553000.7dd7a1b1-9503-418d-aa81-e720f23f7f69", + "resourceType" : "Organization", + "id" : "1726681492642419000.74f305db-5a72-4d9f-b1b1-147bf46fe812", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } + } + ], + "code" : "L" + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "XON.10", + "valueString" : "739" } ] } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueString" : "Daniel Davis/218-555-1000" - } - }, - { - "fullUrl" : "Observation/1711057490329240000.9c6f7be8-191e-4e95-b58c-8961c72d4461", - "resource" : { - "resourceType" : "Observation", - "id" : "1711057490329240000.9c6f7be8-191e-4e95-b58c-8961c72d4461", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" - }, + "identifier" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "MN Public Health Lab" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] } - ] + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" + } + ] + }, + "value" : "739" } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueString" : "DAVIS, DANIEL, MD" + "name" : "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "Observation/1711057490330670000.3c6c2a55-309d-4d85-a800-dac6d7a8cdf5", + "fullUrl" : "Organization/1726681492642638000.8e9bb0fe-241b-4847-9373-a1f70572c83b", "resource" : { - "resourceType" : "Observation", - "id" : "1711057490330670000.3c6c2a55-309d-4d85-a800-dac6d7a8cdf5", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" - }, + "resourceType" : "Organization", + "id" : "1726681492642638000.8e9bb0fe-241b-4847-9373-a1f70572c83b", + "identifier" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" } - ] + ], + "value" : "NPI" } - ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1711057490036275000.5766f0bc-eeee-4f50-b9f3-40340efdbde8" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueString" : "Lakeridge Health Revere" + ] } }, { - "fullUrl" : "Specimen/1711057490338923000.6c62a067-5366-4186-80c3-978e119eb028", + "fullUrl" : "Practitioner/1726681492643096000.0d4b4565-fa10-4992-b4a8-becf558b8dec", "resource" : { - "resourceType" : "Specimen", - "id" : "1711057490338923000.6c62a067-5366-4186-80c3-978e119eb028", + "resourceType" : "Practitioner", + "id" : "1726681492643096000.0d4b4565-fa10-4992-b4a8-becf558b8dec", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" - } - ], - "identifier" : [ - { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" + "valueString" : "NPI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ + { + "url" : "XCN.3", + "valueString" : "JANE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" + "url" : "XCN.10", + "valueString" : "L" } - ], + ] + } + ], + "identifier" : [ + { "type" : { "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } + ], + "code" : "NPI" } ] }, - "value" : "421832901" + "value" : "1265136360", + "assigner" : { + "reference" : "Organization/1726681492642638000.8e9bb0fe-241b-4847-9373-a1f70572c83b" + } } ], - "type" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } - ], - "system" : "http://snomed.info/sct", - "code" : "440500007", - "display" : "Blood spot specimen" - } - ] - }, - "collection" : { - "collectedDateTime" : "2023-05-06T06:00:00-05:00", - "_collectedDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506060000-0500" - } + "name" : [ + { + "use" : "official", + "family" : "JONES", + "given" : [ + "JANE" ] } - } + ] } } ] diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.hl7 b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.hl7 index 9bfab324e91..9966c871892 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.hl7 +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.hl7 @@ -15,4 +15,4 @@ OBX|9|CWE|57723-9^UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE^LN|1|0516199364|||||| OBX|10|ST|62328-0^DISCHARGE PROVIDER PRACTICE PHONE NUMBER^LN|1|Daniel Davis/218-555-1000||||||O|||20230506050000-0500|||||||||||||||QST|AOE OBX|11|ST|62324-9^POST-DISCHARGE PROVIDER NAME^LN|1|DAVIS, DANIEL, MD||||||O|||20230506050000-0500|||||||||||||||QST|AOE OBX|12|ST|62326-4^POST-DISCHARGE PROVIDER PRACTICE NAME^LN|1|Lakeridge Health Revere||||||O|||20230506050000-0500|||||||||||||||QST|AOE -SPM|1|421832901&EPIC&1.2.840.114350.1.13.145.2.7.2.695071&ISO||440500007^Blood spot specimen^SCT|||||||||||||20230506060000-0500 \ No newline at end of file +SPM|1|421832901&EPIC&1.2.840.114350.1.13.145.2.7.2.695071&ISO||440500042^Blood spatter specimen^SCT|||||||||||||20230506060000-0500 \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir index df861fa9b0e..7ab709265ae 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir @@ -119,7 +119,16 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" - } ] + } ], + "collection" : { + "collectedDateTime" : "2023-02-27", + "_collectedDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230227" + } ] + } + } } }, { "fullUrl" : "ServiceRequest/1710882479463509000.8bf4d839-88e3-40b8-9d4e-6795636a4aff", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson-with-repeats.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson-with-repeats.fhir index a97246c317f..cc7c34776c0 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson-with-repeats.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson-with-repeats.fhir @@ -147,6 +147,29 @@ } } ], "relationship" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70063" + } ], + "code" : "OTH", + "display" : "Other" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "L" + } ], + "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code" : "OT", + "display" : "OTHER RELATIONSHIP" + } ] + }, { "coding" : [ { "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson.fhir index c64ca412bf4..d49f2105335 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson.fhir @@ -147,6 +147,29 @@ } } ], "relationship" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70063" + } ], + "code" : "OTH", + "display" : "Other" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "L" + } ], + "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code" : "OT", + "display" : "OTHER RELATIONSHIP" + } ] + }, { "coding" : [ { "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir new file mode 100644 index 00000000000..b7e5323de62 --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir @@ -0,0 +1,2735 @@ +{ + "resourceType" : "Bundle", + "id" : "1727135930591193000.aedbf3aa-865a-4f68-9d9e-00f73bdbac4a", + "meta" : { + "lastUpdated" : "2024-09-23T16:58:50.595-07:00" + }, + "identifier" : { + "system" : "https://reportstream.cdc.gov/prime-router", + "value" : "0123" + }, + "type" : "message", + "timestamp" : "2019-07-20T09:12:29.000-07:00", + "entry" : [ { + "fullUrl" : "MessageHeader/1727135930639052000.f02e1c18-0688-4280-b49b-df24eee02cdf", + "resource" : { + "resourceType" : "MessageHeader", + "id" : "1727135930639052000.f02e1c18-0688-4280-b49b-df24eee02cdf", + "meta" : { + "security" : [ { + "code" : "msh8placeholder" + } ], + "tag" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", + "code" : "P" + }, { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0207", + "code" : "A" + } ] + }, + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/character-set", + "valueString" : "UNICODE UTF-8" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension" : [ { + "url" : "MSH.7", + "valueString" : "20190720091229" + }, { + "url" : "MSH.13", + "valueString" : "42" + }, { + "url" : "MSH.14", + "valueString" : "msh14placeholder" + }, { + "url" : "MSH.15", + "valueString" : "AL" + }, { + "url" : "MSH.16", + "valueString" : "AL" + }, { + "url" : "MSH.20", + "valueString" : "UNICODE UTF-16" + }, { + "url" : "MSH.21", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "PHIN" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.113883.9.11" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "PHLabReport-NoAck" + } + } ] + } ], + "eventCoding" : { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", + "code" : "O21", + "display" : "OML^O21^OML_O21" + }, + "destination" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.181960.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "MSH.5" + } ], + "name" : "txdshslabNBS", + "endpoint" : "urn:oid:2.16.840.1.114222.4.1.181960.2", + "receiver" : { + "reference" : "Organization/1727135930638288000.038501ce-626b-4f0d-8a9a-7a46cdb420ce" + } + } ], + "sender" : { + "reference" : "Organization/1727135930620601000.05235529-b10d-4f85-bbe9-06217bcf4426" + }, + "source" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "OrderingFacilityApplicationName" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.XXX" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "MSH.3" + } ], + "software" : "STARLIMS", + "version" : "ELIMS V11", + "endpoint" : "urn:oid:2.16.840.1.114222.XXX" + } + } + }, { + "fullUrl" : "Organization/1727135930620601000.05235529-b10d-4f85-bbe9-06217bcf4426", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930620601000.05235529-b10d-4f85-bbe9-06217bcf4426", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "OrderingFacilityName" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.XXX" + } ], + "address" : [ { + "country" : "FR" + } ] + } + }, { + "fullUrl" : "Organization/1727135930638288000.038501ce-626b-4f0d-8a9a-7a46cdb420ce", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930638288000.038501ce-626b-4f0d-8a9a-7a46cdb420ce", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "MSH.6" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "txdshslab" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.181960" + } ] + } + }, { + "fullUrl" : "Provenance/1727135930871635000.471524a6-276e-48aa-aa33-efe75f8a5f6d", + "resource" : { + "resourceType" : "Provenance", + "id" : "1727135930871635000.471524a6-276e-48aa-aa33-efe75f8a5f6d", + "recorded" : "2019-07-20T09:12:29Z", + "activity" : { + "coding" : [ { + "display" : "OML^O21^OML_O21" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "author" + } ] + }, + "who" : { + "reference" : "Organization/1727135930871009000.25aba881-d8f0-4f2b-8d12-9f1030b2534b" + } + } ], + "entity" : [ { + "role" : "source", + "what" : { + "reference" : "Device/1727135930875182000.363e2287-9747-47e9-85c9-0878a8db1129" + } + } ] + } + }, { + "fullUrl" : "Organization/1727135930871009000.25aba881-d8f0-4f2b-8d12-9f1030b2534b", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930871009000.25aba881-d8f0-4f2b-8d12-9f1030b2534b", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "OrderingFacilityName" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.XXX" + } ] + } + }, { + "fullUrl" : "Location/1727135930874477000.36e5b40e-9225-40c5-bc29-9bce5a381526", + "resource" : { + "resourceType" : "Location", + "id" : "1727135930874477000.36e5b40e-9225-40c5-bc29-9bce5a381526", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "2.16.8121.1.113883.9.11" + } ], + "name" : "Hospital C", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1727135930875033000.81c92245-69f4-473c-9271-b7d7ce39d086", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930875033000.81c92245-69f4-473c-9271-b7d7ce39d086", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "A" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.3", + "valueString" : "789" + }, { + "url" : "XON.10", + "valueString" : "CDC CLIA" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "Check Digit3" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CDC OML SFT" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.1.9.1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "C3" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1727135930874477000.36e5b40e-9225-40c5-bc29-9bce5a381526" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "MD" + } ] + }, + "value" : "CDC CLIA" + } ], + "name" : "CDC" + } + }, { + "fullUrl" : "Device/1727135930875182000.363e2287-9747-47e9-85c9-0878a8db1129", + "resource" : { + "resourceType" : "Device", + "id" : "1727135930875182000.363e2287-9747-47e9-85c9-0878a8db1129", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", + "valueReference" : { + "reference" : "Organization/1727135930875033000.81c92245-69f4-473c-9271-b7d7ce39d086" + } + } ], + "manufacturer" : "CDC", + "deviceName" : [ { + "name" : "STARLIMS", + "type" : "manufacturer-name" + } ], + "modelNumber" : "Binary ID unknown", + "version" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date", + "valueDateTime" : "2023-08-02T18:08:02-04:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230802180802-0400" + } ] + } + } ], + "value" : "ELIMS V11" + } ], + "note" : [ { + "text" : "testsft5data" + } ] + } + }, { + "fullUrl" : "Provenance/1727135930883545000.b5bd1843-fccb-43b8-b879-694fa02475f5", + "resource" : { + "resourceType" : "Provenance", + "id" : "1727135930883545000.b5bd1843-fccb-43b8-b879-694fa02475f5", + "recorded" : "2024-09-23T16:58:50Z", + "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], + "activity" : { + "coding" : [ { + "code" : "v2-FHIR transformation" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } ] + }, + "who" : { + "reference" : "Organization/1727135930883315000.6b7ca347-919a-470a-90b8-05f237f14e92" + } + } ] + } + }, { + "fullUrl" : "Organization/1727135930883315000.6b7ca347-919a-470a-90b8-05f237f14e92", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930883315000.6b7ca347-919a-470a-90b8-05f237f14e92", + "identifier" : [ { + "value" : "CDC PRIME - Atlanta" + }, { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } ] + } + }, { + "fullUrl" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1", + "resource" : { + "resourceType" : "Patient", + "id" : "1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1", + "meta" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", + "valueReference" : { + "reference" : "Organization/1727135930899193000.70e8c785-84fe-49a5-b282-dad0a7e9a77b" + } + } ], + "lastUpdated" : "2024-08-21T11:38:00Z", + "_lastUpdated" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202408211138" + } ] + } + }, + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", + "extension" : [ { + "url" : "PID.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "F" + } ] + } + }, { + "url" : "PID.24", + "valueString" : "Y" + }, { + "url" : "PID.30", + "valueString" : "Y" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", + "valueHumanName" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ { + "url" : "XPN.2", + "valueString" : "FHIR" + }, { + "url" : "XPN.3", + "valueString" : "WI" + }, { + "url" : "XPN.7", + "valueString" : "L" + } ] + } ], + "use" : "official", + "family" : "Mind", + "given" : [ "FHIR", "WI" ] + } + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference" : { + "reference" : "Organization/1727135930888864000.e1e5bb89-81ad-4c17-9e52-232d5522088d" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension" : [ { + "url" : "CX.5", + "valueString" : "PI" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.3" + } ], + "type" : { + "coding" : [ { + "code" : "PI" + } ] + }, + "system" : "STARLIMS.CDC.Stag", + "_system" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "STARLIMS.CDC.Stag" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + } ] + }, + "value" : "test" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension" : [ { + "url" : "CX.5", + "valueString" : "PI" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.3" + } ], + "type" : { + "coding" : [ { + "code" : "PI" + } ] + }, + "system" : "SPHL-000048", + "_system" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPHL-000048" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.10765" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + } ] + }, + "value" : "PID123" + } ], + "name" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ { + "url" : "XPN.2", + "valueString" : "HL7" + }, { + "url" : "XPN.3", + "valueString" : "MI" + }, { + "url" : "XPN.7", + "valueString" : "L" + } ] + } ], + "use" : "official", + "family" : "Mega", + "given" : [ "HL7", "MI" ] + } ], + "telecom" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "713" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5553861" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString" : "1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.1", + "valueString" : "12345" + }, { + "url" : "XTN.2", + "valueString" : "PRS" + }, { + "url" : "XTN.3", + "valueString" : "CP" + }, { + "url" : "XTN.4", + "valueString" : "real@example.com" + }, { + "url" : "XTN.7", + "valueString" : "5553861" + }, { + "url" : "XTN.9", + "valueString" : "himom" + }, { + "url" : "XTN.11", + "valueString" : "4" + }, { + "url" : "XTN.12", + "valueString" : "17135553862" + } ] + } ], + "system" : "phone", + "value" : "17135553862", + "use" : "home" + }, { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "281" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5553861" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.1", + "valueString" : "9865" + }, { + "url" : "XTN.2", + "valueString" : "EMR" + }, { + "url" : "XTN.3", + "valueString" : "SAT" + }, { + "url" : "XTN.4", + "valueString" : "alsoreal@exmaple.com" + }, { + "url" : "XTN.7", + "valueString" : "5553861" + } ] + } ], + "system" : "other", + "use" : "work" + } ], + "gender" : "female", + "birthDate" : "1640", + "_birthDate" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "1640" + } ] + }, + "deceasedDateTime" : "2031", + "_deceasedDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "2031" + } ] + }, + "address" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "123 Main St" + } ] + }, { + "url" : "XAD.2", + "valueString" : "Altxad" + }, { + "url" : "XAD.7", + "valueCode" : "H" + }, { + "url" : "XAD.12", + "extension" : [ { + "url" : "XAD.12.1", + "valueString" : "2020" + }, { + "url" : "XAD.12.2", + "valueString" : "2024" + } ] + } ] + } ], + "use" : "home", + "line" : [ "123 Main St", "Altxad" ], + "city" : "AnyTown", + "district" : "Thurston County", + "state" : "IG", + "postalCode" : "95802", + "country" : "USA", + "period" : { + "start" : "2020", + "end" : "2024" + } + } ], + "multipleBirthInteger" : 11, + "contact" : [ { + "extension" : [ { + "url" : "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70063" + } ], + "code" : "OTH", + "display" : "Other" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "L" + } ], + "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code" : "OT", + "display" : "OTHER RELATIONSHIP" + } ] + } + } ], + "relationship" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70063" + } ], + "code" : "OTH", + "display" : "Other" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "L" + } ], + "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code" : "OT", + "display" : "OTHER RELATIONSHIP" + } ] + } ], + "name" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ { + "url" : "XPN.2", + "valueString" : "GENARO" + }, { + "url" : "XPN.3", + "valueString" : "GR" + }, { + "url" : "XPN.14", + "valueString" : "Dr" + }, { + "url" : "XPN.4", + "valueString" : "JR" + }, { + "url" : "XPN.6", + "valueString" : "Md" + }, { + "url" : "XPN.7", + "valueString" : "L" + }, { + "url" : "XPN.8", + "valueString" : "I" + }, { + "url" : "XPN.10", + "extension" : [ { + "url" : "XPN.10.2", + "valueString" : "2030" + }, { + "url" : "XPN.10.1", + "valueString" : "2000" + } ] + }, { + "url" : "XPN.12", + "valueString" : "20000501102531" + }, { + "url" : "XPN.13", + "valueString" : "2030501102531" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "SURYAN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "Prefix" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Own" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "SpousePrefix" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "Spouse" + } ] + }, + "given" : [ "GENARO", "GR" ], + "prefix" : [ "Sir" ], + "suffix" : [ "JR", "Md", "Dr" ], + "period" : { + "start" : "2000-05-01T10:25:31Z" + } + }, + "telecom" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "720" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5553954" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString" : "2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.2", + "valueString" : "PRN" + }, { + "url" : "XTN.3", + "valueString" : "PH" + }, { + "url" : "XTN.4", + "valueString" : "example@exmaple.com" + }, { + "url" : "XTN.7", + "valueString" : "5553954" + }, { + "url" : "XTN.9", + "valueString" : "any" + }, { + "url" : "XTN.12", + "valueString" : "+1 720 555 3954" + } ] + } ], + "system" : "phone", + "value" : "+1 720 555 3954", + "use" : "home" + }, { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "555" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "4672293" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.2", + "valueString" : "WPN" + }, { + "url" : "XTN.3", + "valueString" : "PH" + }, { + "url" : "XTN.7", + "valueString" : "4672293" + }, { + "url" : "XTN.12", + "valueString" : "+1 555 467 2293" + } ] + } ], + "system" : "phone", + "value" : "+1 555 467 2293", + "use" : "work" + } ], + "address" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "4861 20TH AVE" + } ] + }, { + "url" : "XAD.7", + "valueCode" : "H" + } ] + } ], + "use" : "home", + "line" : [ "4861 20TH AVE" ], + "city" : "THUNDER MOUNTAIN", + "state" : "IG", + "postalCode" : "99999", + "country" : "USA" + }, + "organization" : { + "reference" : "Organization/1727135930902326000.03c13a1f-072c-46a7-bb4b-370118853113" + }, + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20220501102531-0400" + } ] + }, + "end" : "2023-05-01T10:25:31-04:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230501102531-0400" + } ] + } + } + } ] + } + }, { + "fullUrl" : "Organization/1727135930888864000.e1e5bb89-81ad-4c17-9e52-232d5522088d", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930888864000.e1e5bb89-81ad-4c17-9e52-232d5522088d", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "STARLINKED.CDC.Stag" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.9.8.7.6.3.2" + } ] + } + }, { + "fullUrl" : "Organization/1727135930899193000.70e8c785-84fe-49a5-b282-dad0a7e9a77b", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930899193000.70e8c785-84fe-49a5-b282-dad0a7e9a77b", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "RSDT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "0.0.0.1.1138" + } ] + } + }, { + "fullUrl" : "Organization/1727135930902326000.03c13a1f-072c-46a7-bb4b-370118853113", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930902326000.03c13a1f-072c-46a7-bb4b-370118853113", + "contact" : [ { + "telecom" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "720" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5553954" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.2", + "valueString" : "WPN" + }, { + "url" : "XTN.3", + "valueString" : "PH" + }, { + "url" : "XTN.7", + "valueString" : "5553954" + }, { + "url" : "XTN.12", + "valueString" : "+1 720 555 3954" + } ] + } ], + "system" : "phone", + "value" : "+1 720 555 3954", + "use" : "work" + } ], + "address" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode" : "12" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "4861 20TH AVE" + } ] + }, { + "url" : "XAD.2", + "valueString" : "#B" + }, { + "url" : "XAD.7", + "valueCode" : "H" + }, { + "url" : "XAD.8", + "valueString" : "World" + }, { + "url" : "XAD.11", + "valueCode" : "8" + }, { + "url" : "XAD.12", + "extension" : [ { + "url" : "XAD.12.1", + "valueString" : "2017" + }, { + "url" : "XAD.12.2", + "valueString" : "2025" + } ] + }, { + "url" : "XAD.13", + "valueString" : "2020" + }, { + "url" : "XAD.14", + "valueString" : "2021" + } ] + } ], + "use" : "home", + "line" : [ "4861 20TH AVE", "#B" ], + "city" : "AURORA", + "district" : "King", + "state" : "IG", + "postalCode" : "99999", + "country" : "USA", + "period" : { + "start" : "2020", + "end" : "2021" + } + } + } ] + } + }, { + "fullUrl" : "Provenance/1727135930912125000.5b3ce86f-9be7-4ffb-a9a3-d5bc8f6f3a7d", + "resource" : { + "resourceType" : "Provenance", + "id" : "1727135930912125000.5b3ce86f-9be7-4ffb-a9a3-d5bc8f6f3a7d", + "target" : [ { + "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" + } ], + "occurredDateTime" : "2024-08-21T11:38:00Z", + "recorded" : "2024-09-23T16:58:50Z", + "activity" : { + "coding" : [ { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "performer" + } ] + }, + "who" : { + "reference" : "Organization/1727135930911804000.418fb1c7-1c34-49d7-96b4-2dea9aaa2427" + } + } ] + } + }, { + "fullUrl" : "Organization/1727135930911804000.418fb1c7-1c34-49d7-96b4-2dea9aaa2427", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930911804000.418fb1c7-1c34-49d7-96b4-2dea9aaa2427", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "RSDT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "0.0.0.1.1138" + } ] + } + }, { + "fullUrl" : "RelatedPerson/1727135930916650000.8ab0a6eb-7d2b-4af1-9be0-2e789cccb33b", + "resource" : { + "resourceType" : "RelatedPerson", + "id" : "1727135930916650000.8ab0a6eb-7d2b-4af1-9be0-2e789cccb33b", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "NK1" + } ], + "patient" : { + "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" + }, + "relationship" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70063" + } ], + "code" : "OTH", + "display" : "Other" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "L" + } ], + "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code" : "OT", + "display" : "OTHER RELATIONSHIP" + } ] + } ], + "name" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ { + "url" : "XPN.2", + "valueString" : "GENARO" + }, { + "url" : "XPN.3", + "valueString" : "GR" + }, { + "url" : "XPN.14", + "valueString" : "Dr" + }, { + "url" : "XPN.4", + "valueString" : "JR" + }, { + "url" : "XPN.6", + "valueString" : "Md" + }, { + "url" : "XPN.7", + "valueString" : "L" + }, { + "url" : "XPN.8", + "valueString" : "I" + }, { + "url" : "XPN.10", + "extension" : [ { + "url" : "XPN.10.2", + "valueString" : "2030" + }, { + "url" : "XPN.10.1", + "valueString" : "2000" + } ] + }, { + "url" : "XPN.12", + "valueString" : "20000501102531" + }, { + "url" : "XPN.13", + "valueString" : "2030501102531" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "SURYAN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "Prefix" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Own" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "SpousePrefix" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "Spouse" + } ] + }, + "given" : [ "GENARO", "GR" ], + "prefix" : [ "Sir" ], + "suffix" : [ "JR", "Md", "Dr" ], + "period" : { + "start" : "2000-05-01T10:25:31Z" + } + } ], + "telecom" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "720" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5553954" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString" : "2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.2", + "valueString" : "PRN" + }, { + "url" : "XTN.3", + "valueString" : "PH" + }, { + "url" : "XTN.4", + "valueString" : "example@exmaple.com" + }, { + "url" : "XTN.7", + "valueString" : "5553954" + }, { + "url" : "XTN.9", + "valueString" : "any" + }, { + "url" : "XTN.12", + "valueString" : "+1 720 555 3954" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.5" + } ], + "system" : "phone", + "value" : "+1 720 555 3954", + "use" : "home" + }, { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "555" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "4672293" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.2", + "valueString" : "WPN" + }, { + "url" : "XTN.3", + "valueString" : "PH" + }, { + "url" : "XTN.7", + "valueString" : "4672293" + }, { + "url" : "XTN.12", + "valueString" : "+1 555 467 2293" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.6" + } ], + "system" : "phone", + "value" : "+1 555 467 2293", + "use" : "work" + }, { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "720" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5553954" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.2", + "valueString" : "WPN" + }, { + "url" : "XTN.3", + "valueString" : "PH" + }, { + "url" : "XTN.7", + "valueString" : "5553954" + }, { + "url" : "XTN.12", + "valueString" : "+1 720 555 3954" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.31" + } ], + "system" : "phone", + "value" : "+1 720 555 3954", + "use" : "work" + } ], + "address" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.4" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "4861 20TH AVE" + } ] + }, { + "url" : "XAD.7", + "valueCode" : "H" + } ] + } ], + "use" : "home", + "line" : [ "4861 20TH AVE" ], + "city" : "THUNDER MOUNTAIN", + "state" : "IG", + "postalCode" : "99999", + "country" : "USA" + }, { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode" : "12" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "NK1.32" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "4861 20TH AVE" + } ] + }, { + "url" : "XAD.2", + "valueString" : "#B" + }, { + "url" : "XAD.7", + "valueCode" : "H" + }, { + "url" : "XAD.8", + "valueString" : "World" + }, { + "url" : "XAD.11", + "valueCode" : "8" + }, { + "url" : "XAD.12", + "extension" : [ { + "url" : "XAD.12.1", + "valueString" : "2017" + }, { + "url" : "XAD.12.2", + "valueString" : "2025" + } ] + }, { + "url" : "XAD.13", + "valueString" : "2020" + }, { + "url" : "XAD.14", + "valueString" : "2021" + } ] + } ], + "use" : "home", + "line" : [ "4861 20TH AVE", "#B" ], + "city" : "AURORA", + "district" : "King", + "state" : "IG", + "postalCode" : "99999", + "country" : "USA", + "period" : { + "start" : "2020", + "end" : "2021" + } + } ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20220501102531-0400" + } ] + }, + "end" : "2023-05-01T10:25:31-04:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230501102531-0400" + } ] + } + } + } + }, { + "fullUrl" : "Encounter/1727135930924088000.a87dbe11-c1c3-4713-b55a-e42645a16af1", + "resource" : { + "resourceType" : "Encounter", + "id" : "1727135930924088000.a87dbe11-c1c3-4713-b55a-e42645a16af1", + "text" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-visit-description", + "valueString" : "Description" + } ], + "div" : "
Description
" + }, + "status" : "finished", + "subject" : { + "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" + }, + "episodeOfCare" : [ { + "reference" : "EpisodeOfCare/1727135930924195000.a1e98160-c5f6-4737-bccd-408b05f2f8e4" + } ], + "participant" : [ { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "ATND", + "display" : "attender" + } ] + } ], + "individual" : { + "reference" : "Practitioner/1727135930919771000.9661e4fb-9d28-4282-99a8-38ea7fb1e372" + } + }, { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "REF" + } ], + "text" : "referrer" + } ], + "individual" : { + "reference" : "Practitioner/1727135930920249000.87b8441f-6462-4c72-b6b5-770f6f91117b" + } + }, { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "CON" + } ], + "text" : "consultant" + } ], + "individual" : { + "reference" : "Practitioner/1727135930921223000.4e3c2fae-23d7-4087-bd98-78aa1a1a0941" + } + }, { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "ADM" + } ], + "text" : "admitter" + } ], + "individual" : { + "reference" : "Practitioner/1727135930921776000.fd81838a-fdda-421f-bb71-6d780b0b445f" + } + } ], + "period" : { + "start" : "2024-08-01T10:25:31-04:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20240801102531-0400" + } ] + }, + "end" : "2024-08-01T10:25:31-04:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20240801102531-0400" + } ] + } + }, + "length" : { + "value" : 12, + "unit" : "days", + "system" : "http://unitsofmeasure.org/", + "code" : "d" + }, + "hospitalization" : { + "destination" : { + "reference" : "Location/1727135930918737000.646cd403-9137-467b-af49-b1da7d5ffe97" + } + }, + "location" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.3" + } ], + "location" : { + "reference" : "Location/1727135930922297000.bb8e60f5-2dc2-425d-8b10-779393bd1125" + }, + "status" : "active" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.6" + } ], + "location" : { + "reference" : "Location/1727135930923963000.10316ce9-ece7-41de-a6b4-4610899a4c97" + }, + "status" : "completed" + } ] + } + }, { + "fullUrl" : "Location/1727135930918737000.646cd403-9137-467b-af49-b1da7d5ffe97", + "resource" : { + "resourceType" : "Location", + "id" : "1727135930918737000.646cd403-9137-467b-af49-b1da7d5ffe97", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date", + "valueString" : "202305061200" + } ] + } + }, { + "fullUrl" : "Practitioner/1727135930919771000.9661e4fb-9d28-4282-99a8-38ea7fb1e372", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727135930919771000.9661e4fb-9d28-4282-99a8-38ea7fb1e372", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "UUID" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.10", + "valueString" : "B" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.7" + } ], + "identifier" : [ { + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "Namespace", + "value" : "1" + } ], + "name" : [ { + "use" : "official", + "family" : "BEETHOVEN", + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ] + } ] + } + }, { + "fullUrl" : "Practitioner/1727135930920249000.87b8441f-6462-4c72-b6b5-770f6f91117b", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727135930920249000.87b8441f-6462-4c72-b6b5-770f6f91117b", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.8" + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "MOZART" + } ] + } + }, { + "fullUrl" : "Practitioner/1727135930921223000.4e3c2fae-23d7-4087-bd98-78aa1a1a0941", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727135930921223000.4e3c2fae-23d7-4087-bd98-78aa1a1a0941", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.9" + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "CHOPIN" + } ] + } + }, { + "fullUrl" : "Practitioner/1727135930921776000.fd81838a-fdda-421f-bb71-6d780b0b445f", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727135930921776000.fd81838a-fdda-421f-bb71-6d780b0b445f", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.17" + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "BACH" + } ] + } + }, { + "fullUrl" : "Location/1727135930922297000.bb8e60f5-2dc2-425d-8b10-779393bd1125", + "resource" : { + "resourceType" : "Location", + "id" : "1727135930922297000.bb8e60f5-2dc2-425d-8b10-779393bd1125", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "Hospital Assigned" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "ISO" + } ] + }, + "value" : "2.4.4.4" + } ], + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1727135930923372000.558c518f-125e-4428-8dc2-1e1a0c583287", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135930923372000.558c518f-125e-4428-8dc2-1e1a0c583287", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "ASSIGNEE" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "UUID" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "222.1111.22222" + } ] + } + }, { + "fullUrl" : "Location/1727135930923963000.10316ce9-ece7-41de-a6b4-4610899a4c97", + "resource" : { + "resourceType" : "Location", + "id" : "1727135930923963000.10316ce9-ece7-41de-a6b4-4610899a4c97", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString" : "location type" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "Hospital Prio" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "ISO" + } ] + }, + "value" : "2.4.4.4" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "NAME" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "UNI" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString" : "organization" + } ], + "value" : "Entity ID", + "assigner" : { + "reference" : "Organization/1727135930923372000.558c518f-125e-4428-8dc2-1e1a0c583287" + } + } ], + "status" : "active", + "description" : "Description", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "EpisodeOfCare/1727135930924195000.a1e98160-c5f6-4737-bccd-408b05f2f8e4", + "resource" : { + "resourceType" : "EpisodeOfCare", + "id" : "1727135930924195000.a1e98160-c5f6-4737-bccd-408b05f2f8e4", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.54" + } ] + } + }, { + "fullUrl" : "Observation/1727135931054889000.879549dc-018b-47c0-9e9d-a3761a3ea06d", + "resource" : { + "resourceType" : "Observation", + "id" : "1727135931054889000.879549dc-018b-47c0-9e9d-a3761a3ea06d", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "subid" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime" : "2023-09-12T18:08:02-04:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230912180802-0400" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ { + "url" : "OBX.2", + "valueId" : "CWE" + }, { + "url" : "OBX.29", + "valueId" : "QST" + }, { + "url" : "OBX.11", + "valueString" : "F" + }, { + "url" : "OBX.18", + "valueReference" : { + "reference" : "Device/1727135931053992000.f372c9ef-a682-4265-b6e7-336c3bbcfb1f" + } + } ] + } ], + "status" : "final", + "subject" : { + "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" + }, + "encounter" : { + "reference" : "Encounter/1727135930924088000.a87dbe11-c1c3-4713-b55a-e42645a16af1" + }, + "effectiveDateTime" : "2023-01-01T00:00:00Z", + "_effectiveDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230101000000" + } ] + }, + "performer" : [ { + "reference" : "PractitionerRole/1727135931055103000.5d95dbb5-68f8-45d7-a9cb-9cf514fb474d" + }, { + "reference" : "PractitionerRole/1727135931055670000.0cf79842-b57f-4148-820c-bfd8890c386c" + } ], + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "code" : "260415000", + "display" : "Not detected" + } ] + }, + "note" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension" : [ { + "url" : "NTE.2", + "valueId" : "L" + }, { + "url" : "NTE.7", + "valueString" : "20230202" + }, { + "url" : "NTE.8", + "valueString" : "20230203" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId" : "OBX Note" + } ], + "time" : "2023-02-01", + "_time" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230201" + } ] + }, + "text" : "OBX Note" + } ], + "device" : { + "reference" : "Device/1727135931057583000.c23124e0-ba86-4fa4-96df-76637baf2819" + }, + "referenceRange" : [ { + "text" : "range of a few" + } ] + } + }, { + "fullUrl" : "Device/1727135931053992000.f372c9ef-a682-4265-b6e7-336c3bbcfb1f", + "resource" : { + "resourceType" : "Device", + "id" : "1727135931053992000.f372c9ef-a682-4265-b6e7-336c3bbcfb1f", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPTRDEV-001" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.17.840" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "Device 001" + } ] + } + }, { + "fullUrl" : "Practitioner/1727135931055483000.06a2880c-0745-46c4-866b-fa31e006748b", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727135931055483000.06a2880c-0745-46c4-866b-fa31e006748b", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "Quinlen" + } ] + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "Frances", + "given" : [ "Quinlen" ] + } ] + } + }, { + "fullUrl" : "PractitionerRole/1727135931055103000.5d95dbb5-68f8-45d7-a9cb-9cf514fb474d", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1727135931055103000.5d95dbb5-68f8-45d7-a9cb-9cf514fb474d", + "practitioner" : { + "reference" : "Practitioner/1727135931055483000.06a2880c-0745-46c4-866b-fa31e006748b" + }, + "code" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/practitioner-role", + "code" : "responsibleObserver" + } ] + } ] + } + }, { + "fullUrl" : "Practitioner/1727135931056021000.2377666f-d18e-431d-b78b-edc1924717b4", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727135931056021000.2377666f-d18e-431d-b78b-edc1924717b4", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "Quinlen" + } ] + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "Mark", + "given" : [ "Quinlen" ] + } ] + } + }, { + "fullUrl" : "Organization/1727135931056698000.d1417f8c-8db8-41a5-b2bf-a762277994cb", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135931056698000.d1417f8c-8db8-41a5-b2bf-a762277994cb", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.10", + "valueString" : "11D1111111" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CLIA" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.113883.4.7" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "XX" + } ] + }, + "value" : "11D1111111" + } ], + "name" : "CSV uploads-11D1111111", + "address" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "2 Second Dr" + } ] + } ] + } ], + "line" : [ "2 Second Dr" ], + "state" : "IG", + "postalCode" : "94553", + "country" : "USA" + } ] + } + }, { + "fullUrl" : "PractitionerRole/1727135931055670000.0cf79842-b57f-4148-820c-bfd8890c386c", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1727135931055670000.0cf79842-b57f-4148-820c-bfd8890c386c", + "practitioner" : { + "reference" : "Practitioner/1727135931056021000.2377666f-d18e-431d-b78b-edc1924717b4" + }, + "organization" : { + "reference" : "Organization/1727135931056698000.d1417f8c-8db8-41a5-b2bf-a762277994cb" + }, + "code" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", + "code" : "MDIR" + } ] + } ] + } + }, { + "fullUrl" : "Device/1727135931057583000.c23124e0-ba86-4fa4-96df-76637baf2819", + "resource" : { + "resourceType" : "Device", + "id" : "1727135931057583000.c23124e0-ba86-4fa4-96df-76637baf2819", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPTRDEV-001" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.17.840" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "Device 001" + } ] + } + }, { + "fullUrl" : "Specimen/1727135931059633000.93a14262-50f1-4463-be16-524a1bc18a5e", + "resource" : { + "resourceType" : "Specimen", + "id" : "1727135931059633000.93a14262-50f1-4463-be16-524a1bc18a5e", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "OBR" + } ] + } + }, { + "fullUrl" : "Specimen/1727135931063598000.b9d9dbb1-b5b6-4cd7-8101-42b82705b282", + "resource" : { + "resourceType" : "Specimen", + "id" : "1727135931063598000.b9d9dbb1-b5b6-4cd7-8101-42b82705b282", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "SPM" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", + "extension" : [ { + "url" : "SPM.26", + "valueString" : "2" + }, { + "url" : "SPM.5", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + } + }, { + "url" : "SPM.6", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + } + }, { + "url" : "SPM.6", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + } + }, { + "url" : "SPM.11", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/reject-reason", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "440500007", + "display" : "SNOMEDTEXT" + } ] + } + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Any lab USA-p" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "36D1332559-p" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "CLIA-p" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString" : "380604-s" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Any lab USA-s" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "36D1332559-s" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "CLIA-s" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString" : "SPM.2.1" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PGN" + } ] + }, + "value" : "380604-p" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Any lab USA-s" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "36D1332559-s" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "CLIA-s" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString" : "380604-p" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Any lab USA-p" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "36D1332559-p" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "CLIA-p" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString" : "SPM.2.2" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "FGN" + } ] + }, + "value" : "380604-s" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + }, + "receivedTime" : "2021-06-04T11:25:06Z", + "_receivedTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20210604112506+0000" + } ] + }, + "collection" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + } + } ], + "collectedPeriod" : { + "start" : "2021-06-04T11:25:00Z", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20210604112500+0000" + } ] + }, + "end" : "2021-06-04T11:25:01Z", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20210604112501+0000" + } ] + } + }, + "quantity" : { + "value" : 1 + }, + "method" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + }, + "bodySite" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2020-09-01", + "code" : "71836000", + "display" : "Nasopharyngeal structure (body structure)" + } ] + } + }, + "container" : [ { + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + }, + "additiveCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + } + } ], + "condition" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "version" : "2.67", + "code" : "440500007", + "display" : "SNOMEDTEXT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "12345-6", + "display" : "LOINCTEXT" + } ] + } ], + "note" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "SPM.14" + } ], + "text" : "TEST" + } ] + } + }, { + "fullUrl" : "ServiceRequest/1727135931070894000.c6da959b-a0b1-4eaf-98fe-482d0ed3f1c9", + "resource" : { + "resourceType" : "ServiceRequest", + "id" : "1727135931070894000.c6da959b-a0b1-4eaf-98fe-482d0ed3f1c9", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode" : "RE" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString" : "20230725" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension" : [ { + "url" : "ORC.5", + "valueString" : "CM" + }, { + "url" : "orc-21-ordering-facility-name", + "valueReference" : { + "reference" : "Organization/1727135931069957000.71c19ffa-5756-45ab-9871-3441324a6a5c" + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ { + "url" : "OBR.2", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Placer Identifier Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "Placer Universal ID" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "Placer Identifier" + } + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPHL-000048" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.10765" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } ] + }, + "value" : "Specimen123" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBR.3" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Filler Identifier Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "Filler Universal ID" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "FILL" + } ] + }, + "value" : "Filler Identifier" + } ], + "status" : "completed", + "subject" : { + "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" + }, + "requester" : { + "reference" : "PractitionerRole/1727135931066802000.c0bfe9b7-bd2c-4733-92f0-a4070369a8bb" + }, + "supportingInfo" : [ { + "reference" : "Observation/1727135931054889000.879549dc-018b-47c0-9e9d-a3761a3ea06d" + } ], + "specimen" : [ { + "reference" : "Specimen/1727135931063598000.b9d9dbb1-b5b6-4cd7-8101-42b82705b282" + }, { + "reference" : "Specimen/1727135931059633000.93a14262-50f1-4463-be16-524a1bc18a5e" + } ] + } + }, { + "fullUrl" : "Location/1727135931067673000.a9013169-6a2b-43b5-808f-85bfde0f8796", + "resource" : { + "resourceType" : "Location", + "id" : "1727135931067673000.a9013169-6a2b-43b5-808f-85bfde0f8796", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "2.16.840.1.114222.8.7.6.5.4.1" + } ], + "name" : "STARLINKS.CDC.Stag", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1727135931068013000.3ee86f89-b9b0-4ffd-a206-d1dd46aa9949", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135931068013000.3ee86f89-b9b0-4ffd-a206-d1dd46aa9949", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "A" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.10", + "valueString" : "SPHL-000048" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "STARLIMS.CDC.Stag" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1727135931067673000.a9013169-6a2b-43b5-808f-85bfde0f8796" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "XX" + } ] + }, + "value" : "SPHL-000048" + } ], + "name" : "CDPH, Viral and Rickettsial Disease Laboratory" + } + }, { + "fullUrl" : "PractitionerRole/1727135931066802000.c0bfe9b7-bd2c-4733-92f0-a4070369a8bb", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1727135931066802000.c0bfe9b7-bd2c-4733-92f0-a4070369a8bb", + "organization" : { + "reference" : "Organization/1727135931068013000.3ee86f89-b9b0-4ffd-a206-d1dd46aa9949" + } + } + }, { + "fullUrl" : "Location/1727135931069695000.7de98016-9ca2-41fa-ae43-f5bdb93709a5", + "resource" : { + "resourceType" : "Location", + "id" : "1727135931069695000.7de98016-9ca2-41fa-ae43-f5bdb93709a5", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "2.16.840.1.114222.8.7.6.5.4.1" + } ], + "name" : "STARLINKS.CDC.Stag", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1727135931069957000.71c19ffa-5756-45ab-9871-3441324a6a5c", + "resource" : { + "resourceType" : "Organization", + "id" : "1727135931069957000.71c19ffa-5756-45ab-9871-3441324a6a5c", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "A" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.10", + "valueString" : "SPHL-000048" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "STARLIMS.CDC.Stag" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1727135931069695000.7de98016-9ca2-41fa-ae43-f5bdb93709a5" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "XX" + } ] + }, + "value" : "SPHL-000048" + } ], + "name" : "CDPH, Viral and Rickettsial Disease Laboratory" + } + } ] +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 new file mode 100644 index 00000000000..42a140f28e6 --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 @@ -0,0 +1,11 @@ +MSH|^~\&|OrderingFacilityApplicationName^2.16.840.1.114222.XXX^ISO|OrderingFacilityName^2.16.840.1.114222.XXX^ISO|txdshslabNBS^2.16.840.1.114222.4.1.181960.2^ISO|txdshslab^2.16.840.1.114222.4.1.181960^ISO|20190720091229|msh8placeholder|OML^O21^OML_O21|0123|P^A|2.5.1|42|msh14placeholder|AL|AL|FR|UNICODE UTF-8||UNICODE UTF-16|PHLabReport-NoAck^PHIN^2.16.840.1.113883.9.11^ISO +SFT|CDC^^789^Check Digit3^C3^CDC OML SFT&2.1.9.1&ISO^MD^Hospital C&2.16.8121.1.113883.9.11&ISO^A^CDC CLIA|ELIMS V11|STARLIMS|Binary ID unknown|testsft5data|20230802180802-0400 +PID|1||test^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO~PID123^^^SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^PI||Mega^HL7^MI^^^^L|Mind^FHIR^WI^^^^L|1640|F|||123 Main St^Altxad^AnyTown^IG^95802^USA^H^^Thurston County^^^2020&2024||12345^PRS^CP^real@example.com^1^713^5553861^1^himom^^4^17135553862|9865^EMR^SAT^alsoreal@exmaple.com^1^281^5553861||||||||||Y|11||||2031|Y|||202408211138|RSDT^0.0.0.1.1138^ISO +NK1|1|SURYAN&Prefix&Own&SpousePrefix&Spouse^GENARO^GR^JR^Sir^Md^L^I^^2000&2030^G^20000501102531^2030501102531^Dr|OTH^Other^HL70063^OT^OTHER RELATIONSHIP^L|4861 20TH AVE^^THUNDER MOUNTAIN^IG^99999^USA^H|^PRN^PH^example@exmaple.com^1^720^5553954^2^any^^^+1 720 555 3954|^WPN^PH^^1^555^4672293^^^^^+1 555 467 2293||20220501102531-0400|20230501102531-0400||||||||||||||||||||||^WPN^PH^^1^720^5553954^^^^^+1 720 555 3954|4861 20TH AVE^#B^AURORA^IG^99999^USA^H^World^King^12^8^2017&2025^2020^2021 +PV1|1||^^^Hospital Assigned&2.4.4.4&ISO|||^^^Hospital Prio&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID|1^BEETHOVEN^LUDWIG^B^2ND^DR^MD^^Namespace&AssigningSystem&UUID^B^^^DL^^^^^^^^MD|1^MOZART|1^CHOPIN||||||||1^BACH||||||||||||||||||||^202305061200|||||||20240801102531-0400|20240801102531-0400 +PV2|||||||||||12|Description +ORC|RE|Specimen123^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|||CM||||20230725||||||||||||CDPH, Viral and Rickettsial Disease Laboratory^^^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^XX^STARLINKS.CDC.Stag&2.16.840.1.114222.8.7.6.5.4.1&ISO^A^SPHL-000048 +OBR|1|Placer Identifier^Placer Identifier Namespace^Placer Universal ID^ISO|Filler Identifier^Filler Identifier Namespace^Filler Universal ID^ISO +OBX|1|CWE||subid|260415000^Not detected^SCT||range of a few||||F|||20230101000000||1^Frances^Quinlen||Device 001^SPTRDEV-001^2.17.840^ISO|20230912180802-0400||||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen||||QST +NTE|1|L|OBX Note|||20230201|20230202|20230203 +SPM|1|380604-p&Any lab USA-p&36D1332559-p&CLIA-p^380604-s&Any lab USA-s&36D1332559-s&CLIA-s||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|71836000^Nasopharyngeal structure (body structure)^SCT^^^^2020-09-01|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|1||TEST|||20210604112500+0000^20210604112501+0000|20210604112506+0000|||440500007^SNOMEDTEXT|||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||2|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67 diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.fhir new file mode 100644 index 00000000000..8d4c683eff0 --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.fhir @@ -0,0 +1,228 @@ +{ + "resourceType" : "Bundle", + "id" : "1727210895046302000.c01043d3-a2b8-4165-8144-3a89a21e51af", + "meta" : { + "lastUpdated" : "2024-09-24T13:48:15.051-07:00" + }, + "identifier" : { + "system" : "https://reportstream.cdc.gov/prime-router", + "value" : "20230816123358" + }, + "type" : "message", + "timestamp" : "2023-08-16T10:33:58.000-07:00", + "entry" : [ { + "fullUrl" : "MessageHeader/1727210895080407000.40c797c7-32d1-40c7-bed8-d6b80027825b", + "resource" : { + "resourceType" : "MessageHeader", + "id" : "1727210895080407000.40c797c7-32d1-40c7-bed8-d6b80027825b", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", + "valueString" : "^~\\&#" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension" : [ { + "url" : "MSH.7", + "valueString" : "20230816123358-0500" + } ] + } ], + "eventCoding" : { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", + "code" : "O21", + "display" : "OML^O21^OML_O21" + } + } + }, { + "fullUrl" : "Provenance/1727210895309749000.363e82c1-2a17-4dac-a51a-bcfebaedfbc4", + "resource" : { + "resourceType" : "Provenance", + "id" : "1727210895309749000.363e82c1-2a17-4dac-a51a-bcfebaedfbc4", + "recorded" : "2023-08-16T12:33:58-05:00", + "activity" : { + "coding" : [ { + "display" : "OML^O21^OML_O21" + } ] + } + } + }, { + "fullUrl" : "Provenance/1727210895317838000.2502e208-a7b7-4295-9285-d6b562b5f2cf", + "resource" : { + "resourceType" : "Provenance", + "id" : "1727210895317838000.2502e208-a7b7-4295-9285-d6b562b5f2cf", + "recorded" : "2024-09-24T13:48:15Z", + "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], + "activity" : { + "coding" : [ { + "code" : "v2-FHIR transformation" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } ] + }, + "who" : { + "reference" : "Organization/1727210895317355000.6a6cbbc8-59f8-4d58-b882-b65c759b13e7" + } + } ] + } + }, { + "fullUrl" : "Organization/1727210895317355000.6a6cbbc8-59f8-4d58-b882-b65c759b13e7", + "resource" : { + "resourceType" : "Organization", + "id" : "1727210895317355000.6a6cbbc8-59f8-4d58-b882-b65c759b13e7", + "identifier" : [ { + "value" : "CDC PRIME - Atlanta" + }, { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } ] + } + }, { + "fullUrl" : "Patient/1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5", + "resource" : { + "resourceType" : "Patient", + "id" : "1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5" + } + }, { + "fullUrl" : "Provenance/1727210895327024000.4fbda015-793f-40cc-a1e9-a1eb6a5daf3f", + "resource" : { + "resourceType" : "Provenance", + "id" : "1727210895327024000.4fbda015-793f-40cc-a1e9-a1eb6a5daf3f", + "target" : [ { + "reference" : "Patient/1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5" + } ], + "recorded" : "2024-09-24T13:48:15Z", + "activity" : { + "coding" : [ { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } ] + } + } + }, { + "fullUrl" : "Observation/1727210895329920000.4cf57284-e02c-48cd-aab9-1deda683c63e", + "resource" : { + "resourceType" : "Observation", + "id" : "1727210895329920000.4cf57284-e02c-48cd-aab9-1deda683c63e", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ { + "url" : "OBX.2", + "valueId" : "CWE" + }, { + "url" : "OBX.11", + "valueString" : "F" + } ] + } ], + "status" : "final", + "subject" : { + "reference" : "Patient/1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5" + }, + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "display" : "Observation Value" + } ] + } + } + }, { + "fullUrl" : "Specimen/1727210895439549000.0c149441-634a-4604-b88f-9ee78d57c4e4", + "resource" : { + "resourceType" : "Specimen", + "id" : "1727210895439549000.0c149441-634a-4604-b88f-9ee78d57c4e4", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "OBR" + } ] + } + }, { + "fullUrl" : "Specimen/1727210895441860000.08158d26-3a5e-4015-a193-d6a193dc2567", + "resource" : { + "resourceType" : "Specimen", + "id" : "1727210895441860000.08158d26-3a5e-4015-a193-d6a193dc2567", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "SPM" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Placer Assigned Identifier" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString" : "SPM.2.1" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PGN" + } ] + } + } ], + "collection" : { + "bodySite" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "display" : "Specimen Source Site" + } ] + } + } + } + }, { + "fullUrl" : "ServiceRequest/1727210895444883000.cf6a4628-3c45-49be-b512-2746edc3c508", + "resource" : { + "resourceType" : "ServiceRequest", + "id" : "1727210895444883000.cf6a4628-3c45-49be-b512-2746edc3c508", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode" : "RE" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ { + "url" : "OBR.2", + "valueIdentifier" : { + "value" : "Placer Identifier" + } + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.2" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } ] + }, + "value" : "ORC Placer Identifier" + } ], + "status" : "unknown", + "subject" : { + "reference" : "Patient/1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5" + }, + "supportingInfo" : [ { + "reference" : "Observation/1727210895329920000.4cf57284-e02c-48cd-aab9-1deda683c63e" + } ], + "specimen" : [ { + "reference" : "Specimen/1727210895441860000.08158d26-3a5e-4015-a193-d6a193dc2567" + }, { + "reference" : "Specimen/1727210895439549000.0c149441-634a-4604-b88f-9ee78d57c4e4" + } ] + } + } ] +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.hl7 new file mode 100644 index 00000000000..cbba0348297 --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.hl7 @@ -0,0 +1,6 @@ +MSH|^~\&#|||||20230816123358-0500||OML^O21^OML_O21|20230816123358||2.5.1 +PID|1 +ORC|RE|ORC Placer Identifier +OBR|1|Placer Identifier +OBX|1|CWE|||^Observation Value||||||F +SPM|1|&Placer Assigned Identifier||||||^Specimen Source Site diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir index d86386bb0fd..68061ce8e8c 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir @@ -156,6 +156,31 @@ "valueString" : "OBR" } ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727307988977002000.0a18791e-84bf-45ca-9e55-433f4a5954e0" + }, + "collectedPeriod" : { + "start" : "2023-08-16T12:33:58-05:00", + "_start" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } + ] + }, + "end" : "2023-09-16T12:33:58-05:00", + "_end" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230916123358-0500" + } + ] + } + } + }, "note" : [ { "extension" : [ @@ -205,7 +230,214 @@ } }, { - "fullUrl" : "ServiceRequest/1716961316869011000.096b7105-6f01-44d4-b57c-ca2e7dfe9cfc", + "fullUrl" : "Practitioner/1727307988977002000.0a18791e-84bf-45ca-9e55-433f4a5954e0", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727307988977002000.0a18791e-84bf-45ca-9e55-433f4a5954e0", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ + { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, + { + "url" : "XCN.4", + "valueString" : "B" + }, + { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, + { + "url" : "XCN.21", + "valueString" : "MD" + }, + { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "AssignJ" + } + ] + } + }, + { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "AssignA" + } + ] + } + }, + { + "url" : "XCN.5", + "valueString" : "2ND" + }, + { + "url" : "XCN.7", + "valueString" : "MD" + }, + { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "SRC" + } + ] + } + }, + { + "url" : "XCN.10", + "valueString" : "B" + }, + { + "url" : "XCN.15", + "valueString" : "A" + }, + { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "NameContext" + } + ] + } + }, + { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } + ] + } + ], + "identifier" : [ + { + "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } + ], + "type" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } + ], + "code" : "DL" + } + ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } + ], + "name" : [ + { + "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } + ], + "use" : "official", + "family" : "Collector", + "_family" : { + "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } + ] + }, + "given" : [ + "LUDWIG", + "B" + ], + "prefix" : [ + "DR" + ], + "suffix" : [ + "2ND", + "MD", + "MD" + ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } + ] + } + }, + { + "fullUrl" : "ServiceRequest/1727307989120333000.e424bf5a-9a96-4b07-8354-c9f7eed60475", "resource" : { "resourceType" : "ServiceRequest", "id" : "1716961316869011000.096b7105-6f01-44d4-b57c-ca2e7dfe9cfc", @@ -3042,7 +3274,7 @@ ], "basedOn" : [ { - "reference" : "ServiceRequest/1716961316869011000.096b7105-6f01-44d4-b57c-ca2e7dfe9cfc" + "reference" : "ServiceRequest/1727307989120333000.e424bf5a-9a96-4b07-8354-c9f7eed60475" } ], "status" : "final", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir index d38884bd48f..acd56095ddf 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir @@ -119,7 +119,16 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" - } ] + } ], + "collection" : { + "collectedDateTime" : "2023-08-16T12:33:58-05:00", + "_collectedDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } ] + } + } } }, { "fullUrl" : "ServiceRequest/1722987602982733000.e8242c5b-b8be-42d7-acd2-3d1eabe25403", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir index c3b2e90918a..fc493c10936 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir @@ -119,7 +119,16 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" - } ] + } ], + "collection" : { + "collectedDateTime" : "2023-08-16T12:33:58-05:00", + "_collectedDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } ] + } + } } }, { "fullUrl" : "ServiceRequest/1722987602982733000.e8242c5b-b8be-42d7-acd2-3d1eabe25403", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir index 1ac0cce1c41..6bbe487885a 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir @@ -119,7 +119,16 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" - } ] + } ], + "collection" : { + "collectedDateTime" : "2023-08-16T12:33:58-05:00", + "_collectedDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } ] + } + } } }, { "fullUrl" : "ServiceRequest/1722989968971318000.27111d05-0304-40a6-b9f2-36a4d217b030", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir index be1721745f9..c3b02918aca 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir @@ -119,7 +119,16 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" - } ] + } ], + "collection" : { + "collectedDateTime" : "2021-08-16T12:33:58-05:00", + "_collectedDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20210816123358-0500" + } ] + } + } } }, { "fullUrl" : "ServiceRequest/1710885177785768000.9ad05561-d558-46bd-afd4-18b1b895213f", @@ -150,11 +159,11 @@ "subject" : { "reference" : "Patient/1710885177487304000.8acbfe50-ad34-4a1a-b0bf-284256794cae" }, - "effectiveDateTime" : "2023-08-16T12:33:58-05:00", + "effectiveDateTime" : "2021-08-16T12:33:58-05:00", "_effectiveDateTime" : { "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230816123358-0500" + "valueString" : "20210816123358-0500" } ] }, "specimen" : [ { diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.hl7 index 40c08b7c477..c97344243cb 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.hl7 +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.hl7 @@ -1,3 +1,3 @@ MSH|^~\&#|||||20230816123358-0500||ORU^R01^ORU_R01|20230816123358||2.5.1 PID|1 -OBR|1||||||20230816123358-0500||||||||||||||||||F \ No newline at end of file +OBR|1||||||20210816123358-0500||||||||||||||||||F \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir new file mode 100644 index 00000000000..19f8354896d --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir @@ -0,0 +1,192 @@ +{ + "resourceType" : "Bundle", + "id" : "1727214434506826000.c1c9ce67-32d3-4763-b4c4-f1d2776fc43c", + "meta" : { + "lastUpdated" : "2024-09-24T14:47:14.511-07:00" + }, + "identifier" : { + "system" : "https://reportstream.cdc.gov/prime-router", + "value" : "20230816123358" + }, + "type" : "message", + "timestamp" : "2023-08-16T10:33:58.000-07:00", + "entry" : [ { + "fullUrl" : "MessageHeader/1727214434543241000.a6f6f7bd-c70c-4c7f-939d-755c3c65c83e", + "resource" : { + "resourceType" : "MessageHeader", + "id" : "1727214434543241000.a6f6f7bd-c70c-4c7f-939d-755c3c65c83e", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", + "valueString" : "^~\\&#" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension" : [ { + "url" : "MSH.7", + "valueString" : "20230816123358-0500" + } ] + } ], + "eventCoding" : { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", + "code" : "R01", + "display" : "ORU^R01^ORU_R01" + } + } + }, { + "fullUrl" : "Provenance/1727214434821404000.fad2bf74-be6d-4437-90ba-7f792cd09434", + "resource" : { + "resourceType" : "Provenance", + "id" : "1727214434821404000.fad2bf74-be6d-4437-90ba-7f792cd09434", + "target" : [ { + "reference" : "MessageHeader/1727214434543241000.a6f6f7bd-c70c-4c7f-939d-755c3c65c83e" + }, { + "reference" : "DiagnosticReport/1727214434964909000.a8f9070b-7a37-462c-bbac-4e6855d690df" + } ], + "recorded" : "2023-08-16T12:33:58-05:00", + "activity" : { + "coding" : [ { + "display" : "ORU^R01^ORU_R01" + } ] + } + } + }, { + "fullUrl" : "Provenance/1727214434826963000.dacdba9a-2df8-4b93-80bb-87d78e6b31cd", + "resource" : { + "resourceType" : "Provenance", + "id" : "1727214434826963000.dacdba9a-2df8-4b93-80bb-87d78e6b31cd", + "recorded" : "2024-09-24T14:47:14Z", + "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], + "activity" : { + "coding" : [ { + "code" : "v2-FHIR transformation" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } ] + }, + "who" : { + "reference" : "Organization/1727214434826509000.f1c68d3f-b7d1-4c26-9d52-d899b9856680" + } + } ] + } + }, { + "fullUrl" : "Organization/1727214434826509000.f1c68d3f-b7d1-4c26-9d52-d899b9856680", + "resource" : { + "resourceType" : "Organization", + "id" : "1727214434826509000.f1c68d3f-b7d1-4c26-9d52-d899b9856680", + "identifier" : [ { + "value" : "CDC PRIME - Atlanta" + }, { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } ] + } + }, { + "fullUrl" : "Patient/1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314", + "resource" : { + "resourceType" : "Patient", + "id" : "1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314" + } + }, { + "fullUrl" : "Provenance/1727214434839911000.1274c483-0b10-48a1-8af4-cfe910092753", + "resource" : { + "resourceType" : "Provenance", + "id" : "1727214434839911000.1274c483-0b10-48a1-8af4-cfe910092753", + "target" : [ { + "reference" : "Patient/1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314" + } ], + "recorded" : "2024-09-24T14:47:14Z", + "activity" : { + "coding" : [ { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } ] + } + } + }, { + "fullUrl" : "Specimen/1727214434841147000.0f667d95-f620-43f5-93f1-4d8842174085", + "resource" : { + "resourceType" : "Specimen", + "id" : "1727214434841147000.0f667d95-f620-43f5-93f1-4d8842174085", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "OBR" + } ], + "collection" : { + "collectedPeriod" : { + "start" : "2023-08-16T12:33:58-05:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } ] + }, + "end" : "2024-08-16T12:33:58-05:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20240816123358-0500" + } ] + } + } + } + } + }, { + "fullUrl" : "ServiceRequest/1727214434962556000.3fdd6e86-1f54-4904-80c0-cb4e342b6432", + "resource" : { + "resourceType" : "ServiceRequest", + "id" : "1727214434962556000.3fdd6e86-1f54-4904-80c0-cb4e342b6432", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ { + "url" : "OBR.25", + "valueId" : "F" + } ] + } ], + "status" : "unknown", + "subject" : { + "reference" : "Patient/1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314" + } + } + }, { + "fullUrl" : "DiagnosticReport/1727214434964909000.a8f9070b-7a37-462c-bbac-4e6855d690df", + "resource" : { + "resourceType" : "DiagnosticReport", + "id" : "1727214434964909000.a8f9070b-7a37-462c-bbac-4e6855d690df", + "basedOn" : [ { + "reference" : "ServiceRequest/1727214434962556000.3fdd6e86-1f54-4904-80c0-cb4e342b6432" + } ], + "status" : "final", + "subject" : { + "reference" : "Patient/1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314" + }, + "effectivePeriod" : { + "start" : "2023-08-16T12:33:58-05:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } ] + }, + "end" : "2024-08-16T12:33:58-05:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20240816123358-0500" + } ] + } + }, + "specimen" : [ { + "reference" : "Specimen/1727214434841147000.0f667d95-f620-43f5-93f1-4d8842174085" + } ] + } + } ] +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.hl7 new file mode 100644 index 00000000000..af9ad388d6e --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.hl7 @@ -0,0 +1,3 @@ +MSH|^~\&#|||||20230816123358-0500||ORU^R01^ORU_R01|20230816123358||2.5.1 +PID|1 +OBR|1||||||20230816123358-0500|20240816123358-0500|||||||||||||||||F \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir index 74402359566..069245225fc 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir @@ -156,6 +156,31 @@ "valueString" : "OBR" } ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727212329144859000.0332f28c-28e8-4098-bb7e-d3db7ffead1e" + }, + "collectedPeriod" : { + "start" : "2023-08-16T12:33:58-05:00", + "_start" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } + ] + }, + "end" : "2023-09-16T12:33:58-05:00", + "_end" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230916123358-0500" + } + ] + } + } + }, "note" : [ { "extension" : [ @@ -183,7 +208,214 @@ } }, { - "fullUrl" : "ServiceRequest/1716961419201447000.c6b89d4a-7bf4-4b73-9069-68f887e3c4be", + "fullUrl" : "Practitioner/1727212329144859000.0332f28c-28e8-4098-bb7e-d3db7ffead1e", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727212329144859000.0332f28c-28e8-4098-bb7e-d3db7ffead1e", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ + { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, + { + "url" : "XCN.4", + "valueString" : "B" + }, + { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, + { + "url" : "XCN.21", + "valueString" : "MD" + }, + { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "AssignJ" + } + ] + } + }, + { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "AssignA" + } + ] + } + }, + { + "url" : "XCN.5", + "valueString" : "2ND" + }, + { + "url" : "XCN.7", + "valueString" : "MD" + }, + { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "SRC" + } + ] + } + }, + { + "url" : "XCN.10", + "valueString" : "B" + }, + { + "url" : "XCN.15", + "valueString" : "A" + }, + { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "NameContext" + } + ] + } + }, + { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } + ] + } + ], + "identifier" : [ + { + "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } + ], + "type" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } + ], + "code" : "DL" + } + ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } + ], + "name" : [ + { + "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } + ], + "use" : "official", + "family" : "Collector", + "_family" : { + "extension" : [ + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } + ] + }, + "given" : [ + "LUDWIG", + "B" + ], + "prefix" : [ + "DR" + ], + "suffix" : [ + "2ND", + "MD", + "MD" + ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } + ] + } + }, + { + "fullUrl" : "ServiceRequest/1727212329304688000.16d7eaa9-940a-415c-a7c5-b4f9f35b4d9d", "resource" : { "resourceType" : "ServiceRequest", "id" : "1716961419201447000.c6b89d4a-7bf4-4b73-9069-68f887e3c4be", @@ -4186,7 +4418,7 @@ ], "basedOn" : [ { - "reference" : "ServiceRequest/1716961419201447000.c6b89d4a-7bf4-4b73-9069-68f887e3c4be" + "reference" : "ServiceRequest/1727212329304688000.16d7eaa9-940a-415c-a7c5-b4f9f35b4d9d" } ], "status" : "final", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir index b66247c7613..650ccf43797 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir @@ -1738,6 +1738,26 @@ } } ], + "relationship" : [ + { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70131" + } + ], + "code" : "N", + "display" : "Next-of-Kin" + } + ] + } + ], "name" : { "extension" : [ { @@ -3937,7 +3957,18 @@ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" } - ] + ], + "collection" : { + "collectedDateTime" : "2023-07-24T15:24:00Z", + "_collectedDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202307241524" + } + ] + } + } } }, { @@ -3950,7 +3981,18 @@ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" } - ] + ], + "collection" : { + "collectedDateTime" : "2023-07-24T15:24:00Z", + "_collectedDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202307241524" + } + ] + } + } } }, { diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-dns-assigning-authority.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-dns-assigning-authority.fhir index 8532300100f..59147cb34ab 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-dns-assigning-authority.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-dns-assigning-authority.fhir @@ -119,6 +119,181 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" + } ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727304366494814000.cc8d525e-b129-4f37-9f38-d03e3486de51" + } + } + } + }, { + "fullUrl" : "Organization/1727304366487498000.2d40a841-7f5a-4618-b329-13aac7daf1ed", + "resource" : { + "resourceType" : "Organization", + "id" : "1727304366487498000.2d40a841-7f5a-4618-b329-13aac7daf1ed", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "Namespace" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "DNS" + } ] + }, + "value" : "AssigningOrganization" + } ] + } + }, { + "fullUrl" : "Practitioner/1727304366494814000.cc8d525e-b129-4f37-9f38-d03e3486de51", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727304366494814000.cc8d525e-b129-4f37-9f38-d03e3486de51", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type", + "valueCode" : "AssigningOrganization" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "DNS" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "value" : "1", + "assigner" : { + "reference" : "Organization/1727304366487498000.2d40a841-7f5a-4618-b329-13aac7daf1ed" + } + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "BEETHOVEN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "BEETHOVEN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } } ] } }, { diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-iso-assigning-authority-no-namespace.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-iso-assigning-authority-no-namespace.fhir index 40b0b6f3d75..d75492e7ad2 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-iso-assigning-authority-no-namespace.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-iso-assigning-authority-no-namespace.fhir @@ -119,6 +119,153 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" + } ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727304384512381000.a6b114dc-38b9-4be5-8fc8-69a3b4c4763a" + } + } + } + }, { + "fullUrl" : "Practitioner/1727304384512381000.a6b114dc-38b9-4be5-8fc8-69a3b4c4763a", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727304384512381000.a6b114dc-38b9-4be5-8fc8-69a3b4c4763a", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "BEETHOVEN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "BEETHOVEN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } } ] } }, { diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority-no-namespace.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority-no-namespace.fhir index 7f2920c332e..1ff02adbc13 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority-no-namespace.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority-no-namespace.fhir @@ -119,6 +119,153 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" + } ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727304402699199000.949e4021-ec8e-4d4b-b33b-2e1b91269fde" + } + } + } + }, { + "fullUrl" : "Practitioner/1727304402699199000.949e4021-ec8e-4d4b-b33b-2e1b91269fde", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727304402699199000.949e4021-ec8e-4d4b-b33b-2e1b91269fde", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "UUID" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:uuid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "BEETHOVEN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "BEETHOVEN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } } ] } }, { diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority.fhir index 65977d67328..0383bf570df 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority.fhir @@ -119,6 +119,154 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" + } ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727304420767220000.565b33ce-7934-48cc-a73e-8dc89591b0c7" + } + } + } + }, { + "fullUrl" : "Practitioner/1727304420767220000.565b33ce-7934-48cc-a73e-8dc89591b0c7", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727304420767220000.565b33ce-7934-48cc-a73e-8dc89591b0c7", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "UUID" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "Namespace", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "BEETHOVEN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "BEETHOVEN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } } ] } }, { diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir index 882f429ba09..9a8b0a681e0 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir @@ -119,6 +119,182 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" + } ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727304438324115000.3dfba4c9-5e76-4338-b2e9-89907e75241a" + } + } + } + }, { + "fullUrl" : "Organization/1727304438317825000.e129e05b-da22-41c5-8c56-ae39fdf7240c", + "resource" : { + "resourceType" : "Organization", + "id" : "1727304438317825000.e129e05b-da22-41c5-8c56-ae39fdf7240c", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "Namespace" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } ] + }, + "value" : "AssigningOrganization" + } ] + } + }, { + "fullUrl" : "Practitioner/1727304438324115000.3dfba4c9-5e76-4338-b2e9-89907e75241a", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727304438324115000.3dfba4c9-5e76-4338-b2e9-89907e75241a", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type", + "valueCode" : "AssigningOrganization" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.21", + "valueString" : "PHD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.17", + "extension" : [ { + "url" : "XCN.17.2", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.17.1", + "valueString" : "20220501102531-0400" + } ] + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "value" : "123", + "assigner" : { + "reference" : "Organization/1727304438317825000.e129e05b-da22-41c5-8c56-ae39fdf7240c" + } + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "BEETHOVEN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "BEETHOVEN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "PHD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } } ] } }, { diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn19-20-populated-xcn17-empty.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn19-20-populated-xcn17-empty.fhir index 0036b190730..1fe159927a1 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn19-20-populated-xcn17-empty.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn19-20-populated-xcn17-empty.fhir @@ -119,6 +119,181 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString" : "OBR" + } ], + "collection" : { + "collector" : { + "reference" : "Practitioner/1727304456307569000.987a27c7-80ce-4124-aafe-85d3216af5fe" + } + } + } + }, { + "fullUrl" : "Organization/1727304456300587000.4cfb13ca-0b46-46e6-bc24-e0eebdae5f5e", + "resource" : { + "resourceType" : "Organization", + "id" : "1727304456300587000.4cfb13ca-0b46-46e6-bc24-e0eebdae5f5e", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "Namespace" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "L" + } ] + }, + "value" : "AssigningOrganization" + } ] + } + }, { + "fullUrl" : "Practitioner/1727304456307569000.987a27c7-80ce-4124-aafe-85d3216af5fe", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1727304456307569000.987a27c7-80ce-4124-aafe-85d3216af5fe", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type", + "valueCode" : "AssigningOrganization" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "L" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "value" : "1", + "assigner" : { + "reference" : "Organization/1727304456300587000.4cfb13ca-0b46-46e6-bc24-e0eebdae5f5e" + } + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "BEETHOVEN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "BEETHOVEN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } } ] } }, { From 9b4f36c6dadabaa93480b55a136712eae539b311 Mon Sep 17 00:00:00 2001 From: Josh Fisk Date: Fri, 25 Oct 2024 12:50:03 -0700 Subject: [PATCH 02/34] Update ORM mappings (#16299) * Create ORM integration tests * Adding ORM Java classes * Updating ORM/OML Mappings * Updating existing configuration tests with newly available fhir mappings * Accidentally left a comment in * And another one * Updating code comment with issue link * Order Detail Segment comment --- prime-router/build.gradle.kts | 1 + .../HL7/catchall/hl7/message/OML_O21.yml | 2 +- .../HL7/catchall/hl7/message/ORM_O01.yml | 50 +- .../catchall/hl7/segments/OBX/Observation.yml | 8 - .../hl7/segments/ORC/ServiceRequest.yml | 2 +- .../group/ORM_O01_OBSERVATION.java | 152 + .../fhirinventory/group/ORM_O01_ORDER.java | 244 + .../group/ORM_O01_ORDER_DETAIL.java | 363 + .../fhirinventory/group/ORM_O01_PATIENT.java | 329 + .../group/ORM_O01_PATIENT_VISIT.java | 95 + .../fhirinventory/message/ORM_O01.java | 243 + .../main/kotlin/fhirengine/utils/HL7Reader.kt | 17 +- .../OML_O21/base/patient/patient.yml | 7 + .../catchall/ormo01/ORMO01Full.kt | 19 + ...mple_orm_20230809-001-with-enrichment.fhir | 1978 +++-- .../HL7_to_FHIR/sample_orm_20230809-001.fhir | 1978 +++-- .../catchall/ormo01/orm_o01-full.fhir | 6469 +++++++++++++++++ .../catchall/ormo01/orm_o01-full.hl7 | 10 + 18 files changed, 10453 insertions(+), 1514 deletions(-) create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/ORM_O01.java create mode 100644 prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/ormo01/ORMO01Full.kt create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7 diff --git a/prime-router/build.gradle.kts b/prime-router/build.gradle.kts index 267caf5989d..ec93feb98ce 100644 --- a/prime-router/build.gradle.kts +++ b/prime-router/build.gradle.kts @@ -907,6 +907,7 @@ dependencies { implementation("ca.uhn.hapi.fhir:org.hl7.fhir.r4:6.3.24") implementation("ca.uhn.hapi:hapi-base:2.5.1") implementation("ca.uhn.hapi:hapi-structures-v251:2.5.1") + implementation("ca.uhn.hapi:hapi-structures-v26:2.5.1") implementation("ca.uhn.hapi:hapi-structures-v27:2.5.1") implementation("com.googlecode.libphonenumber:libphonenumber:8.13.46") implementation("org.thymeleaf:thymeleaf:3.1.2.RELEASE") diff --git a/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml b/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml index 367e43669a8..0ea61641d00 100644 --- a/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml +++ b/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml @@ -49,7 +49,7 @@ resources: - .PV2 - MSH - - resourceName: OMLObservation + - resourceName: OrderObservation segment: .OBSERVATION_REQUEST.OBSERVATION.OBX group: ORDER resourcePath: segments/OBX/Observation diff --git a/prime-router/metadata/HL7/catchall/hl7/message/ORM_O01.yml b/prime-router/metadata/HL7/catchall/hl7/message/ORM_O01.yml index f437b25ae5b..ba4e40eb4a8 100644 --- a/prime-router/metadata/HL7/catchall/hl7/message/ORM_O01.yml +++ b/prime-router/metadata/HL7/catchall/hl7/message/ORM_O01.yml @@ -8,27 +8,38 @@ resources: repeats: false isReferenced: false + - resourceName: Provenance + segment: MSH + resourcePath: segments/MSH/Provenance-Source + + - resourceName: Provenance + segment: MSH + resourcePath: segments/MSH/Provenance-Transformation + - resourceName: Patient segment: .PID group: PATIENT resourcePath: segments/PID/Patient isReferenced: true repeats: false + additionalSegments: + - .PD1 + - .NTE - - resourceName: ServiceRequest - segment: .ORC - group: ORDER - resourcePath: segments/ORC/ServiceRequest - repeats: true + - resourceName: Provenance + segment: .PID + group: PATIENT + resourcePath: segments/PID/Provenance-Patient + + - resourceName: Encounter + segment: .PV1 + group: PATIENT.PATIENT_VISIT + resourcePath: segments/PV1/Encounter isReferenced: true additionalSegments: - - .ORDER_DETAIL.OBR - - .ORDER_DETAIL.NTE - - PATIENT.PATIENT_VISIT.PV1 - - MSH - - PATIENT.PID + - .PV2 - - resourceName: Observation + - resourceName: OrderObservation segment: .ORDER_DETAIL.OBSERVATION.OBX group: ORDER resourcePath: segments/OBX/Observation @@ -38,15 +49,16 @@ resources: - .ORC - .ORDER_DETAIL.OBR - .ORDER_DETAIL.OBSERVATION.NTE - - MSH - - resourceName: Specimen - segment: .OBR - group: ORDER.ORDER_DETAIL - resourcePath: segments/SPM/Specimen + - resourceName: ServiceRequest + segment: .ORC + group: ORDER + resourcePath: segments/ORC/ServiceRequest repeats: true isReferenced: true additionalSegments: - - .OBSERVATION.OBX - - .OBSERVATION.NTE - - MSH \ No newline at end of file + - .ORDER_DETAIL.OBR + - .ORDER_DETAIL.NTE + - PATIENT.PATIENT_VISIT.PV1 + - PATIENT.PID + - .ORDER_DETAIL.OBSERVATION.OBX \ No newline at end of file diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/OBX/Observation.yml b/prime-router/metadata/HL7/catchall/hl7/segments/OBX/Observation.yml index c7be226e804..d32f763436c 100644 --- a/prime-router/metadata/HL7/catchall/hl7/segments/OBX/Observation.yml +++ b/prime-router/metadata/HL7/catchall/hl7/segments/OBX/Observation.yml @@ -10,14 +10,6 @@ resourceType: Observation # OBX.18 is repeatable but maps to device on Observation which is not, so it's all captured in OBXExtension # OBX.20 is repeatable but maps to bodySite on Observation which is not, so it's all captured in OBXExtension # Not implementing OBX.22 not in mapping deprecated in NIST -# Not implementing OBX.26 not in mapping not in NIST -# Not implementing OBX.27 not in mapping not in NIST -# Not implementing OBX.28 not in mapping not in NIST -# Not implementing OBX.29 not in mapping not in NIST -# Not implementing OBX.31 not in mapping not in NIST -# Not implementing OBX.32 not in mapping not in NIST -# Not implementing OBX.33 as it's not in the NIST spec the logic in the inventory cannot be implemented in the library - id: type: STRING diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml index b117581e184..989bf70cd12 100644 --- a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml +++ b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml @@ -366,7 +366,7 @@ supportingInfo: generateList: true valueOf: datatype/Reference expressionType: resource - specs: $OMLObservation + specs: $OrderObservation useGroup: true note: diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java new file mode 100644 index 00000000000..1c11c2f78a1 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java @@ -0,0 +1,152 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import ca.uhn.hl7v2.model.*; +import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX; + +/** + *

Represents a ORM_O01_OBSERVATION group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ * + */ +//@SuppressWarnings("unused") +public class ORM_O01_OBSERVATION extends AbstractGroup { + + /** + * Creates a new ORM_O01_OBSERVATION group + */ + public ORM_O01_OBSERVATION(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(OBX.class, true, false, false); + this.add(NTE.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating ORM_O01_OBSERVATION - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * OBX (Observation/Result) - creates it if necessary + */ + public OBX getOBX() { + OBX retVal = getTyped("OBX", OBX.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + */ + public NTE getNTE() { + NTE retVal = getTyped("NTE", NTE.class); + return retVal; + } + + /** + * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { + NTE retVal = getTyped("NTE", rep, NTE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of NTE + */ + public int getNTEReps() { + return getReps("NTE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition("NTE", structure, rep); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { + return (NTE)super.insertRepetition("NTE", rep); + } + + /** + * Removes a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { + return (NTE)super.removeRepetition("NTE", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java new file mode 100644 index 00000000000..da3457b501a --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java @@ -0,0 +1,244 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.model.v27.segment.*; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC; + +/** + *

Represents a ORM_O01_ORDER group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: ORC (Common Order)
  • + *
  • 2: ORM_O01_ORDER_DETAIL (a Group object) optional
  • + *
  • 3: FT1 (Financial Transaction) optional repeating
  • + *
  • 4: CTI (Clinical Trial Identification) optional repeating
  • + *
  • 5: BLG (Billing) optional
  • + *
+ */ +//@SuppressWarnings("unused") +public class ORM_O01_ORDER extends AbstractGroup { + + /** + * Creates a new ORM_O01_ORDER group + */ + public ORM_O01_ORDER(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(ORC.class, true, false, false); + this.add(ORM_O01_ORDER_DETAIL.class, false, false, false); + this.add(FT1.class, false, true, false); + this.add(CTI.class, false, true, false); + this.add(BLG.class, false, false, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating ORM_O01_ORDER - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * ORC (Common Order) - creates it if necessary + */ + public ORC getORC() { + ORC retVal = getTyped("ORC", ORC.class); + return retVal; + } + + /** + * Returns + * ORDER_DETAIL (a Group object) - creates it if necessary + */ + public ORM_O01_ORDER_DETAIL getORDER_DETAIL() { + ORM_O01_ORDER_DETAIL retVal = getTyped("ORDER_DETAIL", ORM_O01_ORDER_DETAIL.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * FT1 (Financial Transaction) - creates it if necessary + */ + public FT1 getFT1() { + FT1 retVal = getTyped("FT1", FT1.class); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1 (Financial Transaction) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public FT1 getFT1(int rep) { + FT1 retVal = getTyped("FT1", rep, FT1.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of FT1 + */ + public int getFT1Reps() { + return getReps("FT1"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of FT1. + *

+ * Note that unlike {@link #getFT1()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getFT1All() throws HL7Exception { + return getAllAsList("FT1", FT1.class); + } + + /** + * Inserts a specific repetition of FT1 (Financial Transaction) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertFT1(FT1 structure, int rep) throws HL7Exception { + super.insertRepetition("FT1", structure, rep); + } + + /** + * Inserts a specific repetition of FT1 (Financial Transaction) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public FT1 insertFT1(int rep) throws HL7Exception { + return (FT1)super.insertRepetition("FT1", rep); + } + + /** + * Removes a specific repetition of FT1 (Financial Transaction) + * @see AbstractGroup#removeRepetition(String, int) + */ + public FT1 removeFT1(int rep) throws HL7Exception { + return (FT1)super.removeRepetition("FT1", rep); + } + + /** + * Returns + * the first repetition of + * CTI (Clinical Trial Identification) - creates it if necessary + */ + public CTI getCTI() { + CTI retVal = getTyped("CTI", CTI.class); + return retVal; + } + + /** + * Returns a specific repetition of + * CTI (Clinical Trial Identification) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public CTI getCTI(int rep) { + CTI retVal = getTyped("CTI", rep, CTI.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of CTI + */ + public int getCTIReps() { + return getReps("CTI"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of CTI. + *

+ * Note that unlike {@link #getCTI()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getCTIAll() throws HL7Exception { + return getAllAsList("CTI", CTI.class); + } + + /** + * Inserts a specific repetition of CTI (Clinical Trial Identification) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertCTI(CTI structure, int rep) throws HL7Exception { + super.insertRepetition("CTI", structure, rep); + } + + /** + * Inserts a specific repetition of CTI (Clinical Trial Identification) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public CTI insertCTI(int rep) throws HL7Exception { + return (CTI)super.insertRepetition("CTI", rep); + } + + /** + * Removes a specific repetition of CTI (Clinical Trial Identification) + * @see AbstractGroup#removeRepetition(String, int) + */ + public CTI removeCTI(int rep) throws HL7Exception { + return (CTI)super.removeRepetition("CTI", rep); + } + + /** + * Returns + * BLG (Billing) - creates it if necessary + */ + public BLG getBLG() { + BLG retVal = getTyped("BLG", BLG.class); + return retVal; + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java new file mode 100644 index 00000000000..391cfdc6ed3 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java @@ -0,0 +1,363 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.v27.segment.*; +import ca.uhn.hl7v2.model.*; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR; + +/** + *

Represents a ORM_O01_ORDER_DETAIL group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: OBR (Observation Request) choice
  • + *
  • 2: RQD (Requisition Detail) choice
  • + *
  • 3: RQ1 (Requisition Detail-1) choice
  • + *
  • 4: RXO (Pharmacy/Treatment Order) choice
  • + *
  • 5: ODS (Dietary Orders, Supplements, and Preferences) choice
  • + *
  • 6: ODT (Diet Tray Instructions) choice
  • + *
  • 7: NTE (Notes and Comments) optional repeating
  • + *
  • 8: CTD (Contact Data) optional
  • + *
  • 9: DG1 (Diagnosis) optional repeating
  • + *
  • 10: ORM_O01_OBSERVATION (a Group object) optional repeating
  • + *
+ *

+ * Note that this structure has "choice" elements. This means that one of the + * structures above marked as "choice" must be present, but no more than one. + *

+ */ +//@SuppressWarnings("unused") +public class ORM_O01_ORDER_DETAIL extends AbstractGroup { + + /** + * Creates a new ORM_O01_ORDER_DETAIL group + */ + public ORM_O01_ORDER_DETAIL(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + // Note: According to https://hl7-definition.caristix.com/v2/HL7v2.5.1/TriggerEvents/ORM_O01 there is also an + // "ORDER DETAIL SEGMENT" that is a part of the ORDER DETAIL. This is not actually built out here as that segment + // is representational of the "choice" segments that are built here (OBR, RQD, RQ1, RXD, ODS, ODT). + private void init(ModelClassFactory factory) { + try { + this.add(OBR.class, true, false, true); + this.add(RQD.class, true, false, true); + this.add(RQ1.class, true, false, true); + this.add(RXO.class, true, false, true); + this.add(ODS.class, true, false, true); + this.add(ODT.class, true, false, true); + this.add(NTE.class, false, true, false); + this.add(CTD.class, false, false, false); + this.add(DG1.class, false, true, false); + this.add(ORM_O01_OBSERVATION.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating ORM_O01_ORDER_DETAIL - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * OBR (Observation Request) - creates it if necessary + */ + public OBR getOBR() { + OBR retVal = getTyped("OBR", OBR.class); + return retVal; + } + + /** + * Returns + * RQD (Requisition Detail) - creates it if necessary + */ + public RQD getRQD() { + RQD retVal = getTyped("RQD", RQD.class); + return retVal; + } + + /** + * Returns + * RQ1 (Requisition Detail-1) - creates it if necessary + */ + public RQ1 getRQ1() { + RQ1 retVal = getTyped("RQ1", RQ1.class); + return retVal; + } + + /** + * Returns + * RXO (Pharmacy/Treatment Order) - creates it if necessary + */ + public RXO getRXO() { + RXO retVal = getTyped("RXO", RXO.class); + return retVal; + } + + /** + * Returns + * ODS (Dietary Orders, Supplements, and Preferences) - creates it if necessary + */ + public ODS getODS() { + ODS retVal = getTyped("ODS", ODS.class); + return retVal; + } + + /** + * Returns + * ODT (Diet Tray Instructions) - creates it if necessary + */ + public ODT getODT() { + ODT retVal = getTyped("ODT", ODT.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + */ + public NTE getNTE() { + NTE retVal = getTyped("NTE", NTE.class); + return retVal; + } + + /** + * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { + NTE retVal = getTyped("NTE", rep, NTE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of NTE + */ + public int getNTEReps() { + return getReps("NTE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition("NTE", structure, rep); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { + return (NTE)super.insertRepetition("NTE", rep); + } + + /** + * Removes a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { + return (NTE)super.removeRepetition("NTE", rep); + } + + /** + * Returns + * CTD (Contact Data) - creates it if necessary + */ + public CTD getCTD() { + CTD retVal = getTyped("CTD", CTD.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * DG1 (Diagnosis) - creates it if necessary + */ + public DG1 getDG1() { + DG1 retVal = getTyped("DG1", DG1.class); + return retVal; + } + + /** + * Returns a specific repetition of + * DG1 (Diagnosis) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public DG1 getDG1(int rep) { + DG1 retVal = getTyped("DG1", rep, DG1.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of DG1 + */ + public int getDG1Reps() { + return getReps("DG1"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of DG1. + *

+ * Note that unlike {@link #getDG1()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getDG1All() throws HL7Exception { + return getAllAsList("DG1", DG1.class); + } + + /** + * Inserts a specific repetition of DG1 (Diagnosis) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertDG1(DG1 structure, int rep) throws HL7Exception { + super.insertRepetition("DG1", structure, rep); + } + + /** + * Inserts a specific repetition of DG1 (Diagnosis) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public DG1 insertDG1(int rep) throws HL7Exception { + return (DG1)super.insertRepetition("DG1", rep); + } + + /** + * Removes a specific repetition of DG1 (Diagnosis) + * @see AbstractGroup#removeRepetition(String, int) + */ + public DG1 removeDG1(int rep) throws HL7Exception { + return (DG1)super.removeRepetition("DG1", rep); + } + + /** + * Returns + * the first repetition of + * OBSERVATION (a Group object) - creates it if necessary + */ + public ORM_O01_OBSERVATION getOBSERVATION() { + ORM_O01_OBSERVATION retVal = getTyped("OBSERVATION", ORM_O01_OBSERVATION.class); + return retVal; + } + + /** + * Returns a specific repetition of + * OBSERVATION (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public ORM_O01_OBSERVATION getOBSERVATION(int rep) { + ORM_O01_OBSERVATION retVal = getTyped("OBSERVATION", rep, ORM_O01_OBSERVATION.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of OBSERVATION + */ + public int getOBSERVATIONReps() { + return getReps("OBSERVATION"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of OBSERVATION. + *

+ *

+ * Note that unlike {@link #getOBSERVATION()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getOBSERVATIONAll() throws HL7Exception { + return getAllAsList("OBSERVATION", ORM_O01_OBSERVATION.class); + } + + /** + * Inserts a specific repetition of OBSERVATION (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertOBSERVATION(ORM_O01_OBSERVATION structure, int rep) throws HL7Exception { + super.insertRepetition("OBSERVATION", structure, rep); + } + + /** + * Inserts a specific repetition of OBSERVATION (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public ORM_O01_OBSERVATION insertOBSERVATION(int rep) throws HL7Exception { + return (ORM_O01_OBSERVATION)super.insertRepetition("OBSERVATION", rep); + } + + /** + * Removes a specific repetition of OBSERVATION (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public ORM_O01_OBSERVATION removeOBSERVATION(int rep) throws HL7Exception { + return (ORM_O01_OBSERVATION)super.removeRepetition("OBSERVATION", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java new file mode 100644 index 00000000000..4fed5e406ae --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java @@ -0,0 +1,329 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.model.v27.segment.*; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import ca.uhn.hl7v2.model.*; +import ca.uhn.hl7v2.model.v26.group.ORM_O01_INSURANCE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PID; + +/** + *

Represents a ORM_O01_PATIENT group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: PID (Patient Identification)
  • + *
  • 2: PD1 (Patient Additional Demographic) optional
  • + *
  • 3: NTE (Notes and Comments) optional repeating
  • + *
  • 4: ORM_O01_PATIENT_VISIT (a Group object) optional
  • + *
  • 5: ORM_O01_INSURANCE (a Group object) optional repeating
  • + *
  • 6: GT1 (Guarantor) optional
  • + *
  • 7: AL1 (Patient Allergy Information) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class ORM_O01_PATIENT extends AbstractGroup { + + /** + * Creates a new ORM_O01_PATIENT group + */ + public ORM_O01_PATIENT(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(PID.class, true, false, false); + this.add(PD1.class, false, false, false); + this.add(NTE.class, false, true, false); + this.add(ORM_O01_PATIENT_VISIT.class, false, false, false); + // When https://github.com/CDCgov/prime-reportstream/issues/16307 is completed, and we build the java class for + // ORM_O01_INSURANCE, the hapi v26 dependencies in the gradle build can be removed. + this.add(ORM_O01_INSURANCE.class, false, true, false); + this.add(GT1.class, false, false, false); + this.add(AL1.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating ORM_O01_PATIENT - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * PID (Patient Identification) - creates it if necessary + */ + public PID getPID() { + PID retVal = getTyped("PID", PID.class); + return retVal; + } + + /** + * Returns + * PD1 (Patient Additional Demographic) - creates it if necessary + */ + public PD1 getPD1() { + PD1 retVal = getTyped("PD1", PD1.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + */ + public NTE getNTE() { + NTE retVal = getTyped("NTE", NTE.class); + return retVal; + } + + /** + * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { + NTE retVal = getTyped("NTE", rep, NTE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of NTE + */ + public int getNTEReps() { + return getReps("NTE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition("NTE", structure, rep); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { + return (NTE)super.insertRepetition("NTE", rep); + } + + /** + * Removes a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { + return (NTE)super.removeRepetition("NTE", rep); + } + + /** + * Returns + * PATIENT_VISIT (a Group object) - creates it if necessary + */ + public ORM_O01_PATIENT_VISIT getPATIENT_VISIT() { + ORM_O01_PATIENT_VISIT retVal = getTyped("PATIENT_VISIT", ORM_O01_PATIENT_VISIT.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * INSURANCE (a Group object) - creates it if necessary + */ + public ORM_O01_INSURANCE getINSURANCE() { + ORM_O01_INSURANCE retVal = getTyped("INSURANCE", ORM_O01_INSURANCE.class); + return retVal; + } + + /** + * Returns a specific repetition of + * INSURANCE (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public ORM_O01_INSURANCE getINSURANCE(int rep) { + ORM_O01_INSURANCE retVal = getTyped("INSURANCE", rep, ORM_O01_INSURANCE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of INSURANCE + */ + public int getINSURANCEReps() { + return getReps("INSURANCE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of INSURANCE. + *

+ *

+ * Note that unlike {@link #getINSURANCE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getINSURANCEAll() throws HL7Exception { + return getAllAsList("INSURANCE", ORM_O01_INSURANCE.class); + } + + /** + * Inserts a specific repetition of INSURANCE (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertINSURANCE(ORM_O01_INSURANCE structure, int rep) throws HL7Exception { + super.insertRepetition("INSURANCE", structure, rep); + } + + /** + * Inserts a specific repetition of INSURANCE (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public ORM_O01_INSURANCE insertINSURANCE(int rep) throws HL7Exception { + return (ORM_O01_INSURANCE)super.insertRepetition("INSURANCE", rep); + } + + /** + * Removes a specific repetition of INSURANCE (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public ORM_O01_INSURANCE removeINSURANCE(int rep) throws HL7Exception { + return (ORM_O01_INSURANCE)super.removeRepetition("INSURANCE", rep); + } + + /** + * Returns + * GT1 (Guarantor) - creates it if necessary + */ + public GT1 getGT1() { + GT1 retVal = getTyped("GT1", GT1.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * AL1 (Patient Allergy Information) - creates it if necessary + */ + public AL1 getAL1() { + AL1 retVal = getTyped("AL1", AL1.class); + return retVal; + } + + /** + * Returns a specific repetition of + * AL1 (Patient Allergy Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public AL1 getAL1(int rep) { + AL1 retVal = getTyped("AL1", rep, AL1.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of AL1 + */ + public int getAL1Reps() { + return getReps("AL1"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of AL1. + *

+ *

+ * Note that unlike {@link #getAL1()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getAL1All() throws HL7Exception { + return getAllAsList("AL1", AL1.class); + } + + /** + * Inserts a specific repetition of AL1 (Patient Allergy Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertAL1(AL1 structure, int rep) throws HL7Exception { + super.insertRepetition("AL1", structure, rep); + } + + /** + * Inserts a specific repetition of AL1 (Patient Allergy Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public AL1 insertAL1(int rep) throws HL7Exception { + return (AL1)super.insertRepetition("AL1", rep); + } + + /** + * Removes a specific repetition of AL1 (Patient Allergy Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public AL1 removeAL1(int rep) throws HL7Exception { + return (AL1)super.removeRepetition("AL1", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java new file mode 100644 index 00000000000..d6d939eeff5 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java @@ -0,0 +1,95 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.model.v27.segment.*; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import ca.uhn.hl7v2.model.*; + +/** + *

Represents a ORM_O01_PATIENT_VISIT group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: PV1 (Patient Visit)
  • + *
  • 2: PV2 (Patient Visit - Additional Information) optional
  • + *
+ */ +//@SuppressWarnings("unused") +public class ORM_O01_PATIENT_VISIT extends AbstractGroup { + + /** + * Creates a new ORM_O01_PATIENT_VISIT group + */ + public ORM_O01_PATIENT_VISIT(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(PV1.class, true, false, false); + this.add(PV2.class, false, false, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating ORM_O01_PATIENT_VISIT - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * PV1 (Patient Visit) - creates it if necessary + */ + public PV1 getPV1() { + PV1 retVal = getTyped("PV1", PV1.class); + return retVal; + } + + /** + * Returns + * PV2 (Patient Visit - Additional Information) - creates it if necessary + */ + public PV2 getPV2() { + PV2 retVal = getTyped("PV2", PV2.class); + return retVal; + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/ORM_O01.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/ORM_O01.java new file mode 100644 index 00000000000..13a0243a624 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/ORM_O01.java @@ -0,0 +1,243 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.message; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.AbstractMessage; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.model.v27.segment.MSH; +import ca.uhn.hl7v2.model.v27.segment.NTE; +import ca.uhn.hl7v2.parser.DefaultModelClassFactory; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.group.ORM_O01_PATIENT; +import fhirengine.translation.hl7.structures.fhirinventory.group.ORM_O01_ORDER; + +/** + *

Represents a ORM_O01 message structure (see chapter 4.4.1). This structure contains the + * following elements:

+ *
    + *
  • 1: MSH (Message Header)
  • + *
  • 2: NTE (Notes and Comments) optional repeating
  • + *
  • 3: ORM_O01_PATIENT (a Group object) optional
  • + *
  • 4: ORM_O01_ORDER (a Group object) repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class ORM_O01 extends AbstractMessage { + + /** + * Creates a new ORM_O01 message with DefaultModelClassFactory. + */ + public ORM_O01() { this(new DefaultModelClassFactory()); } + + /** + * Creates a new ORM_O01 message with custom ModelClassFactory. + */ + public ORM_O01(ModelClassFactory factory) { + super(factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(MSH.class, true, false); + this.add(NTE.class, false, true); + this.add(ORM_O01_PATIENT.class, false, false); + this.add(ORM_O01_ORDER.class, true, true); + } catch(HL7Exception e) { + log.error("Unexpected error creating ORM_O01 - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { return "2.7"; } + + /** + *

+ * Returns + * MSH (Message Header) - creates it if necessary + *

+ */ + public MSH getMSH() { return getTyped("MSH", MSH.class); } + + /** + *

+ * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + *

+ */ + public NTE getNTE() { return getTyped("NTE", NTE.class); } + + /** + *

+ * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + *

+ * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { return getTyped("NTE", rep, NTE.class); } + + /** + *

+ * Returns the number of existing repetitions of NTE + *

+ */ + public int getNTEReps() { return getReps("NTE"); } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + *

+ * Inserts a specific repetition of NTE (Notes and Comments) + *

+ * + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition( "NTE", structure, rep); + } + + /** + *

+ * Inserts a specific repetition of NTE (Notes and Comments) + *

+ * + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { return (NTE)super.insertRepetition("NTE", rep); } + + /** + *

+ * Removes a specific repetition of NTE (Notes and Comments) + *

+ * + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { return (NTE)super.removeRepetition("NTE", rep); } + + /** + *

+ * Returns + * PATIENT (a Group object) - creates it if necessary + *

+ */ + public ORM_O01_PATIENT getPATIENT() { return getTyped("PATIENT", ORM_O01_PATIENT.class); } + + /** + *

+ * Returns + * the first repetition of + * ORDER (a Group object) - creates it if necessary + *

+ */ + public ORM_O01_ORDER getORDER() { return getTyped("ORDER", ORM_O01_ORDER.class); } + + /** + *

+ * Returns a specific repetition of + * ORDER (a Group object) - creates it if necessary + *

+ * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public ORM_O01_ORDER getORDER(int rep) { return getTyped("ORDER", rep, ORM_O01_ORDER.class); } + + /** + *

+ * Returns the number of existing repetitions of ORDER + *

+ */ + public int getORDERReps() { return getReps("ORDER"); } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of ORDER. + *

+ * Note that unlike {@link #getORDER()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getORDERAll() throws HL7Exception { + return getAllAsList("ORDER", ORM_O01_ORDER.class); + } + + /** + *

+ * Inserts a specific repetition of ORDER (a Group object) + *

+ * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertORDER(ORM_O01_ORDER structure, int rep) throws HL7Exception { + super.insertRepetition( "ORDER", structure, rep); + } + + /** + *

+ * Inserts a specific repetition of ORDER (a Group object) + *

+ * @see AbstractGroup#insertRepetition(Structure, int) + */ + public ORM_O01_ORDER insertORDER(int rep) throws HL7Exception { + return (ORM_O01_ORDER)super.insertRepetition("ORDER", rep); + } + + /** + *

+ * Removes a specific repetition of ORDER (a Group object) + *

+ * @see AbstractGroup#removeRepetition(String, int) + */ + public ORM_O01_ORDER removeORDER(int rep) throws HL7Exception { + return (ORM_O01_ORDER)super.removeRepetition("ORDER", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt index bc4b8c4fea2..037cac9f388 100644 --- a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt +++ b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt @@ -13,6 +13,7 @@ import ca.uhn.hl7v2.util.Hl7InputStreamMessageStringIterator import ca.uhn.hl7v2.util.Terser import ca.uhn.hl7v2.validation.ValidationException import ca.uhn.hl7v2.validation.impl.ValidationContextFactory +import fhirengine.translation.hl7.structures.fhirinventory.message.ORM_O01 import fhirengine.translation.hl7.structures.fhirinventory.message.ORU_R01 import fhirengine.utils.ReportStreamCanonicalModelClassFactory import gov.cdc.prime.router.ActionLogger @@ -304,11 +305,17 @@ class HL7Reader(private val actionLogger: ActionLogger) : Logging { ReportStreamCanonicalModelClassFactory(ORU_R01::class.java), ) } else if (hl7MessageType?.msh93 == "OML_O21") { - DefaultHapiContext( - ParserConfiguration(), - ValidationContextFactory.noValidation(), - ReportStreamCanonicalModelClassFactory(v27_OML_O21::class.java), - ) + DefaultHapiContext( + ParserConfiguration(), + ValidationContextFactory.noValidation(), + ReportStreamCanonicalModelClassFactory(v27_OML_O21::class.java), + ) + } else if (hl7MessageType?.msh93 == "ORM_O01") { + DefaultHapiContext( + ParserConfiguration(), + ValidationContextFactory.noValidation(), + ReportStreamCanonicalModelClassFactory(ORM_O01::class.java), + ) } else { DefaultHapiContext(ValidationContextFactory.noValidation()) } diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml index 6923b49a993..dc0d8064c01 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml @@ -22,6 +22,13 @@ elements: resource: '%resource.extension(%`rsext-pd1-patient-additional-demographic`)' schema: classpath:/metadata/hl7_mapping/resources/Patient/PD1Extension.yml + - name: patient-note + resource: '%resource.extension(%`rsext-patient-notes`).value' + schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml + resourceIndex: noteIndex + constants: + hl7NotePath: '%{hl7SegmentGroup}' + - name: related-person-nk1 resource: 'Bundle.entry.resource.ofType(RelatedPerson).where(extension(%`rsext-hl7v2Segment`).value = "NK1" and patient.resolve().id = %resource.id)' resourceIndex: relatedPersonIndex diff --git a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/ormo01/ORMO01Full.kt b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/ormo01/ORMO01Full.kt new file mode 100644 index 00000000000..e40b0eb3f5c --- /dev/null +++ b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/ormo01/ORMO01Full.kt @@ -0,0 +1,19 @@ +package gov.cdc.prime.router.datatests.mappinginventory.ormo01 + +import gov.cdc.prime.router.datatests.mappinginventory.verifyHL7ToFHIRToHL7Mapping +import org.junit.jupiter.api.Test + +class ORMO01Full { + + // There are no ORM mappings for FHIR -> HL7. The HL7 -> FHIR -> HL7 and FHIR -> HL7 scenarios here verify, + // with the exception of MessageHeader.eventCoding, that FHIR crafted through ORM is fully mapped with OML mappings. + @Test + fun `test ORM_O01 all segments`() { + assert( + verifyHL7ToFHIRToHL7Mapping( + "catchall/ormo01/orm_o01-full", + outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml" + ).passed + ) + } +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir index 79b994c95a1..8e4acc4e7c9 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir @@ -1,21 +1,21 @@ { "resourceType" : "Bundle", - "id" : "1707847039699548000.20a09324-cf16-43bc-9328-52840bc77a0a", + "id" : "1729550865636362000.0dd0d635-e79d-42ff-a976-30961d5309b6", "meta" : { - "lastUpdated" : "2024-02-13T11:57:19.729-06:00" + "lastUpdated" : "2024-10-21T15:47:45.640-07:00" }, "identifier" : { "system" : "https://reportstream.cdc.gov/prime-router", "value" : "31808297" }, "type" : "message", - "timestamp" : "2023-05-06T05:29:16.000-05:00", + "timestamp" : "2023-05-06T03:29:16.000-07:00", "entry" : [ { - "fullUrl" : "MessageHeader/87c2d0db-6f31-3666-b9e2-7152e039c11f", + "fullUrl" : "MessageHeader/1729550865686591000.8eab0b79-1745-4db4-a152-f3ffa58d7e29", "resource" : { "resourceType" : "MessageHeader", - "id" : "87c2d0db-6f31-3666-b9e2-7152e039c11f", + "id" : "1729550865686591000.8eab0b79-1745-4db4-a152-f3ffa58d7e29", "meta" : { "tag" : [ { @@ -129,12 +129,12 @@ ], "name" : "NATUS", "receiver" : { - "reference" : "Organization/1707847039803464000.ea58b9a4-d88c-4058-88ad-f7c5ded76902" + "reference" : "Organization/1729550865685826000.122e2147-d1ba-462e-8fbb-ea52e6700fc4" } } ], "sender" : { - "reference" : "Organization/1707847039773359000.26190dfc-35d6-4bdc-bac2-54a57ab2aaac" + "reference" : "Organization/1729550865665105000.f7c72513-3f5a-4185-a6af-a3361529e59e" }, "source" : { "extension" : [ @@ -162,10 +162,10 @@ } }, { - "fullUrl" : "Organization/1707847039773359000.26190dfc-35d6-4bdc-bac2-54a57ab2aaac", + "fullUrl" : "Organization/1729550865665105000.f7c72513-3f5a-4185-a6af-a3361529e59e", "resource" : { "resourceType" : "Organization", - "id" : "1707847039773359000.26190dfc-35d6-4bdc-bac2-54a57ab2aaac", + "id" : "1729550865665105000.f7c72513-3f5a-4185-a6af-a3361529e59e", "identifier" : [ { "extension" : [ @@ -197,10 +197,10 @@ } }, { - "fullUrl" : "Organization/1707847039803464000.ea58b9a4-d88c-4058-88ad-f7c5ded76902", + "fullUrl" : "Organization/1729550865685826000.122e2147-d1ba-462e-8fbb-ea52e6700fc4", "resource" : { "resourceType" : "Organization", - "id" : "1707847039803464000.ea58b9a4-d88c-4058-88ad-f7c5ded76902", + "id" : "1729550865685826000.122e2147-d1ba-462e-8fbb-ea52e6700fc4", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -239,16 +239,150 @@ } }, { - "fullUrl" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb", + "fullUrl" : "Provenance/1729550865908055000.e56840bd-f0a7-49f0-b01c-08b0cb1509ae", + "resource" : { + "resourceType" : "Provenance", + "id" : "1729550865908055000.e56840bd-f0a7-49f0-b01c-08b0cb1509ae", + "recorded" : "2023-05-06T05:29:16-05:00", + "activity" : { + "coding" : [ + { + "display" : "ORM^O01^ORM_O01" + } + ] + }, + "agent" : [ + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "author" + } + ] + }, + "who" : { + "reference" : "Organization/1729550865907582000.dbb11efa-3e75-4f25-a65b-e4183991b9c8" + } + } + ] + } + }, + { + "fullUrl" : "Organization/1729550865907582000.dbb11efa-3e75-4f25-a65b-e4183991b9c8", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550865907582000.dbb11efa-3e75-4f25-a65b-e4183991b9c8", + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } + ], + "value" : "Centracare" + }, + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "DNS" + } + ] + }, + "value" : "centracare.com" + } + ] + } + }, + { + "fullUrl" : "Provenance/1729550865915257000.813d1694-806e-4d26-8f17-cd25c54bcfd8", + "resource" : { + "resourceType" : "Provenance", + "id" : "1729550865915257000.813d1694-806e-4d26-8f17-cd25c54bcfd8", + "recorded" : "2024-10-21T15:47:45Z", + "policy" : [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity" : { + "coding" : [ + { + "code" : "v2-FHIR transformation" + } + ] + }, + "agent" : [ + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } + ] + }, + "who" : { + "reference" : "Organization/1729550865915010000.a42d35fb-5cd1-44d8-9f9e-fdc1c0585119" + } + } + ] + } + }, + { + "fullUrl" : "Organization/1729550865915010000.a42d35fb-5cd1-44d8-9f9e-fdc1c0585119", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550865915010000.a42d35fb-5cd1-44d8-9f9e-fdc1c0585119", + "identifier" : [ + { + "value" : "CDC PRIME - Atlanta" + }, + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb", "resource" : { "resourceType" : "Patient", - "id" : "1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb", + "id" : "1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", "extension" : [ { - "url" : "PID.8" + "url" : "PID.8", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "M" + } + ] + } }, { "url" : "PID.24", @@ -307,7 +441,7 @@ }, "value" : "11102779", "assigner" : { - "reference" : "Organization/1707847040212466000.839717a1-adb9-4b95-a629-3cb2455bbe9c" + "reference" : "Organization/1729550865920619000.8e047a23-279b-4e30-aaa9-d8870963e7e5" } } ], @@ -420,7 +554,7 @@ "link" : [ { "other" : { - "reference" : "RelatedPerson/1707847040228223000.eed99dd8-9b3a-4f18-8bf3-3e17975f6616" + "reference" : "RelatedPerson/1729550865926690000.e6fa0c78-e72f-4dd1-b1a3-4309fd31b5b3" }, "type" : "seealso" } @@ -428,10 +562,10 @@ } }, { - "fullUrl" : "Organization/1707847040212466000.839717a1-adb9-4b95-a629-3cb2455bbe9c", + "fullUrl" : "Organization/1729550865920619000.8e047a23-279b-4e30-aaa9-d8870963e7e5", "resource" : { "resourceType" : "Organization", - "id" : "1707847040212466000.839717a1-adb9-4b95-a629-3cb2455bbe9c", + "id" : "1729550865920619000.8e047a23-279b-4e30-aaa9-d8870963e7e5", "identifier" : [ { "extension" : [ @@ -446,10 +580,10 @@ } }, { - "fullUrl" : "RelatedPerson/1707847040228223000.eed99dd8-9b3a-4f18-8bf3-3e17975f6616", + "fullUrl" : "RelatedPerson/1729550865926690000.e6fa0c78-e72f-4dd1-b1a3-4309fd31b5b3", "resource" : { "resourceType" : "RelatedPerson", - "id" : "1707847040228223000.eed99dd8-9b3a-4f18-8bf3-3e17975f6616", + "id" : "1729550865926690000.e6fa0c78-e72f-4dd1-b1a3-4309fd31b5b3", "identifier" : [ { "extension" : [ @@ -468,520 +602,387 @@ } }, { - "fullUrl" : "ServiceRequest/1707847040256925000.2584ab72-0d21-475d-a0c8-7b387ea2f0fd", + "fullUrl" : "Provenance/1729550865934422000.a889d3dd-3f30-4bc1-83ea-c33528b438d1", "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1707847040256925000.2584ab72-0d21-475d-a0c8-7b387ea2f0fd", + "resourceType" : "Provenance", + "id" : "1729550865934422000.a889d3dd-3f30-4bc1-83ea-c33528b438d1", + "target" : [ + { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + } + ], + "recorded" : "2024-10-21T15:47:45Z", + "activity" : { + "coding" : [ + { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } + ] + } + } + }, + { + "fullUrl" : "Observation/1729550865936768000.530253cf-943d-4360-895c-8f3e276ab614", + "resource" : { + "resourceType" : "Observation", + "id" : "1729550865936768000.530253cf-943d-4360-895c-8f3e276ab614", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "NW" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "20230506052913-0500" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1707847040252066000.153d3558-35e2-4828-8a93-fff1afee50ae" - } - }, - { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1707847040252956000.3d97593b-e670-40a5-a230-ddb929e5af4c" - } + "url" : "OBX.2", + "valueId" : "NM" }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1707847040254368000.50514b93-84f6-4b7a-873b-68c878820d87" - } - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ - { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ + "url" : "OBX.6", + "valueCodeableConcept" : { + "coding" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "UCUM" } - ] + ], + "system" : "http://unitsofmeasure.org", + "code" : "g", + "display" : "gram" } - ], - "value" : "421832901" + ] } - } - ] - } - ], - "identifier" : [ - { - "extension" : [ + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url" : "OBX.29", + "valueId" : "QST" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] + "url" : "OBX.11", + "valueString" : "O" } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } - ] - }, - "value" : "421832901" + ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "8339-4", + "display" : "BIRTH WEIGHT MEASURED" + } + ] + }, "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, - "authoredOn" : "2023-05-06T05:29:13-05:00", - "_authoredOn" : { + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506052913-0500" + "valueString" : "20230506050000-0500" } ] }, - "requester" : { - "reference" : "PractitionerRole/1707847040245824000.44f7af0a-940c-495a-90bf-c7b29c1065bc" + "valueQuantity" : { + "value" : 1769.859285, + "unit" : "gram", + "system" : "UCUM", + "code" : "g" } } }, { - "fullUrl" : "Organization/1707847040246197000.f878df3a-5f70-4d4b-94c4-458c2cf2f17d", - "resource" : { - "resourceType" : "Organization", - "id" : "1707847040246197000.f878df3a-5f70-4d4b-94c4-458c2cf2f17d", - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } - ], - "value" : "NPI" - } - ] - } - }, - { - "fullUrl" : "Practitioner/1707847040247436000.31b0f5dd-7b8e-465c-8c25-5021636ad132", + "fullUrl" : "Observation/1729550865939115000.5a7416db-44bf-4e02-bca8-b6a3bfc74da2", "resource" : { - "resourceType" : "Practitioner", - "id" : "1707847040247436000.31b0f5dd-7b8e-465c-8c25-5021636ad132", + "resourceType" : "Observation", + "id" : "1729550865939115000.5a7416db-44bf-4e02-bca8-b6a3bfc74da2", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + "url" : "OBX.2", + "valueId" : "NM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url" : "OBX.6", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "UCUM" + } + ], + "system" : "http://unitsofmeasure.org", + "code" : "wk", + "display" : "week" + } + ] + } + }, { - "url" : "XCN.3", - "valueString" : "JANE" + "url" : "OBX.29", + "valueId" : "QST" }, { - "url" : "XCN.10", - "valueString" : "L" + "url" : "OBX.11", + "valueString" : "O" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" } ], - "identifier" : [ - { - "type" : { - "coding" : [ + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" } - ] - }, - "value" : "1265136360", - "assigner" : { - "reference" : "Organization/1707847040246197000.f878df3a-5f70-4d4b-94c4-458c2cf2f17d" + ], + "system" : "http://loinc.org", + "code" : "57714-8", + "display" : "OBSTETRIC ESTIMATION OF GESTATIONAL AGE" } - } - ], - "name" : [ - { - "use" : "official", - "family" : "JONES", - "given" : [ - "JANE" - ] - } - ] + ] + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueQuantity" : { + "value" : 32, + "unit" : "week", + "system" : "UCUM", + "code" : "wk" + } } }, { - "fullUrl" : "Organization/1707847040248788000.9a03e625-1b10-4b57-8540-fbc5705f0454", + "fullUrl" : "Observation/1729550865940883000.e4cb17c1-f11d-46b1-ad02-bb9d5e8ba0de", "resource" : { - "resourceType" : "Organization", - "id" : "1707847040248788000.9a03e625-1b10-4b57-8540-fbc5705f0454", + "resourceType" : "Observation", + "id" : "1729550865940883000.e4cb17c1-f11d-46b1-ad02-bb9d5e8ba0de", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ] - } - } - ] - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "XON.10", - "valueString" : "1043269798" + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CMS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - } - ], - "type" : { - "coding" : [ + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" } - ] - }, - "value" : "1043269798" - } - ], - "name" : "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl" : "PractitionerRole/1707847040245824000.44f7af0a-940c-495a-90bf-c7b29c1065bc", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1707847040245824000.44f7af0a-940c-495a-90bf-c7b29c1065bc", - "practitioner" : { - "reference" : "Practitioner/1707847040247436000.31b0f5dd-7b8e-465c-8c25-5021636ad132" + ], + "system" : "http://loinc.org", + "code" : "57713-0", + "display" : "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION" + } + ] }, - "organization" : { - "reference" : "Organization/1707847040248788000.9a03e625-1b10-4b57-8540-fbc5705f0454" + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "LA12419-0", + "display" : "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + } + ] } } }, { - "fullUrl" : "Organization/1707847040252066000.153d3558-35e2-4828-8a93-fff1afee50ae", + "fullUrl" : "Observation/1729550865942890000.c84fe9a8-9286-4d76-aef0-955e9394f55b", "resource" : { - "resourceType" : "Organization", - "id" : "1707847040252066000.153d3558-35e2-4828-8a93-fff1afee50ae", + "resourceType" : "Observation", + "id" : "1729550865942890000.c84fe9a8-9286-4d76-aef0-955e9394f55b", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ] - } - } - ] - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "XON.10", - "valueString" : "1043269798" + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CMS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" - } - ] - }, - "value" : "1043269798" - } - ], - "name" : "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl" : "Organization/1707847040252956000.3d97593b-e670-40a5-a230-ddb929e5af4c", - "resource" : { - "resourceType" : "Organization", - "id" : "1707847040252956000.3d97593b-e670-40a5-a230-ddb929e5af4c", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { + "status" : "unknown", + "code" : { + "coding" : [ + { "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ] - } + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" } - ] + ], + "code" : "MNDSIB", + "display" : "DOES THE BABY HAVE A DECEASED SIBLING?" } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ - { - "url" : "XON.10", - "valueString" : "739" - } - ] - } - ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MN Public Health Lab" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - } - ], - "type" : { - "coding" : [ + ] + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" - } - ] - }, - "value" : "739" - } - ], - "name" : "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl" : "Organization/1707847040253541000.744956ab-93bf-44c9-9728-d432cad078ba", - "resource" : { - "resourceType" : "Organization", - "id" : "1707847040253541000.744956ab-93bf-44c9-9728-d432cad078ba", - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } - ], - "value" : "NPI" - } - ] - } - }, - { - "fullUrl" : "Practitioner/1707847040254368000.50514b93-84f6-4b7a-873b-68c878820d87", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1707847040254368000.50514b93-84f6-4b7a-873b-68c878820d87", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "JANE" - }, - { - "url" : "XCN.10", - "valueString" : "L" - } - ] - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" } - ] - }, - "value" : "1265136360", - "assigner" : { - "reference" : "Organization/1707847040253541000.744956ab-93bf-44c9-9728-d432cad078ba" + ], + "code" : "N", + "display" : "No" } - } - ], - "name" : [ - { - "use" : "official", - "family" : "JONES", - "given" : [ - "JANE" - ] - } - ] + ] + } } }, { - "fullUrl" : "Observation/1707847040443634000.464d6ec3-104b-4e33-9753-08279fe67e1a", + "fullUrl" : "Observation/1729550865944796000.9dcd5b37-bd27-4835-ac6f-8c375d3cb7aa", "resource" : { "resourceType" : "Observation", - "id" : "1707847040443634000.464d6ec3-104b-4e33-9753-08279fe67e1a", + "id" : "1729550865944796000.9dcd5b37-bd27-4835-ac6f-8c375d3cb7aa", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -996,25 +997,40 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "NM" + "valueId" : "CWE" }, { - "url" : "OBX.6" + "url" : "OBX.29", + "valueId" : "QST" }, { "url" : "OBX.11", "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "MNDEFECT", + "display" : "DOES THE BABY HAVE BIRTH DEFECTS?" + } + ] + }, "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1025,19 +1041,31 @@ } ] }, - "valueQuantity" : { - "value" : 1769.859285, - "unit" : "gram", - "system" : "UCUM", - "code" : "g" + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "N", + "display" : "No" + } + ] } } }, { - "fullUrl" : "Observation/1707847040448325000.c15ce93a-0a69-4120-86ab-4534d8661b60", + "fullUrl" : "Observation/1729550865946599000.028a400c-8372-472b-ab2f-adbdac928078", "resource" : { "resourceType" : "Observation", - "id" : "1707847040448325000.c15ce93a-0a69-4120-86ab-4534d8661b60", + "id" : "1729550865946599000.028a400c-8372-472b-ab2f-adbdac928078", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1052,48 +1080,75 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "NM" + "valueId" : "CWE" }, { - "url" : "OBX.6" + "url" : "OBX.29", + "valueId" : "QST" }, { "url" : "OBX.11", "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" } ] } ], "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "code" : { + "coding" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueQuantity" : { - "value" : 32, - "unit" : "week", - "system" : "UCUM", - "code" : "wk" + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "MNFAM", + "display" : "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL" + } + ] + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "N", + "display" : "No" + } + ] } } }, { - "fullUrl" : "Observation/1707847040451312000.bfeea92a-6560-461e-a28d-84df7aa878a7", + "fullUrl" : "Observation/1729550865948201000.0b8a3074-20b3-452c-b912-139eb437fd54", "resource" : { "resourceType" : "Observation", - "id" : "1707847040451312000.bfeea92a-6560-461e-a28d-84df7aa878a7", + "id" : "1729550865948201000.0b8a3074-20b3-452c-b912-139eb437fd54", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1110,20 +1165,39 @@ "url" : "OBX.2", "valueId" : "CWE" }, - { - "url" : "OBX.11", - "valueString" : "O" - }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "67704-7", + "display" : "FEEDING TYPES" + } + ] + }, "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1148,22 +1222,22 @@ } ], "system" : "http://loinc.org", - "code" : "LA12419-0", - "display" : "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + "code" : "LA12418-2", + "display" : "TPN" } ] } } }, { - "fullUrl" : "Observation/1707847040453664000.0200154d-5d5f-46c6-8fba-9f88907ceb61", + "fullUrl" : "Observation/1729550865949712000.e398514d-8f4f-4c71-9e0f-80cb05f6737d", "resource" : { "resourceType" : "Observation", - "id" : "1707847040453664000.0200154d-5d5f-46c6-8fba-9f88907ceb61", + "id" : "1729550865949712000.e398514d-8f4f-4c71-9e0f-80cb05f6737d", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "valueString" : "2" }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", @@ -1176,20 +1250,39 @@ "url" : "OBX.2", "valueId" : "CWE" }, - { - "url" : "OBX.11", - "valueString" : "O" - }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "67704-7", + "display" : "FEEDING TYPES" + } + ] + }, "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1210,21 +1303,22 @@ }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "valueString" : "LN" } ], - "code" : "N", - "display" : "No" + "system" : "http://loinc.org", + "code" : "LA16914-6", + "display" : "BREAST MILK" } ] } } }, { - "fullUrl" : "Observation/1707847040456098000.75d73472-658d-49ad-b2ca-a6207ffdff93", + "fullUrl" : "Observation/1729550865951387000.f4afebf4-4195-4cca-afc1-70a70e88cc25", "resource" : { "resourceType" : "Observation", - "id" : "1707847040456098000.75d73472-658d-49ad-b2ca-a6207ffdff93", + "id" : "1729550865951387000.f4afebf4-4195-4cca-afc1-70a70e88cc25", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1241,20 +1335,39 @@ "url" : "OBX.2", "valueId" : "CWE" }, - { - "url" : "OBX.11", - "valueString" : "O" - }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "57723-9", + "display" : "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE" + } + ] + }, "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1272,24 +1385,19 @@ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" } ], - "code" : "N", - "display" : "No" + "code" : "0516199364" } ] } } }, { - "fullUrl" : "Observation/1707847040458823000.f538e528-ff23-45ea-8468-98f1eb43ca85", + "fullUrl" : "Observation/1729550865952662000.18a01715-7d4f-41f0-985f-2bf25ee21deb", "resource" : { "resourceType" : "Observation", - "id" : "1707847040458823000.f538e528-ff23-45ea-8468-98f1eb43ca85", + "id" : "1729550865952662000.18a01715-7d4f-41f0-985f-2bf25ee21deb", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1304,33 +1412,21 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "valueId" : "ST" }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { + "code" : { "coding" : [ { "extension" : [ @@ -1340,21 +1436,35 @@ }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "valueString" : "LN" } ], - "code" : "N", - "display" : "No" + "system" : "http://loinc.org", + "code" : "62328-0", + "display" : "DISCHARGE PROVIDER PRACTICE PHONE NUMBER" } ] - } + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueString" : "Daniel Davis/218-555-1000" } }, { - "fullUrl" : "Observation/1707847040460546000.a1fa7830-b4b1-4a74-b5e6-e21430a9fbf6", + "fullUrl" : "Observation/1729550865954074000.5741ae83-6c72-4a52-8b21-7dbdc91bcdfb", "resource" : { "resourceType" : "Observation", - "id" : "1707847040460546000.a1fa7830-b4b1-4a74-b5e6-e21430a9fbf6", + "id" : "1729550865954074000.5741ae83-6c72-4a52-8b21-7dbdc91bcdfb", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1369,33 +1479,21 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "valueId" : "ST" }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { + "code" : { "coding" : [ { "extension" : [ @@ -1409,22 +1507,35 @@ } ], "system" : "http://loinc.org", - "code" : "LA12418-2", - "display" : "TPN" + "code" : "62324-9", + "display" : "POST-DISCHARGE PROVIDER NAME" } ] - } + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueString" : "DAVIS, DANIEL, MD" } }, { - "fullUrl" : "Observation/1707847040463341000.b05f6ec1-5822-4d37-9e68-658b5f92681c", + "fullUrl" : "Observation/1729550865955784000.fc7cf5a5-a7d4-4e57-95b9-48e8877dcdc3", "resource" : { "resourceType" : "Observation", - "id" : "1707847040463341000.b05f6ec1-5822-4d37-9e68-658b5f92681c", + "id" : "1729550865955784000.fc7cf5a5-a7d4-4e57-95b9-48e8877dcdc3", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2" + "valueString" : "1" }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", @@ -1435,22 +1546,41 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "valueId" : "ST" }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "62326-4", + "display" : "POST-DISCHARGE PROVIDER PRACTICE NAME" + } + ] + }, "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1461,240 +1591,608 @@ } ] }, - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "valueString" : "Lakeridge Health Revere" + } + }, + { + "fullUrl" : "ServiceRequest/1729550866068637000.06cfe35d-3d26-459d-aa75-a7f852752d67", + "resource" : { + "resourceType" : "ServiceRequest", + "id" : "1729550866068637000.06cfe35d-3d26-459d-aa75-a7f852752d67", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode" : "NW" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString" : "20230506052913-0500" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension" : [ + { + "url" : "orc-21-ordering-facility-name", + "valueReference" : { + "reference" : "Organization/1729550866065582000.1380b9a5-e0d5-4da5-92dd-f861784c6cd9" + } + }, + { + "url" : "orc-21-ordering-facility-name", + "valueReference" : { + "reference" : "Organization/1729550866066054000.3358bd18-d275-45c0-ba7c-964fb463f407" + } + }, + { + "url" : "orc-12-ordering-provider", + "valueReference" : { + "reference" : "Practitioner/1729550866067327000.d52b6353-7451-4d1f-a082-b5bebef2ed42" + } + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ + { + "url" : "OBR.2", + "valueIdentifier" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "EPIC" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + } + ], + "value" : "421832901" + } + } + ] + } + ], + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.2" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "EPIC" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } + ] + }, + "value" : "421832901" + } + ], + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "54089-8", + "display" : "Newborn screening panel American Health Information Community (AHIC)" + } + ] + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "authoredOn" : "2023-05-06T05:29:13-05:00", + "_authoredOn" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506052913-0500" + } + ] + }, + "requester" : { + "reference" : "PractitionerRole/1729550866062612000.df6baca3-05a6-42f0-b32d-2696c41ac200" + }, + "supportingInfo" : [ + { + "reference" : "Observation/1729550865936768000.530253cf-943d-4360-895c-8f3e276ab614" + }, + { + "reference" : "Observation/1729550865939115000.5a7416db-44bf-4e02-bca8-b6a3bfc74da2" + }, + { + "reference" : "Observation/1729550865940883000.e4cb17c1-f11d-46b1-ad02-bb9d5e8ba0de" + }, + { + "reference" : "Observation/1729550865942890000.c84fe9a8-9286-4d76-aef0-955e9394f55b" + }, + { + "reference" : "Observation/1729550865944796000.9dcd5b37-bd27-4835-ac6f-8c375d3cb7aa" + }, + { + "reference" : "Observation/1729550865946599000.028a400c-8372-472b-ab2f-adbdac928078" + }, + { + "reference" : "Observation/1729550865948201000.0b8a3074-20b3-452c-b912-139eb437fd54" + }, + { + "reference" : "Observation/1729550865949712000.e398514d-8f4f-4c71-9e0f-80cb05f6737d" + }, + { + "reference" : "Observation/1729550865951387000.f4afebf4-4195-4cca-afc1-70a70e88cc25" + }, + { + "reference" : "Observation/1729550865952662000.18a01715-7d4f-41f0-985f-2bf25ee21deb" + }, + { + "reference" : "Observation/1729550865954074000.5741ae83-6c72-4a52-8b21-7dbdc91bcdfb" + }, + { + "reference" : "Observation/1729550865955784000.fc7cf5a5-a7d4-4e57-95b9-48e8877dcdc3" + } + ] + } + }, + { + "fullUrl" : "Organization/1729550866062887000.6e32ebb6-100d-4146-a338-41c5afed2395", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550866062887000.6e32ebb6-100d-4146-a338-41c5afed2395", + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } + ], + "value" : "NPI" + } + ] + } + }, + { + "fullUrl" : "Practitioner/1729550866063517000.7c8076a4-2df1-47ab-a0f6-e88d84fd5654", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729550866063517000.7c8076a4-2df1-47ab-a0f6-e88d84fd5654", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "NPI" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ + { + "url" : "XCN.3", + "valueString" : "JANE" + }, + { + "url" : "XCN.10", + "valueString" : "L" + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.12" + } + ], + "identifier" : [ + { + "type" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } + ], + "code" : "NPI" + } + ] + }, + "value" : "1265136360", + "assigner" : { + "reference" : "Organization/1729550866062887000.6e32ebb6-100d-4146-a338-41c5afed2395" + } + } + ], + "name" : [ + { + "use" : "official", + "family" : "JONES", + "given" : [ + "JANE" + ] + } + ] + } + }, + { + "fullUrl" : "Organization/1729550866064117000.5920bdd1-5013-453c-b70e-c292f65c0328", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550866064117000.5920bdd1-5013-453c-b70e-c292f65c0328", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } + } + ], + "code" : "L" + } + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ + { + "url" : "XON.10", + "valueString" : "1043269798" + } + ] + } + ], + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CMS" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" + } + ] + }, + "value" : "1043269798" + } + ], + "name" : "ST. CLOUD HOSPITAL" + } + }, + { + "fullUrl" : "PractitionerRole/1729550866062612000.df6baca3-05a6-42f0-b32d-2696c41ac200", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1729550866062612000.df6baca3-05a6-42f0-b32d-2696c41ac200", + "practitioner" : { + "reference" : "Practitioner/1729550866063517000.7c8076a4-2df1-47ab-a0f6-e88d84fd5654" + }, + "organization" : { + "reference" : "Organization/1729550866064117000.5920bdd1-5013-453c-b70e-c292f65c0328" + } + } + }, + { + "fullUrl" : "Organization/1729550866065582000.1380b9a5-e0d5-4da5-92dd-f861784c6cd9", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550866065582000.1380b9a5-e0d5-4da5-92dd-f861784c6cd9", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } + } + ], + "code" : "L" + } + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ + { + "url" : "XON.10", + "valueString" : "1043269798" + } + ] + } + ], + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CMS" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" } - ], - "system" : "http://loinc.org", - "code" : "LA16914-6", - "display" : "BREAST MILK" - } - ] - } + ] + }, + "value" : "1043269798" + } + ], + "name" : "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "Observation/1707847040465005000.443a0926-af36-4cbe-a42e-a7990676641a", + "fullUrl" : "Organization/1729550866066054000.3358bd18-d275-45c0-ba7c-964fb463f407", "resource" : { - "resourceType" : "Observation", - "id" : "1707847040465005000.443a0926-af36-4cbe-a42e-a7990676641a", + "resourceType" : "Organization", + "id" : "1729550866066054000.3358bd18-d275-45c0-ba7c-964fb463f407", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } + } + ], + "code" : "L" + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "XON.10", + "valueString" : "739" } ] } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "MN Public Health Lab" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + } + ], + "type" : { + "coding" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" } - ], - "code" : "0516199364" - } - ] - } + ] + }, + "value" : "739" + } + ], + "name" : "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "Observation/1707847040467848000.959fd99f-3345-4173-9a6f-488ced1ca88e", + "fullUrl" : "Organization/1729550866066268000.88e57248-a47c-42ac-99cb-642aca62963a", "resource" : { - "resourceType" : "Observation", - "id" : "1707847040467848000.959fd99f-3345-4173-9a6f-488ced1ca88e", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" - }, + "resourceType" : "Organization", + "id" : "1729550866066268000.88e57248-a47c-42ac-99cb-642aca62963a", + "identifier" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" } - ] + ], + "value" : "NPI" } - ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueString" : "Daniel Davis/218-555-1000" + ] } }, { - "fullUrl" : "Observation/1707847040469515000.51aaea9b-3b23-49f3-ad51-da1213e94c18", + "fullUrl" : "Practitioner/1729550866067327000.d52b6353-7451-4d1f-a082-b5bebef2ed42", "resource" : { - "resourceType" : "Observation", - "id" : "1707847040469515000.51aaea9b-3b23-49f3-ad51-da1213e94c18", + "resourceType" : "Practitioner", + "id" : "1729550866067327000.d52b6353-7451-4d1f-a082-b5bebef2ed42", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "NPI" }, { - "url" : "OBX.11", - "valueString" : "O" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] - } - ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueString" : "DAVIS, DANIEL, MD" - } - }, - { - "fullUrl" : "Observation/1707847040470869000.a016c22f-df02-4d19-a548-116e9da4a63b", - "resource" : { - "resourceType" : "Observation", - "id" : "1707847040470869000.a016c22f-df02-4d19-a548-116e9da4a63b", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "url" : "XCN.3", + "valueString" : "JANE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "XCN.10", + "valueString" : "L" } ] } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847040239572000.c4a5ef84-2bdc-4c8a-a9cc-4daf0244cfbb" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "identifier" : [ + { + "type" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } + ], + "code" : "NPI" + } + ] + }, + "value" : "1265136360", + "assigner" : { + "reference" : "Organization/1729550866066268000.88e57248-a47c-42ac-99cb-642aca62963a" } - ] - }, - "valueString" : "Lakeridge Health Revere" - } - }, - { - "fullUrl" : "Specimen/1707847040478484000.3fbc2652-a981-4cda-b38d-59f8a4aecdac", - "resource" : { - "resourceType" : "Specimen", - "id" : "1707847040478484000.3fbc2652-a981-4cda-b38d-59f8a4aecdac", - "extension" : [ + } + ], + "name" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" + "use" : "official", + "family" : "JONES", + "given" : [ + "JANE" + ] } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir index 1848c5a801e..25b5f7e9975 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir @@ -1,21 +1,21 @@ { "resourceType" : "Bundle", - "id" : "1707847071537137000.07a221fd-ee87-4d5a-a1e7-13b79535defc", + "id" : "1729550865636362000.0dd0d635-e79d-42ff-a976-30961d5309b6", "meta" : { - "lastUpdated" : "2024-02-13T11:57:51.542-06:00" + "lastUpdated" : "2024-10-21T15:47:45.640-07:00" }, "identifier" : { "system" : "https://reportstream.cdc.gov/prime-router", "value" : "31808297" }, "type" : "message", - "timestamp" : "2023-05-06T05:29:16.000-05:00", + "timestamp" : "2023-05-06T03:29:16.000-07:00", "entry" : [ { - "fullUrl" : "MessageHeader/87c2d0db-6f31-3666-b9e2-7152e039c11f", + "fullUrl" : "MessageHeader/1729550865686591000.8eab0b79-1745-4db4-a152-f3ffa58d7e29", "resource" : { "resourceType" : "MessageHeader", - "id" : "87c2d0db-6f31-3666-b9e2-7152e039c11f", + "id" : "1729550865686591000.8eab0b79-1745-4db4-a152-f3ffa58d7e29", "meta" : { "tag" : [ { @@ -129,12 +129,12 @@ ], "name" : "NATUS", "receiver" : { - "reference" : "Organization/1707847071695889000.df447fd8-6a34-4ef9-ba1c-820754f56c3a" + "reference" : "Organization/1729550865685826000.122e2147-d1ba-462e-8fbb-ea52e6700fc4" } } ], "sender" : { - "reference" : "Organization/1707847071629931000.d48536cc-4730-46ca-948e-251ee9bb56c5" + "reference" : "Organization/1729550865665105000.f7c72513-3f5a-4185-a6af-a3361529e59e" }, "source" : { "extension" : [ @@ -160,10 +160,10 @@ } }, { - "fullUrl" : "Organization/1707847071629931000.d48536cc-4730-46ca-948e-251ee9bb56c5", + "fullUrl" : "Organization/1729550865665105000.f7c72513-3f5a-4185-a6af-a3361529e59e", "resource" : { "resourceType" : "Organization", - "id" : "1707847071629931000.d48536cc-4730-46ca-948e-251ee9bb56c5", + "id" : "1729550865665105000.f7c72513-3f5a-4185-a6af-a3361529e59e", "identifier" : [ { "extension" : [ @@ -195,10 +195,10 @@ } }, { - "fullUrl" : "Organization/1707847071695889000.df447fd8-6a34-4ef9-ba1c-820754f56c3a", + "fullUrl" : "Organization/1729550865685826000.122e2147-d1ba-462e-8fbb-ea52e6700fc4", "resource" : { "resourceType" : "Organization", - "id" : "1707847071695889000.df447fd8-6a34-4ef9-ba1c-820754f56c3a", + "id" : "1729550865685826000.122e2147-d1ba-462e-8fbb-ea52e6700fc4", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -237,16 +237,150 @@ } }, { - "fullUrl" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22", + "fullUrl" : "Provenance/1729550865908055000.e56840bd-f0a7-49f0-b01c-08b0cb1509ae", + "resource" : { + "resourceType" : "Provenance", + "id" : "1729550865908055000.e56840bd-f0a7-49f0-b01c-08b0cb1509ae", + "recorded" : "2023-05-06T05:29:16-05:00", + "activity" : { + "coding" : [ + { + "display" : "ORM^O01^ORM_O01" + } + ] + }, + "agent" : [ + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "author" + } + ] + }, + "who" : { + "reference" : "Organization/1729550865907582000.dbb11efa-3e75-4f25-a65b-e4183991b9c8" + } + } + ] + } + }, + { + "fullUrl" : "Organization/1729550865907582000.dbb11efa-3e75-4f25-a65b-e4183991b9c8", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550865907582000.dbb11efa-3e75-4f25-a65b-e4183991b9c8", + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } + ], + "value" : "Centracare" + }, + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "DNS" + } + ] + }, + "value" : "centracare.com" + } + ] + } + }, + { + "fullUrl" : "Provenance/1729550865915257000.813d1694-806e-4d26-8f17-cd25c54bcfd8", + "resource" : { + "resourceType" : "Provenance", + "id" : "1729550865915257000.813d1694-806e-4d26-8f17-cd25c54bcfd8", + "recorded" : "2024-10-21T15:47:45Z", + "policy" : [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity" : { + "coding" : [ + { + "code" : "v2-FHIR transformation" + } + ] + }, + "agent" : [ + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } + ] + }, + "who" : { + "reference" : "Organization/1729550865915010000.a42d35fb-5cd1-44d8-9f9e-fdc1c0585119" + } + } + ] + } + }, + { + "fullUrl" : "Organization/1729550865915010000.a42d35fb-5cd1-44d8-9f9e-fdc1c0585119", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550865915010000.a42d35fb-5cd1-44d8-9f9e-fdc1c0585119", + "identifier" : [ + { + "value" : "CDC PRIME - Atlanta" + }, + { + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb", "resource" : { "resourceType" : "Patient", - "id" : "1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22", + "id" : "1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", "extension" : [ { - "url" : "PID.8" + "url" : "PID.8", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "M" + } + ] + } }, { "url" : "PID.24", @@ -305,7 +439,7 @@ }, "value" : "11102779", "assigner" : { - "reference" : "Organization/1707847072345357000.1dd41490-86e3-48b4-9eb2-9c0b500b97b7" + "reference" : "Organization/1729550865920619000.8e047a23-279b-4e30-aaa9-d8870963e7e5" } } ], @@ -418,7 +552,7 @@ "link" : [ { "other" : { - "reference" : "RelatedPerson/1707847072385413000.1cb0efd6-805a-4a69-a864-783a9629dd0e" + "reference" : "RelatedPerson/1729550865926690000.e6fa0c78-e72f-4dd1-b1a3-4309fd31b5b3" }, "type" : "seealso" } @@ -426,10 +560,10 @@ } }, { - "fullUrl" : "Organization/1707847072345357000.1dd41490-86e3-48b4-9eb2-9c0b500b97b7", + "fullUrl" : "Organization/1729550865920619000.8e047a23-279b-4e30-aaa9-d8870963e7e5", "resource" : { "resourceType" : "Organization", - "id" : "1707847072345357000.1dd41490-86e3-48b4-9eb2-9c0b500b97b7", + "id" : "1729550865920619000.8e047a23-279b-4e30-aaa9-d8870963e7e5", "identifier" : [ { "extension" : [ @@ -444,10 +578,10 @@ } }, { - "fullUrl" : "RelatedPerson/1707847072385413000.1cb0efd6-805a-4a69-a864-783a9629dd0e", + "fullUrl" : "RelatedPerson/1729550865926690000.e6fa0c78-e72f-4dd1-b1a3-4309fd31b5b3", "resource" : { "resourceType" : "RelatedPerson", - "id" : "1707847072385413000.1cb0efd6-805a-4a69-a864-783a9629dd0e", + "id" : "1729550865926690000.e6fa0c78-e72f-4dd1-b1a3-4309fd31b5b3", "identifier" : [ { "extension" : [ @@ -466,520 +600,387 @@ } }, { - "fullUrl" : "ServiceRequest/1707847072423996000.03197e28-f00a-4b01-a6ed-dfbfd08e2a43", + "fullUrl" : "Provenance/1729550865934422000.a889d3dd-3f30-4bc1-83ea-c33528b438d1", "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1707847072423996000.03197e28-f00a-4b01-a6ed-dfbfd08e2a43", + "resourceType" : "Provenance", + "id" : "1729550865934422000.a889d3dd-3f30-4bc1-83ea-c33528b438d1", + "target" : [ + { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + } + ], + "recorded" : "2024-10-21T15:47:45Z", + "activity" : { + "coding" : [ + { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } + ] + } + } + }, + { + "fullUrl" : "Observation/1729550865936768000.530253cf-943d-4360-895c-8f3e276ab614", + "resource" : { + "resourceType" : "Observation", + "id" : "1729550865936768000.530253cf-943d-4360-895c-8f3e276ab614", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "NW" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "20230506052913-0500" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1707847072417482000.4522a04a-b675-4e79-93f6-351dadf7c4bc" - } - }, - { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1707847072418735000.43429617-4700-4fdd-b343-1f0f85892bab" - } + "url" : "OBX.2", + "valueId" : "NM" }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1707847072420860000.8c4240bd-15dc-46dd-942e-2b10821f80b8" - } - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ - { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ + "url" : "OBX.6", + "valueCodeableConcept" : { + "coding" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "UCUM" } - ] + ], + "system" : "http://unitsofmeasure.org", + "code" : "g", + "display" : "gram" } - ], - "value" : "421832901" + ] } - } - ] - } - ], - "identifier" : [ - { - "extension" : [ + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url" : "OBX.29", + "valueId" : "QST" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] + "url" : "OBX.11", + "valueString" : "O" } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } - ] - }, - "value" : "421832901" + ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "8339-4", + "display" : "BIRTH WEIGHT MEASURED" + } + ] + }, "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, - "authoredOn" : "2023-05-06T05:29:13-05:00", - "_authoredOn" : { + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506052913-0500" + "valueString" : "20230506050000-0500" } ] }, - "requester" : { - "reference" : "PractitionerRole/1707847072409054000.78e0d217-4a3c-4280-8c88-4310812360f2" + "valueQuantity" : { + "value" : 1769.859285, + "unit" : "gram", + "system" : "UCUM", + "code" : "g" } } }, { - "fullUrl" : "Organization/1707847072409413000.5daa8c0d-1c1a-400b-b0c0-ad099370d851", - "resource" : { - "resourceType" : "Organization", - "id" : "1707847072409413000.5daa8c0d-1c1a-400b-b0c0-ad099370d851", - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } - ], - "value" : "NPI" - } - ] - } - }, - { - "fullUrl" : "Practitioner/1707847072410737000.cabd7aae-2608-41a0-af88-d82e23869a95", + "fullUrl" : "Observation/1729550865939115000.5a7416db-44bf-4e02-bca8-b6a3bfc74da2", "resource" : { - "resourceType" : "Practitioner", - "id" : "1707847072410737000.cabd7aae-2608-41a0-af88-d82e23869a95", + "resourceType" : "Observation", + "id" : "1729550865939115000.5a7416db-44bf-4e02-bca8-b6a3bfc74da2", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + "url" : "OBX.2", + "valueId" : "NM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url" : "OBX.6", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "UCUM" + } + ], + "system" : "http://unitsofmeasure.org", + "code" : "wk", + "display" : "week" + } + ] + } + }, { - "url" : "XCN.3", - "valueString" : "JANE" + "url" : "OBX.29", + "valueId" : "QST" }, { - "url" : "XCN.10", - "valueString" : "L" + "url" : "OBX.11", + "valueString" : "O" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" } ], - "identifier" : [ - { - "type" : { - "coding" : [ + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" } - ] - }, - "value" : "1265136360", - "assigner" : { - "reference" : "Organization/1707847072409413000.5daa8c0d-1c1a-400b-b0c0-ad099370d851" + ], + "system" : "http://loinc.org", + "code" : "57714-8", + "display" : "OBSTETRIC ESTIMATION OF GESTATIONAL AGE" } - } - ], - "name" : [ - { - "use" : "official", - "family" : "JONES", - "given" : [ - "JANE" - ] - } - ] + ] + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueQuantity" : { + "value" : 32, + "unit" : "week", + "system" : "UCUM", + "code" : "wk" + } } }, { - "fullUrl" : "Organization/1707847072412231000.48789979-62c9-477f-81d8-38a437a12d3f", + "fullUrl" : "Observation/1729550865940883000.e4cb17c1-f11d-46b1-ad02-bb9d5e8ba0de", "resource" : { - "resourceType" : "Organization", - "id" : "1707847072412231000.48789979-62c9-477f-81d8-38a437a12d3f", + "resourceType" : "Observation", + "id" : "1729550865940883000.e4cb17c1-f11d-46b1-ad02-bb9d5e8ba0de", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ] - } - } - ] - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "XON.10", - "valueString" : "1043269798" + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CMS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - } - ], - "type" : { - "coding" : [ + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" } - ] - }, - "value" : "1043269798" - } - ], - "name" : "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl" : "PractitionerRole/1707847072409054000.78e0d217-4a3c-4280-8c88-4310812360f2", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1707847072409054000.78e0d217-4a3c-4280-8c88-4310812360f2", - "practitioner" : { - "reference" : "Practitioner/1707847072410737000.cabd7aae-2608-41a0-af88-d82e23869a95" + ], + "system" : "http://loinc.org", + "code" : "57713-0", + "display" : "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION" + } + ] }, - "organization" : { - "reference" : "Organization/1707847072412231000.48789979-62c9-477f-81d8-38a437a12d3f" + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "LA12419-0", + "display" : "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + } + ] } } }, { - "fullUrl" : "Organization/1707847072417482000.4522a04a-b675-4e79-93f6-351dadf7c4bc", + "fullUrl" : "Observation/1729550865942890000.c84fe9a8-9286-4d76-aef0-955e9394f55b", "resource" : { - "resourceType" : "Organization", - "id" : "1707847072417482000.4522a04a-b675-4e79-93f6-351dadf7c4bc", + "resourceType" : "Observation", + "id" : "1729550865942890000.c84fe9a8-9286-4d76-aef0-955e9394f55b", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ] - } - } - ] - } + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "AOE" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "XON.10", - "valueString" : "1043269798" + "url" : "OBX.2", + "valueId" : "CWE" + }, + { + "url" : "OBX.29", + "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CMS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" - } - ] - }, - "value" : "1043269798" - } - ], - "name" : "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl" : "Organization/1707847072418735000.43429617-4700-4fdd-b343-1f0f85892bab", - "resource" : { - "resourceType" : "Organization", - "id" : "1707847072418735000.43429617-4700-4fdd-b343-1f0f85892bab", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { + "status" : "unknown", + "code" : { + "coding" : [ + { "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ] - } + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" } - ] + ], + "code" : "MNDSIB", + "display" : "DOES THE BABY HAVE A DECEASED SIBLING?" } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ - { - "url" : "XON.10", - "valueString" : "739" - } - ] - } - ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MN Public Health Lab" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - } - ], - "type" : { - "coding" : [ + ] + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" - } - ] - }, - "value" : "739" - } - ], - "name" : "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl" : "Organization/1707847072419262000.2a326289-3f39-4f22-8a9f-ff2939c28cba", - "resource" : { - "resourceType" : "Organization", - "id" : "1707847072419262000.2a326289-3f39-4f22-8a9f-ff2939c28cba", - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } - ], - "value" : "NPI" - } - ] - } - }, - { - "fullUrl" : "Practitioner/1707847072420860000.8c4240bd-15dc-46dd-942e-2b10821f80b8", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1707847072420860000.8c4240bd-15dc-46dd-942e-2b10821f80b8", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "JANE" - }, - { - "url" : "XCN.10", - "valueString" : "L" - } - ] - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "NPI" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" } - ] - }, - "value" : "1265136360", - "assigner" : { - "reference" : "Organization/1707847072419262000.2a326289-3f39-4f22-8a9f-ff2939c28cba" + ], + "code" : "N", + "display" : "No" } - } - ], - "name" : [ - { - "use" : "official", - "family" : "JONES", - "given" : [ - "JANE" - ] - } - ] + ] + } } }, { - "fullUrl" : "Observation/1707847072726067000.1daa933b-9456-492e-93e3-64963e694bab", + "fullUrl" : "Observation/1729550865944796000.9dcd5b37-bd27-4835-ac6f-8c375d3cb7aa", "resource" : { "resourceType" : "Observation", - "id" : "1707847072726067000.1daa933b-9456-492e-93e3-64963e694bab", + "id" : "1729550865944796000.9dcd5b37-bd27-4835-ac6f-8c375d3cb7aa", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -994,25 +995,40 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "NM" + "valueId" : "CWE" }, { - "url" : "OBX.6" + "url" : "OBX.29", + "valueId" : "QST" }, { "url" : "OBX.11", "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "MNDEFECT", + "display" : "DOES THE BABY HAVE BIRTH DEFECTS?" + } + ] + }, "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1023,19 +1039,31 @@ } ] }, - "valueQuantity" : { - "value" : 1769.859285, - "unit" : "gram", - "system" : "UCUM", - "code" : "g" + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "N", + "display" : "No" + } + ] } } }, { - "fullUrl" : "Observation/1707847072730385000.7b72b218-7dbc-4430-aae8-603a4620ae22", + "fullUrl" : "Observation/1729550865946599000.028a400c-8372-472b-ab2f-adbdac928078", "resource" : { "resourceType" : "Observation", - "id" : "1707847072730385000.7b72b218-7dbc-4430-aae8-603a4620ae22", + "id" : "1729550865946599000.028a400c-8372-472b-ab2f-adbdac928078", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1050,48 +1078,75 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "NM" + "valueId" : "CWE" }, { - "url" : "OBX.6" + "url" : "OBX.29", + "valueId" : "QST" }, { "url" : "OBX.11", "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" } ] } ], "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "code" : { + "coding" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueQuantity" : { - "value" : 32, - "unit" : "week", - "system" : "UCUM", - "code" : "wk" + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "MNFAM", + "display" : "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL" + } + ] + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "99MDH" + } + ], + "code" : "N", + "display" : "No" + } + ] } } }, { - "fullUrl" : "Observation/1707847072735311000.e185141d-0750-4c40-9190-3d2597821c65", + "fullUrl" : "Observation/1729550865948201000.0b8a3074-20b3-452c-b912-139eb437fd54", "resource" : { "resourceType" : "Observation", - "id" : "1707847072735311000.e185141d-0750-4c40-9190-3d2597821c65", + "id" : "1729550865948201000.0b8a3074-20b3-452c-b912-139eb437fd54", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1108,20 +1163,39 @@ "url" : "OBX.2", "valueId" : "CWE" }, - { - "url" : "OBX.11", - "valueString" : "O" - }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "67704-7", + "display" : "FEEDING TYPES" + } + ] + }, "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1146,22 +1220,22 @@ } ], "system" : "http://loinc.org", - "code" : "LA12419-0", - "display" : "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + "code" : "LA12418-2", + "display" : "TPN" } ] } } }, { - "fullUrl" : "Observation/1707847072737917000.30f46061-ccb8-4623-876b-f6db76fe5532", + "fullUrl" : "Observation/1729550865949712000.e398514d-8f4f-4c71-9e0f-80cb05f6737d", "resource" : { "resourceType" : "Observation", - "id" : "1707847072737917000.30f46061-ccb8-4623-876b-f6db76fe5532", + "id" : "1729550865949712000.e398514d-8f4f-4c71-9e0f-80cb05f6737d", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "valueString" : "2" }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", @@ -1174,20 +1248,39 @@ "url" : "OBX.2", "valueId" : "CWE" }, - { - "url" : "OBX.11", - "valueString" : "O" - }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "67704-7", + "display" : "FEEDING TYPES" + } + ] + }, "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1208,21 +1301,22 @@ }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "valueString" : "LN" } ], - "code" : "N", - "display" : "No" + "system" : "http://loinc.org", + "code" : "LA16914-6", + "display" : "BREAST MILK" } ] } } }, { - "fullUrl" : "Observation/1707847072740179000.765b2569-73c3-443a-a608-9f0a3a5198f7", + "fullUrl" : "Observation/1729550865951387000.f4afebf4-4195-4cca-afc1-70a70e88cc25", "resource" : { "resourceType" : "Observation", - "id" : "1707847072740179000.765b2569-73c3-443a-a608-9f0a3a5198f7", + "id" : "1729550865951387000.f4afebf4-4195-4cca-afc1-70a70e88cc25", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1239,20 +1333,39 @@ "url" : "OBX.2", "valueId" : "CWE" }, - { - "url" : "OBX.11", - "valueString" : "O" - }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "57723-9", + "display" : "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE" + } + ] + }, "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1270,24 +1383,19 @@ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" } ], - "code" : "N", - "display" : "No" + "code" : "0516199364" } ] } } }, { - "fullUrl" : "Observation/1707847072745373000.27ab7e10-d887-4981-9a4e-9f23be9cebe2", + "fullUrl" : "Observation/1729550865952662000.18a01715-7d4f-41f0-985f-2bf25ee21deb", "resource" : { "resourceType" : "Observation", - "id" : "1707847072745373000.27ab7e10-d887-4981-9a4e-9f23be9cebe2", + "id" : "1729550865952662000.18a01715-7d4f-41f0-985f-2bf25ee21deb", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1302,33 +1410,21 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "valueId" : "ST" }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { + "code" : { "coding" : [ { "extension" : [ @@ -1338,21 +1434,35 @@ }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "valueString" : "LN" } ], - "code" : "N", - "display" : "No" + "system" : "http://loinc.org", + "code" : "62328-0", + "display" : "DISCHARGE PROVIDER PRACTICE PHONE NUMBER" } ] - } + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueString" : "Daniel Davis/218-555-1000" } }, { - "fullUrl" : "Observation/1707847072747820000.99bb115c-5080-43f0-b922-f9e36bf17e18", + "fullUrl" : "Observation/1729550865954074000.5741ae83-6c72-4a52-8b21-7dbdc91bcdfb", "resource" : { "resourceType" : "Observation", - "id" : "1707847072747820000.99bb115c-5080-43f0-b922-f9e36bf17e18", + "id" : "1729550865954074000.5741ae83-6c72-4a52-8b21-7dbdc91bcdfb", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1367,33 +1477,21 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "valueId" : "ST" }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { + "code" : { "coding" : [ { "extension" : [ @@ -1407,22 +1505,35 @@ } ], "system" : "http://loinc.org", - "code" : "LA12418-2", - "display" : "TPN" + "code" : "62324-9", + "display" : "POST-DISCHARGE PROVIDER NAME" } ] - } + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "effectiveDateTime" : "2023-05-06T05:00:00-05:00", + "_effectiveDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000-0500" + } + ] + }, + "valueString" : "DAVIS, DANIEL, MD" } }, { - "fullUrl" : "Observation/1707847072749523000.e5acb189-62bd-4a56-8b5a-7158fa92fbd2", + "fullUrl" : "Observation/1729550865955784000.fc7cf5a5-a7d4-4e57-95b9-48e8877dcdc3", "resource" : { "resourceType" : "Observation", - "id" : "1707847072749523000.e5acb189-62bd-4a56-8b5a-7158fa92fbd2", + "id" : "1729550865955784000.fc7cf5a5-a7d4-4e57-95b9-48e8877dcdc3", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2" + "valueString" : "1" }, { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", @@ -1433,22 +1544,41 @@ "extension" : [ { "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "valueId" : "ST" }, { "url" : "OBX.29", "valueId" : "QST" + }, + { + "url" : "OBX.11", + "valueString" : "O" } ] } ], "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "62326-4", + "display" : "POST-DISCHARGE PROVIDER PRACTICE NAME" + } + ] + }, "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" }, "effectiveDateTime" : "2023-05-06T05:00:00-05:00", "_effectiveDateTime" : { @@ -1459,240 +1589,608 @@ } ] }, - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "valueString" : "Lakeridge Health Revere" + } + }, + { + "fullUrl" : "ServiceRequest/1729550866068637000.06cfe35d-3d26-459d-aa75-a7f852752d67", + "resource" : { + "resourceType" : "ServiceRequest", + "id" : "1729550866068637000.06cfe35d-3d26-459d-aa75-a7f852752d67", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode" : "NW" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString" : "20230506052913-0500" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension" : [ + { + "url" : "orc-21-ordering-facility-name", + "valueReference" : { + "reference" : "Organization/1729550866065582000.1380b9a5-e0d5-4da5-92dd-f861784c6cd9" + } + }, + { + "url" : "orc-21-ordering-facility-name", + "valueReference" : { + "reference" : "Organization/1729550866066054000.3358bd18-d275-45c0-ba7c-964fb463f407" + } + }, + { + "url" : "orc-12-ordering-provider", + "valueReference" : { + "reference" : "Practitioner/1729550866067327000.d52b6353-7451-4d1f-a082-b5bebef2ed42" + } + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ + { + "url" : "OBR.2", + "valueIdentifier" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "EPIC" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + } + ], + "value" : "421832901" + } + } + ] + } + ], + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.2" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "EPIC" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } + ] + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } + ] + }, + "value" : "421832901" + } + ], + "status" : "unknown", + "code" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } + ], + "system" : "http://loinc.org", + "code" : "54089-8", + "display" : "Newborn screening panel American Health Information Community (AHIC)" + } + ] + }, + "subject" : { + "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + }, + "authoredOn" : "2023-05-06T05:29:13-05:00", + "_authoredOn" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506052913-0500" + } + ] + }, + "requester" : { + "reference" : "PractitionerRole/1729550866062612000.df6baca3-05a6-42f0-b32d-2696c41ac200" + }, + "supportingInfo" : [ + { + "reference" : "Observation/1729550865936768000.530253cf-943d-4360-895c-8f3e276ab614" + }, + { + "reference" : "Observation/1729550865939115000.5a7416db-44bf-4e02-bca8-b6a3bfc74da2" + }, + { + "reference" : "Observation/1729550865940883000.e4cb17c1-f11d-46b1-ad02-bb9d5e8ba0de" + }, + { + "reference" : "Observation/1729550865942890000.c84fe9a8-9286-4d76-aef0-955e9394f55b" + }, + { + "reference" : "Observation/1729550865944796000.9dcd5b37-bd27-4835-ac6f-8c375d3cb7aa" + }, + { + "reference" : "Observation/1729550865946599000.028a400c-8372-472b-ab2f-adbdac928078" + }, + { + "reference" : "Observation/1729550865948201000.0b8a3074-20b3-452c-b912-139eb437fd54" + }, + { + "reference" : "Observation/1729550865949712000.e398514d-8f4f-4c71-9e0f-80cb05f6737d" + }, + { + "reference" : "Observation/1729550865951387000.f4afebf4-4195-4cca-afc1-70a70e88cc25" + }, + { + "reference" : "Observation/1729550865952662000.18a01715-7d4f-41f0-985f-2bf25ee21deb" + }, + { + "reference" : "Observation/1729550865954074000.5741ae83-6c72-4a52-8b21-7dbdc91bcdfb" + }, + { + "reference" : "Observation/1729550865955784000.fc7cf5a5-a7d4-4e57-95b9-48e8877dcdc3" + } + ] + } + }, + { + "fullUrl" : "Organization/1729550866062887000.6e32ebb6-100d-4146-a338-41c5afed2395", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550866062887000.6e32ebb6-100d-4146-a338-41c5afed2395", + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } + ], + "value" : "NPI" + } + ] + } + }, + { + "fullUrl" : "Practitioner/1729550866063517000.7c8076a4-2df1-47ab-a0f6-e88d84fd5654", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729550866063517000.7c8076a4-2df1-47ab-a0f6-e88d84fd5654", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "NPI" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ + { + "url" : "XCN.3", + "valueString" : "JANE" + }, + { + "url" : "XCN.10", + "valueString" : "L" + } + ] + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.12" + } + ], + "identifier" : [ + { + "type" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } + ], + "code" : "NPI" + } + ] + }, + "value" : "1265136360", + "assigner" : { + "reference" : "Organization/1729550866062887000.6e32ebb6-100d-4146-a338-41c5afed2395" + } + } + ], + "name" : [ + { + "use" : "official", + "family" : "JONES", + "given" : [ + "JANE" + ] + } + ] + } + }, + { + "fullUrl" : "Organization/1729550866064117000.5920bdd1-5013-453c-b70e-c292f65c0328", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550866064117000.5920bdd1-5013-453c-b70e-c292f65c0328", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } + } + ], + "code" : "L" + } + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ + { + "url" : "XON.10", + "valueString" : "1043269798" + } + ] + } + ], + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CMS" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" + } + ] + }, + "value" : "1043269798" + } + ], + "name" : "ST. CLOUD HOSPITAL" + } + }, + { + "fullUrl" : "PractitionerRole/1729550866062612000.df6baca3-05a6-42f0-b32d-2696c41ac200", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1729550866062612000.df6baca3-05a6-42f0-b32d-2696c41ac200", + "practitioner" : { + "reference" : "Practitioner/1729550866063517000.7c8076a4-2df1-47ab-a0f6-e88d84fd5654" + }, + "organization" : { + "reference" : "Organization/1729550866064117000.5920bdd1-5013-453c-b70e-c292f65c0328" + } + } + }, + { + "fullUrl" : "Organization/1729550866065582000.1380b9a5-e0d5-4da5-92dd-f861784c6cd9", + "resource" : { + "resourceType" : "Organization", + "id" : "1729550866065582000.1380b9a5-e0d5-4da5-92dd-f861784c6cd9", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } + } + ], + "code" : "L" + } + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ + { + "url" : "XON.10", + "valueString" : "1043269798" + } + ] + } + ], + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CMS" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + } + ], + "type" : { + "coding" : [ + { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" } - ], - "system" : "http://loinc.org", - "code" : "LA16914-6", - "display" : "BREAST MILK" - } - ] - } + ] + }, + "value" : "1043269798" + } + ], + "name" : "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "Observation/1707847072752487000.1342ca37-6f6b-406a-9a80-d169a13d6347", + "fullUrl" : "Organization/1729550866066054000.3358bd18-d275-45c0-ba7c-964fb463f407", "resource" : { - "resourceType" : "Observation", - "id" : "1707847072752487000.1342ca37-6f6b-406a-9a80-d169a13d6347", + "resourceType" : "Organization", + "id" : "1729550866066054000.3358bd18-d275-45c0-ba7c-964fb463f407", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } + ], + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "L" + } + ] + } + } + ], + "code" : "L" + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, - { - "url" : "OBX.11", - "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "XON.10", + "valueString" : "739" } ] } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ + "identifier" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "MN Public Health Lab" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + }, + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + } + ] + } + ], + "type" : { + "coding" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "NPI" } - ], - "code" : "0516199364" - } - ] - } + ] + }, + "value" : "739" + } + ], + "name" : "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "Observation/1707847072753806000.939ed420-b344-4fc5-b9ad-d1e1a3138752", + "fullUrl" : "Organization/1729550866066268000.88e57248-a47c-42ac-99cb-642aca62963a", "resource" : { - "resourceType" : "Observation", - "id" : "1707847072753806000.939ed420-b344-4fc5-b9ad-d1e1a3138752", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" - }, + "resourceType" : "Organization", + "id" : "1729550866066268000.88e57248-a47c-42ac-99cb-642aca62963a", + "identifier" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "O" - }, - { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" } - ] + ], + "value" : "NPI" } - ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueString" : "Daniel Davis/218-555-1000" + ] } }, { - "fullUrl" : "Observation/1707847072755032000.a2d6f1da-f5b5-4622-b851-3a0b830ba338", + "fullUrl" : "Practitioner/1729550866067327000.d52b6353-7451-4d1f-a082-b5bebef2ed42", "resource" : { - "resourceType" : "Observation", - "id" : "1707847072755032000.a2d6f1da-f5b5-4622-b851-3a0b830ba338", + "resourceType" : "Practitioner", + "id" : "1729550866067327000.d52b6353-7451-4d1f-a082-b5bebef2ed42", "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "NPI" }, { - "url" : "OBX.11", - "valueString" : "O" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] - } - ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" - } - ] - }, - "valueString" : "DAVIS, DANIEL, MD" - } - }, - { - "fullUrl" : "Observation/1707847072756503000.2a60d024-426c-4328-98a3-ecf55fe9ad1f", - "resource" : { - "resourceType" : "Observation", - "id" : "1707847072756503000.2a60d024-426c-4328-98a3-ecf55fe9ad1f", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "O" + "url" : "XCN.3", + "valueString" : "JANE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url" : "XCN.10", + "valueString" : "L" } ] } ], - "status" : "unknown", - "subject" : { - "reference" : "Patient/1707847072401619000.95ba08d1-b846-4305-b0dc-8024ffe67c22" - }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "identifier" : [ + { + "type" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } + ], + "code" : "NPI" + } + ] + }, + "value" : "1265136360", + "assigner" : { + "reference" : "Organization/1729550866066268000.88e57248-a47c-42ac-99cb-642aca62963a" } - ] - }, - "valueString" : "Lakeridge Health Revere" - } - }, - { - "fullUrl" : "Specimen/1707847072766639000.db120f76-f8e7-41a9-969d-14fe24788481", - "resource" : { - "resourceType" : "Specimen", - "id" : "1707847072766639000.db120f76-f8e7-41a9-969d-14fe24788481", - "extension" : [ + } + ], + "name" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" + "use" : "official", + "family" : "JONES", + "given" : [ + "JANE" + ] } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir new file mode 100644 index 00000000000..fad9945c732 --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir @@ -0,0 +1,6469 @@ +{ + "resourceType" : "Bundle", + "id" : "1729291158390000000.d11499fc-4455-476a-a9e1-6e7620c2a0f5", + "meta" : { + "lastUpdated" : "2024-10-18T15:39:18.393-07:00" + }, + "identifier" : { + "system" : "https://reportstream.cdc.gov/prime-router", + "value" : "0123" + }, + "type" : "message", + "timestamp" : "2019-07-20T09:12:29.000-07:00", + "entry" : [ { + "fullUrl" : "MessageHeader/1729291158444509000.14825390-01fd-4f85-8bf3-8ab20936ce01", + "resource" : { + "resourceType" : "MessageHeader", + "id" : "1729291158444509000.14825390-01fd-4f85-8bf3-8ab20936ce01", + "meta" : { + "security" : [ { + "code" : "msh8placeholder" + } ], + "tag" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", + "code" : "P" + }, { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0207", + "code" : "A" + } ] + }, + "language" : "ENG", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/character-set", + "valueString" : "UNICODE UTF-8" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension" : [ { + "url" : "MSH.7", + "valueString" : "20190720091229" + }, { + "url" : "MSH.13", + "valueString" : "42" + }, { + "url" : "MSH.14", + "valueString" : "msh14placeholder" + }, { + "url" : "MSH.15", + "valueString" : "AL" + }, { + "url" : "MSH.16", + "valueString" : "AL" + }, { + "url" : "MSH.19", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "ISO" + } ], + "version" : "131", + "code" : "ENG", + "display" : "English" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + } ], + "code" : "2ndalt", + "display" : "Second Alt" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "altISO" + } ], + "version" : "313", + "code" : "altE", + "display" : "altEnglish" + } ], + "text" : "originaltext" + } + }, { + "url" : "MSH.20", + "valueString" : "UNICODE UTF-16" + }, { + "url" : "MSH.21", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "PHIN" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.113883.9.11" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "PHLabReport-NoAck" + } + }, { + "url" : "MSH.24", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SendingNetworkAddress" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "1.23.987.1.114222.XXX" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + } ] + } ] + } ], + "eventCoding" : { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", + "code" : "O01", + "display" : "ORM^O01^ORM_O01" + }, + "destination" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.181960.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "MSH.5" + } ], + "name" : "txdshslabNBS", + "endpoint" : "urn:oid:2.16.840.1.114222.4.1.181960.2", + "receiver" : { + "reference" : "Organization/1729291158440524000.4a9a14e8-f667-463e-8dfe-e80f7a64c3bf" + } + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "9.87.123.1.114222.XXX" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "MSH.25" + } ], + "name" : "ReceivingNetworkAddress", + "endpoint" : "urn:oid:9.87.123.1.114222.XXX", + "receiver" : { + "reference" : "Organization/1729291158441463000.950c411b-bfda-4473-8570-5064f57ba569" + } + }, { + "receiver" : { + "reference" : "Organization/1729291158444286000.2ea093e2-1ae7-4c1f-9331-104b79a9e91b" + } + } ], + "sender" : { + "reference" : "Organization/1729291158420391000.aa4cfe52-4afd-48d9-9653-47f10e026deb" + }, + "source" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "OrderingFacilityApplicationName" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.XXX" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "MSH.3" + } ], + "endpoint" : "urn:oid:2.16.840.1.114222.XXX" + }, + "responsible" : { + "reference" : "Organization/1729291158439828000.203211ab-84b8-4b73-ab45-67fe89c77df6" + } + } + }, { + "fullUrl" : "Organization/1729291158420391000.aa4cfe52-4afd-48d9-9653-47f10e026deb", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158420391000.aa4cfe52-4afd-48d9-9653-47f10e026deb", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "OrderingFacilityName" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.XXX" + } ], + "address" : [ { + "country" : "FR" + } ] + } + }, { + "fullUrl" : "Location/1729291158436267000.263fda7b-0d24-4ea7-b7e6-a1655414829d", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158436267000.263fda7b-0d24-4ea7-b7e6-a1655414829d", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "1.8.440.1.1138.9.22" + } ], + "name" : "Clinic A", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158439828000.203211ab-84b8-4b73-ab45-67fe89c77df6", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158439828000.203211ab-84b8-4b73-ab45-67fe89c77df6", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "1", + "code" : "1357-9", + "display" : "SomeText" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "2", + "code" : "2468-5", + "display" : "SomeAltText" + } ], + "text" : "OriginalText" + } + } ], + "system" : "LN", + "version" : "1", + "code" : "1357-9", + "display" : "SomeText" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "NameRepCode1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.3", + "valueString" : "1111" + }, { + "url" : "XON.10", + "valueString" : "OrgIdentifier2" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "9" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "The Authority" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "4.2.8.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "BCV" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158436267000.263fda7b-0d24-4ea7-b7e6-a1655414829d" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "BC" + } ] + }, + "value" : "OrgIdentifier2" + } ], + "name" : "Sending Responsible Org" + } + }, { + "fullUrl" : "Organization/1729291158440524000.4a9a14e8-f667-463e-8dfe-e80f7a64c3bf", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158440524000.4a9a14e8-f667-463e-8dfe-e80f7a64c3bf", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "MSH.6" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "txdshslab" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.181960" + } ] + } + }, { + "fullUrl" : "Organization/1729291158441463000.950c411b-bfda-4473-8570-5064f57ba569", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158441463000.950c411b-bfda-4473-8570-5064f57ba569", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "MSH.6" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "txdshslab" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.181960" + } ] + } + }, { + "fullUrl" : "Location/1729291158442500000.906419f2-c65e-47de-92b4-cf09264b1a9c", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158442500000.906419f2-c65e-47de-92b4-cf09264b1a9c", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "10.10.40.10.11380.90.22" + } ], + "name" : "Clinic B", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158444286000.2ea093e2-1ae7-4c1f-9331-104b79a9e91b", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158444286000.2ea093e2-1ae7-4c1f-9331-104b79a9e91b", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "1", + "code" : "1133-5", + "display" : "SomeOtherText" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "2", + "code" : "1298-7", + "display" : "SomeOtherAltText" + } ], + "text" : "TheOriginalText" + } + } ], + "system" : "LN", + "version" : "1", + "code" : "1133-5", + "display" : "SomeOtherText" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "NameRepCode2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.3", + "valueString" : "5555" + }, { + "url" : "XON.10", + "valueString" : "OrgIdentifier3" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "MSH.23" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "8" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "An Authority" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "45.24.167.43" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "CCTV" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158442500000.906419f2-c65e-47de-92b4-cf09264b1a9c" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "BCVan" + } ] + }, + "value" : "OrgIdentifier3" + } ], + "name" : "Receiving Responsible Org" + } + }, { + "fullUrl" : "Provenance/1729291158682591000.3aa2f8db-3410-450c-922a-8e59ae3e2d94", + "resource" : { + "resourceType" : "Provenance", + "id" : "1729291158682591000.3aa2f8db-3410-450c-922a-8e59ae3e2d94", + "recorded" : "2019-07-20T09:12:29Z", + "activity" : { + "coding" : [ { + "display" : "ORM^O01^ORM_O01" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "author" + } ] + }, + "who" : { + "reference" : "Organization/1729291158682370000.46da5679-724b-429c-97f8-3f6b961676ca" + } + } ] + } + }, { + "fullUrl" : "Location/1729291158681333000.7e124791-1a6d-41fe-8b05-44fabe352116", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158681333000.7e124791-1a6d-41fe-8b05-44fabe352116", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "1.8.440.1.1138.9.22" + } ], + "name" : "Clinic A", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158682370000.46da5679-724b-429c-97f8-3f6b961676ca", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158682370000.46da5679-724b-429c-97f8-3f6b961676ca", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "1", + "code" : "1357-9", + "display" : "SomeText" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "2", + "code" : "2468-5", + "display" : "SomeAltText" + } ], + "text" : "OriginalText" + } + } ], + "system" : "LN", + "version" : "1", + "code" : "1357-9", + "display" : "SomeText" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "NameRepCode1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.3", + "valueString" : "1111" + }, { + "url" : "XON.10", + "valueString" : "OrgIdentifier2" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "9" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "The Authority" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "4.2.8.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "BCV" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158681333000.7e124791-1a6d-41fe-8b05-44fabe352116" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "BC" + } ] + }, + "value" : "OrgIdentifier2" + } ], + "name" : "Sending Responsible Org" + } + }, { + "fullUrl" : "Provenance/1729291158692467000.81f00bf5-0d5f-40c5-87ab-00c9277644a3", + "resource" : { + "resourceType" : "Provenance", + "id" : "1729291158692467000.81f00bf5-0d5f-40c5-87ab-00c9277644a3", + "recorded" : "2024-10-18T15:39:18Z", + "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], + "activity" : { + "coding" : [ { + "code" : "v2-FHIR transformation" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } ] + }, + "who" : { + "reference" : "Organization/1729291158692202000.32900299-0e51-4355-80c3-88747c760f0c" + } + } ] + } + }, { + "fullUrl" : "Organization/1729291158692202000.32900299-0e51-4355-80c3-88747c760f0c", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158692202000.32900299-0e51-4355-80c3-88747c760f0c", + "identifier" : [ { + "value" : "CDC PRIME - Atlanta" + }, { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } ] + } + }, { + "fullUrl" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca", + "resource" : { + "resourceType" : "Patient", + "id" : "1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca", + "meta" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", + "valueReference" : { + "reference" : "Organization/1729291158719836000.420f6702-d1f5-49e2-bfb0-0dfdd0e24071" + } + } ], + "lastUpdated" : "2024-08-21T11:38:00Z", + "_lastUpdated" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202408211138" + } ] + } + }, + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", + "valueAnnotation" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension" : [ { + "url" : "NTE.2", + "valueId" : "L" + }, { + "url" : "NTE.7", + "valueString" : "20230601" + }, { + "url" : "NTE.8", + "valueString" : "20350201" + }, { + "url" : "NTE.9", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "CC", + "display" : "Coded comment for patient note" + } ] + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId" : "Accession level coment." + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70364" + } ], + "version" : "2.5.1", + "code" : "RE", + "display" : "Remark" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "y" + } ], + "version" : "a", + "code" : "z", + "display" : "x" + } ], + "text" : "b" + } + } ], + "authorReference" : { + "reference" : "Practitioner/1729291158701987000.8d216794-0ca5-45e5-a48f-c30bfe8f6ceb" + }, + "time" : "2023-05-31", + "_time" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230531" + } ] + }, + "text" : "Accession level coment." + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", + "extension" : [ { + "url" : "PID.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70001" + } ], + "code" : "F", + "display" : "Female" + } ] + } + }, { + "url" : "PID.18", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.18" + } ], + "value" : "32" + } + }, { + "url" : "PID.24", + "valueString" : "Y" + }, { + "url" : "PID.30", + "valueString" : "Y" + }, { + "url" : "PID.32", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70445" + } ], + "code" : "AL", + "display" : "Alias" + } ] + } + }, { + "url" : "PID.38", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70429" + } ], + "code" : "RA", + "display" : "Racing" + } ] + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/veteran-military-status", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70172" + } ], + "code" : "NA", + "display" : "Not Applicable" + } ] + } + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-nationality", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.28" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70212" + } ], + "code" : "A", + "display" : "American" + } ] + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identity-unknown", + "valueString" : "N" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-animal", + "extension" : [ { + "url" : "species", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.35" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70446" + } ], + "code" : "D", + "display" : "Dog" + } ] + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/studentStatus", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70231" + } ], + "version" : "2.5.1", + "code" : "F", + "display" : "Full-time student" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70231" + } ], + "version" : "2.5.1", + "code" : "N", + "display" : "Not a student" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70231" + } ], + "version" : "4", + "code" : "N", + "display" : "Not a student" + } ], + "text" : "TEST" + } + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-disability", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70295" + } ], + "version" : "2.5.1", + "code" : "T", + "display" : "TEST" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70295" + } ], + "version" : "2.5.1", + "code" : "D", + "display" : "Debug" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70295" + } ], + "version" : "4", + "code" : "P", + "display" : "Prod" + } ], + "text" : "TEST" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/livingWill", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70315" + } ], + "version" : "2.5.1", + "code" : "F", + "display" : "Yes, patient has a living will but it is not on file" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70315" + } ], + "version" : "2.5.1", + "code" : "U", + "display" : "Unknown" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70315" + } ], + "version" : "4", + "code" : "I", + "display" : "No, patient does not have a living will but information was provided" + } ], + "text" : "TEST" + } + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString" : "1st Ordering Facility" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString" : "2nd Ordering Facility" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic", + "extension" : [ { + "url" : "PD1.1", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70223" + } ], + "version" : "2.5.1", + "code" : "C", + "display" : "Small Children Dependent" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70223" + } ], + "version" : "2.5.1", + "code" : "M", + "display" : "Medical Supervision Required" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70223" + } ], + "version" : "4", + "code" : "M", + "display" : "Medical Supervision Required" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.1", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70223" + } ], + "version" : "2.5.1", + "code" : "O", + "display" : "Other" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70223" + } ], + "version" : "2.5.1", + "code" : "M", + "display" : "Medical Supervision Required" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70223" + } ], + "version" : "4", + "code" : "U", + "display" : "Unknown" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.2", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70220" + } ], + "version" : "2.5.1", + "code" : "A", + "display" : "Alone" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70220" + } ], + "version" : "2.5.1", + "code" : "F", + "display" : "Family" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70220" + } ], + "version" : "4", + "code" : "F", + "display" : "Family" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.16", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70441" + } ], + "version" : "2.5.1", + "code" : "A", + "display" : "Active" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70441" + } ], + "version" : "2.5.1", + "code" : "O", + "display" : "Other" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70441" + } ], + "version" : "4", + "code" : "I", + "display" : "Inactive" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.17", + "valueString" : "20230501102532-0400" + }, { + "url" : "PD1.18", + "valueString" : "20230501102533-0400" + }, { + "url" : "PD1.19", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70140" + } ], + "version" : "2.5.1", + "code" : "AUSA", + "display" : "Australian Army" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70140" + } ], + "version" : "2.5.1", + "code" : "AUSN", + "display" : "Australian Navy" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70140" + } ], + "version" : "4", + "code" : "AUSFA", + "display" : "Australian Air Force" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.20", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70141" + } ], + "version" : "2.5.1", + "code" : "E1... E9", + "display" : "Enlisted" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70141" + } ], + "version" : "2.5.1", + "code" : "W1 ... W4", + "display" : "Warrent Officers" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70141" + } ], + "version" : "4", + "code" : "O1 ... O9", + "display" : "Officers" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.21", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70142" + } ], + "version" : "2.5.1", + "code" : "ACT", + "display" : "Active duty" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70142" + } ], + "version" : "2.5.1", + "code" : "RET", + "display" : "Retired" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70142" + } ], + "version" : "4", + "code" : "DEC", + "display" : "Deceased" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.22", + "valueString" : "20230501102531-0400" + }, { + "url" : "PD1.8", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70316" + } ], + "version" : "2.5.1", + "code" : "F", + "display" : "Yes, patient is a documented donor, but documentation is not on file" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70316" + } ], + "version" : "2.5.1", + "code" : "U", + "display" : "Unknown" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70316" + } ], + "version" : "4", + "code" : "I", + "display" : "No, patient is not a documented donor, but information was provided" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.9", + "valueString" : "N" + }, { + "url" : "PD1.10", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference" : { + "reference" : "Organization/1729291158708547000.3bff1341-e3b5-4ca0-946c-2f376095a7fa" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension" : [ { + "url" : "CX.5", + "valueString" : "MR" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PD1.10" + } ], + "type" : { + "coding" : [ { + "code" : "MR" + } ] + }, + "system" : "NIST MPI", + "_system" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "NIST MPI" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.113883.3.72.5.30.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + } ] + }, + "value" : "18547545" + } + }, { + "url" : "PD1.10", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference" : { + "reference" : "Organization/1729291158709132000.8247efc1-33e5-4433-8fa3-e2c0e44d92d9" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension" : [ { + "url" : "CX.5", + "valueString" : "SS" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PD1.10" + } ], + "type" : { + "coding" : [ { + "code" : "SS" + } ] + }, + "system" : "SSN", + "_system" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SSN" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.113883.4.1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + } ] + }, + "value" : "111111111" + } + }, { + "url" : "PD1.11", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70215" + } ], + "version" : "2.5.1", + "code" : "F", + "display" : "Family only" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70215" + } ], + "version" : "2.5.1", + "code" : "U", + "display" : "Unknown" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70215" + } ], + "version" : "4", + "code" : "N", + "display" : "No Publicity" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.12", + "valueString" : "N" + }, { + "url" : "PD1.13", + "valueString" : "20230501102531-0400" + }, { + "url" : "PD1.14", + "valueReference" : { + "reference" : "Organization/1729291158710563000.6b230d40-3ab6-4443-85ca-216e7072104c" + } + }, { + "url" : "PD1.14", + "valueReference" : { + "reference" : "Organization/1729291158711467000.1dd13ee9-6787-4ba3-bc0f-ff8543978073" + } + }, { + "url" : "PD1.15", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70435" + } ], + "version" : "2.5.1", + "code" : "DNR", + "display" : "Do not resuscitate" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70435" + } ], + "version" : "2.5.1", + "code" : "N", + "display" : "No directive" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70435" + } ], + "version" : "4", + "code" : "N", + "display" : "No directive" + } ], + "text" : "TEST" + } + }, { + "url" : "PD1.15", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70435" + } ], + "version" : "2.5.1", + "code" : "DNR", + "display" : "Do not resuscitate" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "secondary-alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70435" + } ], + "version" : "2.5.1", + "code" : "N", + "display" : "No directive" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70435" + } ], + "version" : "4", + "code" : "N", + "display" : "No directive" + } ], + "text" : "TEST" + } + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", + "valueHumanName" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ { + "url" : "XPN.2", + "valueString" : "FHIR" + }, { + "url" : "XPN.3", + "valueString" : "WI" + }, { + "url" : "XPN.7", + "valueString" : "L" + } ] + } ], + "use" : "official", + "family" : "Mind", + "given" : [ "FHIR", "WI" ] + } + }, { + "url" : "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70005" + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v3-Race", + "code" : "2106-3", + "display" : "White" + } ] + } + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-religion", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70006" + } ], + "code" : "AGN", + "display" : "Agnostic" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70189" + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v2-0189", + "code" : "U", + "display" : "Uknown" + } ] + } + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", + "valueAddress" : { + "text" : "Bayou" + } + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-citizenship", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.26" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70171" + } ], + "code" : "USA", + "display" : "United States" + } ] + } + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/patient-citizenship", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.39" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70171" + } ], + "code" : "N", + "display" : "None" + } ] + } + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "forty" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueString" : "123" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference" : { + "reference" : "Organization/1729291158698371000.c4298f73-011e-4bdf-943c-3a6d3671089f" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension" : [ { + "url" : "CX.5", + "valueString" : "PI" + }, { + "url" : "CX.9", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL7123" + } ], + "code" : "IX", + "display" : "Ninth" + } ] + } + }, { + "url" : "CX.10", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL7123" + } ], + "code" : "X", + "display" : "Tenth" + } ] + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.3" + } ], + "type" : { + "coding" : [ { + "code" : "PI" + } ] + }, + "system" : "STARLIMS.CDC.Stag", + "_system" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "STARLIMS.CDC.Stag" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + } ] + }, + "value" : "Patidlist", + "period" : { + "start" : "2021-01-13", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20210113" + } ] + }, + "end" : "2021-12-30", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20211230" + } ] + } + } + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension" : [ { + "url" : "CX.5", + "valueString" : "PI" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.3" + } ], + "type" : { + "coding" : [ { + "code" : "PI" + } ] + }, + "system" : "SPHL-000048", + "_system" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPHL-000048" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.10765" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + } ] + }, + "value" : "PID123" + } ], + "name" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension" : [ { + "url" : "XPN.2", + "valueString" : "HL7" + }, { + "url" : "XPN.3", + "valueString" : "MI" + }, { + "url" : "XPN.14", + "valueString" : "Prof" + }, { + "url" : "XPN.4", + "valueString" : "V" + }, { + "url" : "XPN.6", + "valueString" : "BCN" + }, { + "url" : "XPN.7", + "valueString" : "L" + }, { + "url" : "XPN.8", + "valueString" : "Naaame" + }, { + "url" : "XPN.9", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL7444" + } ], + "code" : "C", + "display" : "Name Context" + } ] + } + }, { + "url" : "XPN.10", + "extension" : [ { + "url" : "XPN.10.2" + }, { + "url" : "XPN.10.1", + "valueString" : "Yes" + } ] + }, { + "url" : "XPN.12", + "valueString" : "19900503" + }, { + "url" : "XPN.13", + "valueString" : "20030503" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "Mega", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "Mr" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "MrOwnMega" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "Mrs" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "MrsOwn" + } ] + }, + "given" : [ "HL7", "MI" ], + "prefix" : [ "DR" ], + "suffix" : [ "V", "BCN", "Prof" ], + "period" : { + "start" : "1990-05-03", + "end" : "2003-05-03" + } + } ], + "telecom" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "713" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5553861" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString" : "1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.1", + "valueString" : "12345" + }, { + "url" : "XTN.2", + "valueString" : "PRS" + }, { + "url" : "XTN.3", + "valueString" : "CP" + }, { + "url" : "XTN.4", + "valueString" : "real@example.com" + }, { + "url" : "XTN.7", + "valueString" : "5553861" + }, { + "url" : "XTN.9", + "valueString" : "himom" + }, { + "url" : "XTN.11", + "valueString" : "4" + }, { + "url" : "XTN.12", + "valueString" : "17135553862" + } ] + } ], + "system" : "phone", + "value" : "17135553862", + "use" : "home", + "rank" : 7, + "period" : { + "start" : "1999", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "1999" + } ] + }, + "end" : "2000", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "2000" + } ] + } + } + }, { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "281" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "5553861" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.1", + "valueString" : "9865" + }, { + "url" : "XTN.2", + "valueString" : "EMR" + }, { + "url" : "XTN.3", + "valueString" : "SAT" + }, { + "url" : "XTN.4", + "valueString" : "alsoreal@exmaple.com" + }, { + "url" : "XTN.7", + "valueString" : "5553861" + } ] + } ], + "system" : "other", + "use" : "work" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.1", + "valueString" : "40" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PID.40" + } ], + "_system" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCode" : "unknown" + } ] + }, + "value" : "40" + } ], + "gender" : "female", + "birthDate" : "1640", + "_birthDate" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "1640" + } ] + }, + "deceasedDateTime" : "2031", + "_deceasedDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "2031" + } ] + }, + "address" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode" : "Census" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "123 Main St" + } ] + }, { + "url" : "XAD.2", + "valueString" : "Altxad" + }, { + "url" : "XAD.7", + "valueCode" : "H" + }, { + "url" : "XAD.8", + "valueString" : "MahHome" + }, { + "url" : "XAD.11", + "valueCode" : "A" + }, { + "url" : "XAD.12", + "extension" : [ { + "url" : "XAD.12.1", + "valueString" : "2020" + }, { + "url" : "XAD.12.2", + "valueString" : "2024" + } ] + }, { + "url" : "XAD.13", + "valueString" : "2022" + }, { + "url" : "XAD.14", + "valueString" : "2027" + }, { + "url" : "XAD.19", + "valueCode" : "MrSir" + } ] + } ], + "use" : "home", + "line" : [ "123 Main St", "Altxad", "MrSir" ], + "city" : "AnyTown", + "district" : "ThoCo", + "state" : "IG", + "postalCode" : "95802", + "country" : "USA", + "period" : { + "start" : "2022", + "end" : "2027" + } + } ], + "maritalStatus" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70002" + } ], + "code" : "P", + "display" : "Domestic Partnet" + } ] + }, + "multipleBirthInteger" : 11, + "communication" : [ { + "language" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70296" + } ], + "code" : "E", + "display" : "English" + } ] + } + } ], + "generalPractitioner" : [ { + "reference" : "Organization/1729291158701189000.1959ff7f-9a3c-458c-8d8e-d916a80ccda7" + } ], + "link" : [ { + "other" : { + "reference" : "RelatedPerson/1729291158716299000.b06139e1-28ca-4e80-9b3f-4fbf3dd8b5dd" + }, + "type" : "seealso" + } ] + } + }, { + "fullUrl" : "Organization/1729291158698371000.c4298f73-011e-4bdf-943c-3a6d3671089f", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158698371000.c4298f73-011e-4bdf-943c-3a6d3671089f", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "STARLINKED.CDC.Stag" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.9.8.7.6.3.2" + } ] + } + }, { + "fullUrl" : "Location/1729291158700380000.e59e52d8-e1d4-40c9-b0f9-16058865ad76", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158700380000.e59e52d8-e1d4-40c9-b0f9-16058865ad76", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "10.10.40.10.11380.90.22" + } ], + "name" : "Clinic B", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158701189000.1959ff7f-9a3c-458c-8d8e-d916a80ccda7", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158701189000.1959ff7f-9a3c-458c-8d8e-d916a80ccda7", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "1", + "code" : "1133-5", + "display" : "SomeOtherText" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "2", + "code" : "1298-7", + "display" : "SomeOtherAltText" + } ], + "text" : "TheOriginalText" + } + } ], + "system" : "LN", + "version" : "1", + "code" : "1133-5", + "display" : "SomeOtherText" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "NameRepCode2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.3", + "valueString" : "5555" + }, { + "url" : "XON.10", + "valueString" : "OrgIdentifier3" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "8" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "An Authority" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "45.24.167.43" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "CCTV" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158700380000.e59e52d8-e1d4-40c9-b0f9-16058865ad76" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "BCVan" + } ] + }, + "value" : "OrgIdentifier3" + } ], + "name" : "Receiving Responsible Org" + } + }, { + "fullUrl" : "Practitioner/1729291158701987000.8d216794-0ca5-45e5-a48f-c30bfe8f6ceb", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158701987000.8d216794-0ca5-45e5-a48f-c30bfe8f6ceb", + "identifier" : [ { + "value" : "Bob R.N." + } ] + } + }, { + "fullUrl" : "Organization/1729291158708547000.3bff1341-e3b5-4ca0-946c-2f376095a7fa", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158708547000.3bff1341-e3b5-4ca0-946c-2f376095a7fa", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "University H" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.113883.3.0" + } ] + } + }, { + "fullUrl" : "Organization/1729291158709132000.8247efc1-33e5-4433-8fa3-e2c0e44d92d9", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158709132000.8247efc1-33e5-4433-8fa3-e2c0e44d92d9", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "SSA" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.113883.3.184" + } ] + } + }, { + "fullUrl" : "Location/1729291158710057000.6597955e-70de-432a-9be6-7607f43ce58a", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158710057000.6597955e-70de-432a-9be6-7607f43ce58a", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "2.16.840.1.113883.9.11" + } ], + "name" : "Hospital A", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158710563000.6b230d40-3ab6-4443-85ca-216e7072104c", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158710563000.6b230d40-3ab6-4443-85ca-216e7072104c", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "1", + "code" : "1234-5", + "display" : "TestText" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "2", + "code" : "1234-5", + "display" : "TestAltText" + } ], + "text" : "OriginalText" + } + } ], + "system" : "LN", + "version" : "1", + "code" : "1234-5", + "display" : "TestText" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "NameRepCode" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.3", + "valueString" : "123" + }, { + "url" : "XON.10", + "valueString" : "1st OrgIdentifier" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "Check Digit" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Assigning Authority" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.1.4.1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "C1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158710057000.6597955e-70de-432a-9be6-7607f43ce58a" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "MD" + } ] + }, + "value" : "1st OrgIdentifier" + } ], + "name" : "1st Ordering Facility" + } + }, { + "fullUrl" : "Location/1729291158710863000.3c694dae-359e-40f9-9970-4f1238b7348a", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158710863000.3c694dae-359e-40f9-9970-4f1238b7348a", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "2.16.840.1.113883.9.11" + } ], + "name" : "Hospital A", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158711467000.1dd13ee9-6787-4ba3-bc0f-ff8543978073", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158711467000.1dd13ee9-6787-4ba3-bc0f-ff8543978073", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "1", + "code" : "1234-5", + "display" : "TestText" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "2", + "code" : "1234-5", + "display" : "TestAltText" + } ], + "text" : "OriginalText" + } + } ], + "system" : "LN", + "version" : "1", + "code" : "1234-5", + "display" : "TestText" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "NameRepCode" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.3", + "valueString" : "123" + }, { + "url" : "XON.10", + "valueString" : "2nd OrgIdentifier" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "Check Digit" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Assigning Authority" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.1.4.1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "C1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158710863000.3c694dae-359e-40f9-9970-4f1238b7348a" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "MD" + } ] + }, + "value" : "2nd OrgIdentifier" + } ], + "name" : "2nd Ordering Facility" + } + }, { + "fullUrl" : "RelatedPerson/1729291158716299000.b06139e1-28ca-4e80-9b3f-4fbf3dd8b5dd", + "resource" : { + "resourceType" : "RelatedPerson", + "id" : "1729291158716299000.b06139e1-28ca-4e80-9b3f-4fbf3dd8b5dd", + "identifier" : [ { + "value" : "maybe" + } ] + } + }, { + "fullUrl" : "Organization/1729291158719836000.420f6702-d1f5-49e2-bfb0-0dfdd0e24071", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158719836000.420f6702-d1f5-49e2-bfb0-0dfdd0e24071", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "RSDT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "0.0.0.1.1138" + } ] + } + }, { + "fullUrl" : "Provenance/1729291158733312000.2aa254f0-1afa-44db-90dc-d51ad7f8549a", + "resource" : { + "resourceType" : "Provenance", + "id" : "1729291158733312000.2aa254f0-1afa-44db-90dc-d51ad7f8549a", + "target" : [ { + "reference" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca" + } ], + "occurredDateTime" : "2024-08-21T11:38:00Z", + "recorded" : "2024-10-18T15:39:18Z", + "activity" : { + "coding" : [ { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "performer" + } ] + }, + "who" : { + "reference" : "Organization/1729291158733087000.50565d7a-c138-4ad7-90c4-352ab5a17e37" + } + } ] + } + }, { + "fullUrl" : "Organization/1729291158733087000.50565d7a-c138-4ad7-90c4-352ab5a17e37", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158733087000.50565d7a-c138-4ad7-90c4-352ab5a17e37", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "RSDT" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "0.0.0.1.1138" + } ] + } + }, { + "fullUrl" : "Encounter/1729291158748523000.e6b583e7-17ac-422d-a986-97f72ad3bbda", + "resource" : { + "resourceType" : "Encounter", + "id" : "1729291158748523000.e6b583e7-17ac-422d-a986-97f72ad3bbda", + "meta" : { + "security" : [ { + "code" : "SEC" + } ] + }, + "text" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-visit-description", + "valueString" : "Description" + } ], + "div" : "
Description
" + }, + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "413", + "display" : "V" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "423", + "display" : "X" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-start-date", + "valueDateTime" : "2023-06-01T10:25:31-04:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230601102531-0400" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-discharge-date", + "valueDateTime" : "2023-07-01T10:25:31-04:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230701102531-0400" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/estimated-length", + "valueQuantity" : { + "value" : 5, + "unit" : "days", + "system" : "http://unitsofmeasure.org/", + "code" : "d" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/publicity-code", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "100", + "display" : "PublicCode" + } ] + } + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival", + "valueCoding" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "444", + "display" : "MODE" + } ] + } + } ], + "code" : "444", + "display" : "MODE" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/admission-level-of-care", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "123", + "display" : "CARELEVEL1" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit", + "extension" : [ { + "url" : "PV1.12", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70087" + } ], + "code" : "P", + "display" : "Passed" + } ] + } + }, { + "url" : "PV1.18", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70018" + } ], + "code" : "H", + "display" : "Human Patient" + } ] + } + }, { + "url" : "PV1.46", + "valueDecimal" : 100 + }, { + "url" : "PV1.47", + "valueDecimal" : 199 + }, { + "url" : "PV1.48", + "valueDecimal" : 142 + }, { + "url" : "PV1.49", + "valueDecimal" : 130 + }, { + "url" : "PV1.51", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70326" + } ], + "code" : "A", + "display" : "Account Level" + } ] + } + }, { + "url" : "PV1.30", + "valueString" : "20020101" + }, { + "url" : "PV1.31", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70021" + } ], + "code" : "C", + "display" : "Collectors" + } ] + } + }, { + "url" : "PV1.32", + "valueDecimal" : 1 + }, { + "url" : "PV1.33", + "valueDecimal" : 0 + }, { + "url" : "PV1.34", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70111" + } ], + "code" : "Y", + "display" : "Yes" + } ] + } + }, { + "url" : "PV1.35", + "valueString" : "20080101" + }, { + "url" : "PV1.39", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70115" + } ], + "code" : "H", + "display" : "A Hospital Of Course" + } ] + } + }, { + "url" : "PV1.41", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70117" + } ], + "code" : "A", + "display" : "Active" + } ] + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-patient-visit-additional-information", + "extension" : [ { + "url" : "PV2.15", + "valueString" : "EMP_ILL" + }, { + "url" : "PV2.23", + "valueReference" : { + "reference" : "Organization/1729291158738420000.6d04e7cc-b589-4c68-b86d-e696bdd9c79a" + } + }, { + "url" : "PV2.23", + "valueReference" : { + "reference" : "Organization/1729291158739092000.41467303-40b2-49a5-ad38-5a3005001aea" + } + }, { + "url" : "PV2.26", + "valueString" : "20230501102531-0400" + }, { + "url" : "PV2.29", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.19" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "VN" + } ], + "text" : "visit number" + }, + "value" : "22" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.50" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203" + } ] + }, + "value" : "alternate visit" + } ], + "status" : "finished", + "class" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "O" + } ] + } + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code" : "AMB", + "display" : "ambulatory" + }, + "type" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70007" + } ], + "code" : "R", + "display" : "Routine" + } ] + } ], + "serviceType" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70069" + } ], + "code" : "URO", + "display" : "Urology Service" + } ] + }, + "priority" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70217" + } ], + "code" : "3", + "display" : "Elective" + } ] + }, + "subject" : { + "reference" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca" + }, + "episodeOfCare" : [ { + "reference" : "EpisodeOfCare/1729291158748813000.c59d255f-d42b-43d4-8ede-0790a713c636" + } ], + "participant" : [ { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "ATND", + "display" : "attender" + } ] + } ], + "individual" : { + "reference" : "Practitioner/1729291158741030000.e55e13df-f30f-43bc-adc0-a73edeb12bc9" + } + }, { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "REF" + } ], + "text" : "referrer" + } ], + "individual" : { + "reference" : "Practitioner/1729291158741390000.bc08036e-cf62-4891-b2ce-29ad1424e1a1" + } + }, { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "CON" + } ], + "text" : "consultant" + } ], + "individual" : { + "reference" : "Practitioner/1729291158741726000.d67fc45e-a676-48e7-bcfb-8ccc71865d0b" + } + }, { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "ADM" + } ], + "text" : "admitter" + } ], + "individual" : { + "reference" : "Practitioner/1729291158742048000.34d785a5-c6e1-4e6f-8907-da22ccfc556f" + } + }, { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "REF" + } ], + "text" : "referrer" + } ], + "individual" : { + "reference" : "Practitioner/1729291158743468000.ed6f274b-d9e5-4ab6-b81f-ceaf451719b4" + } + }, { + "type" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code" : "REF" + } ], + "text" : "referrer" + } ], + "individual" : { + "reference" : "Practitioner/1729291158745041000.19b24241-7c15-4c94-a76c-dcbc1c881736" + } + } ], + "period" : { + "start" : "2024-08-01T10:25:31-04:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20240801102531-0400" + } ] + }, + "end" : "2024-08-01T10:25:31-04:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20240801102531-0400" + } ] + } + }, + "length" : { + "value" : 12, + "unit" : "days", + "system" : "http://unitsofmeasure.org/", + "code" : "d" + }, + "reasonCode" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV2.3" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "1", + "display" : "AD" + } ] + } ], + "hospitalization" : { + "preAdmissionIdentifier" : { + "value" : "232323" + }, + "admitSource" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70023" + } ], + "code" : "RL", + "display" : "Real Life" + } ] + }, + "reAdmission" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70092" + } ], + "code" : "R", + "display" : "Re-admission" + } ] + }, + "dietPreference" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70114" + } ], + "code" : "F", + "display" : "Fed" + } ] + } ], + "specialCourtesy" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70099" + } ], + "code" : "VIP", + "display" : "Very Interesting Person" + } ] + } ], + "destination" : { + "reference" : "Location/1729291158739420000.8be22947-a2a6-49f1-af12-f9c74ea4c476" + }, + "dischargeDisposition" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70112" + } ], + "code" : "H", + "display" : "Happy" + } ] + } + }, + "location" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.3" + } ], + "location" : { + "reference" : "Location/1729291158746760000.e24b446c-5bda-4542-aabb-d04a01437571" + }, + "status" : "active" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.6" + } ], + "location" : { + "reference" : "Location/1729291158747320000.20ca44ca-d5b4-492a-a124-bab78f7f198d" + }, + "status" : "completed" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.11" + }, { + "url" : "https://hl7.org/fhir/StructureDefinition/temporary-location", + "valueBoolean" : true + } ], + "location" : { + "reference" : "Location/1729291158747527000.add84404-ebf5-43b7-9a4c-fcbed365fd19" + }, + "status" : "active" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.42" + } ], + "location" : { + "reference" : "Location/1729291158747717000.3aa3d8c3-8d88-4062-87ac-96d709e8d9da" + }, + "status" : "planned" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.43" + }, { + "url" : "https://hl7.org/fhir/StructureDefinition/temporary-location", + "valueBoolean" : true + } ], + "location" : { + "reference" : "Location/1729291158747913000.375006a0-e443-4da8-892f-93961957b78d" + }, + "status" : "completed" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV2.1" + }, { + "url" : "https://hl7.org/fhir/StructureDefinition/temporary-location", + "valueBoolean" : false + } ], + "location" : { + "reference" : "Location/1729291158748439000.e72f22c5-f524-4591-a3ea-3a428bac395d" + }, + "status" : "planned" + } ] + } + }, { + "fullUrl" : "Location/1729291158738011000.baff084e-f4e5-411f-98f0-299570ebf9e8", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158738011000.baff084e-f4e5-411f-98f0-299570ebf9e8", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "2.16.840.1.113883.9.11" + } ], + "name" : "Hospital A", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158738420000.6d04e7cc-b589-4c68-b86d-e696bdd9c79a", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158738420000.6d04e7cc-b589-4c68-b86d-e696bdd9c79a", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "1", + "code" : "1234-5", + "display" : "TestText" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "2", + "code" : "1234-5", + "display" : "TestAltText" + } ], + "text" : "OriginalText" + } + } ], + "system" : "LN", + "version" : "1", + "code" : "1234-5", + "display" : "TestText" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.3", + "valueString" : "123" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "Check Digit" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Assigning Authority" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.1.4.1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "C1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158738011000.baff084e-f4e5-411f-98f0-299570ebf9e8" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "MD" + } ] + }, + "value" : "123" + } ], + "name" : "Org1" + } + }, { + "fullUrl" : "Location/1729291158738709000.6d090695-9048-4246-8a54-d16bd4e7233c", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158738709000.6d090695-9048-4246-8a54-d16bd4e7233c", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "2.16.840.1.113883.9.11" + } ], + "name" : "Hospital A", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158739092000.41467303-40b2-49a5-ad38-5a3005001aea", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158739092000.41467303-40b2-49a5-ad38-5a3005001aea", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "XON.2" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "1", + "code" : "1234-5", + "display" : "TestText" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "alt-coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "version" : "2", + "code" : "1234-5", + "display" : "TestAltText" + } ], + "text" : "OriginalText" + } + } ], + "system" : "LN", + "version" : "1", + "code" : "1234-5", + "display" : "TestText" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.3", + "valueString" : "123" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "Check Digit" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Assigning Authority" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.1.4.1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "C1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158738709000.6d090695-9048-4246-8a54-d16bd4e7233c" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "MD" + } ] + }, + "value" : "123" + } ], + "name" : "Org2" + } + }, { + "fullUrl" : "Location/1729291158739420000.8be22947-a2a6-49f1-af12-f9c74ea4c476", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158739420000.8be22947-a2a6-49f1-af12-f9c74ea4c476", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date", + "valueString" : "202305061200" + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158741030000.e55e13df-f30f-43bc-adc0-a73edeb12bc9", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158741030000.e55e13df-f30f-43bc-adc0-a73edeb12bc9", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "UUID" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.10", + "valueString" : "B" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.7" + } ], + "identifier" : [ { + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "Namespace", + "value" : "1" + } ], + "name" : [ { + "use" : "official", + "family" : "BEETHOVEN", + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ] + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158741390000.bc08036e-cf62-4891-b2ce-29ad1424e1a1", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158741390000.bc08036e-cf62-4891-b2ce-29ad1424e1a1", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.8" + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "MOZART" + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158741726000.d67fc45e-a676-48e7-bcfb-8ccc71865d0b", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158741726000.d67fc45e-a676-48e7-bcfb-8ccc71865d0b", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.9" + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "CHOPIN" + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158742048000.34d785a5-c6e1-4e6f-8907-da22ccfc556f", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158742048000.34d785a5-c6e1-4e6f-8907-da22ccfc556f", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.17" + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "BACH" + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158743468000.ed6f274b-d9e5-4ab6-b81f-ceaf451719b4", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158743468000.ed6f274b-d9e5-4ab6-b81f-ceaf451719b4", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV2.13" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "BEETHOVEN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Referral Source Code1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158745041000.19b24241-7c15-4c94-a76c-dcbc1c881736", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158745041000.19b24241-7c15-4c94-a76c-dcbc1c881736", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV2.13" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "BEETHOVEN", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Referral Source Code2" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + }, { + "fullUrl" : "Organization/1729291158745373000.e136730d-a978-4ee2-b38d-9cd80cbe874c", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158745373000.e136730d-a978-4ee2-b38d-9cd80cbe874c", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "AA" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "ISO" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "AssigningAUTH" + } ] + } + }, { + "fullUrl" : "Location/1729291158746274000.47571273-436d-4895-b58f-49f432919b86", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158746274000.47571273-436d-4895-b58f-49f432919b86", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "Hospital Assigned" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "ISO" + } ] + }, + "value" : "2.4.4.4" + } ], + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Location/1729291158746352000.e5fc878f-3c1c-474d-9504-c651dbc0b331", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158746352000.e5fc878f-3c1c-474d-9504-c651dbc0b331", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ] + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "value" : "Building" + } ], + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "bu" + } ] + }, + "partOf" : { + "reference" : "Location/1729291158746274000.47571273-436d-4895-b58f-49f432919b86" + } + } + }, { + "fullUrl" : "Location/1729291158746443000.a9eac0a3-bb7c-43be-a97e-f1b3958d34c2", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158746443000.a9eac0a3-bb7c-43be-a97e-f1b3958d34c2", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ] + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "value" : "Floor" + } ], + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "lvl" + } ] + }, + "partOf" : { + "reference" : "Location/1729291158746352000.e5fc878f-3c1c-474d-9504-c651dbc0b331" + } + } + }, { + "fullUrl" : "Location/1729291158746534000.3cd19c04-bec3-4b1e-ba2e-3f13289884c1", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158746534000.3cd19c04-bec3-4b1e-ba2e-3f13289884c1", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "A" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "C" + } ] + }, + "value" : "Point OF Care" + } ], + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString" : "poc" + } ] + } + } ] + }, + "partOf" : { + "reference" : "Location/1729291158746443000.a9eac0a3-bb7c-43be-a97e-f1b3958d34c2" + } + } + }, { + "fullUrl" : "Location/1729291158746616000.0607e80e-1ec1-45f5-8861-bcd9ca75caea", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158746616000.0607e80e-1ec1-45f5-8861-bcd9ca75caea", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "1" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "3" + } ] + }, + "value" : "Room" + } ], + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "ro" + } ] + }, + "partOf" : { + "reference" : "Location/1729291158746534000.3cd19c04-bec3-4b1e-ba2e-3f13289884c1" + } + } + }, { + "fullUrl" : "Location/1729291158746760000.e24b446c-5bda-4542-aabb-d04a01437571", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158746760000.e24b446c-5bda-4542-aabb-d04a01437571", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString" : "R" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "B" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "A" + } ] + }, + "value" : "Bed" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "UID4This" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString" : "organization" + } ], + "value" : "Comprehensive", + "assigner" : { + "reference" : "Organization/1729291158745373000.e136730d-a978-4ee2-b38d-9cd80cbe874c" + } + } ], + "description" : "Totally A Real Location", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "bd" + } ] + }, + "partOf" : { + "reference" : "Location/1729291158746616000.0607e80e-1ec1-45f5-8861-bcd9ca75caea" + } + } + }, { + "fullUrl" : "Organization/1729291158747044000.94e173a6-3244-489e-b58d-ec65b2c03d83", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158747044000.94e173a6-3244-489e-b58d-ec65b2c03d83", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "ASSIGNEE" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "UUID" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "222.1111.22222" + } ] + } + }, { + "fullUrl" : "Location/1729291158747320000.20ca44ca-d5b4-492a-a124-bab78f7f198d", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158747320000.20ca44ca-d5b4-492a-a124-bab78f7f198d", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString" : "location type" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "Hospital Prio" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "ISO" + } ] + }, + "value" : "2.4.4.4" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "NAME" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "UNI" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString" : "organization" + } ], + "value" : "Entity ID", + "assigner" : { + "reference" : "Organization/1729291158747044000.94e173a6-3244-489e-b58d-ec65b2c03d83" + } + } ], + "status" : "active", + "description" : "Description", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Location/1729291158747527000.add84404-ebf5-43b7-9a4c-fcbed365fd19", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158747527000.add84404-ebf5-43b7-9a4c-fcbed365fd19", + "description" : "Its Temporary", + "mode" : "instance" + } + }, { + "fullUrl" : "Location/1729291158747717000.3aa3d8c3-8d88-4062-87ac-96d709e8d9da", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158747717000.3aa3d8c3-8d88-4062-87ac-96d709e8d9da", + "description" : "Pending Location", + "mode" : "instance" + } + }, { + "fullUrl" : "Location/1729291158747913000.375006a0-e443-4da8-892f-93961957b78d", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158747913000.375006a0-e443-4da8-892f-93961957b78d", + "description" : "Prior Location", + "mode" : "instance" + } + }, { + "fullUrl" : "Organization/1729291158748165000.8e8db3a2-7ead-49cd-8137-111e1d7d43f2", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158748165000.8e8db3a2-7ead-49cd-8137-111e1d7d43f2", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "ASSIGNEE" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", + "code" : "UUID" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "222.1111.22222" + } ] + } + }, { + "fullUrl" : "Location/1729291158748439000.e72f22c5-f524-4591-a3ea-3a428bac395d", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158748439000.e72f22c5-f524-4591-a3ea-3a428bac395d", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString" : "location type" + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "Hospital PriorPending" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "ISO" + } ] + }, + "value" : "2.4.4.4" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "NAME" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "UNI" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString" : "organization" + } ], + "value" : "Entity ID", + "assigner" : { + "reference" : "Organization/1729291158748165000.8e8db3a2-7ead-49cd-8137-111e1d7d43f2" + } + } ], + "status" : "active", + "description" : "Description", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "EpisodeOfCare/1729291158748813000.c59d255f-d42b-43d4-8ede-0790a713c636", + "resource" : { + "resourceType" : "EpisodeOfCare", + "id" : "1729291158748813000.c59d255f-d42b-43d4-8ede-0790a713c636", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "PV1.54" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/episode-of-care-name", + "valueString" : "Service Description" + } ], + "identifier" : [ { + "value" : "episode identifier" + } ] + } + }, { + "fullUrl" : "Observation/1729291158910998000.27dcecd6-0296-4d0e-9d34-a9b2cdc172a3", + "resource" : { + "resourceType" : "Observation", + "id" : "1729291158910998000.27dcecd6-0296-4d0e-9d34-a9b2cdc172a3", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString" : "subid" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test", + "valueId" : "ST" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime" : "2023-09-12T18:08:02-04:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230912180802-0400" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode" : "30" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension" : [ { + "url" : "OBX.2", + "valueId" : "CWE" + }, { + "url" : "OBX.6", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL79999" + } ], + "code" : "g", + "display" : "gram" + } ] + } + }, { + "url" : "OBX.27", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL79900" + } ], + "code" : "RC", + "display" : "root cause" + } ] + } + }, { + "url" : "OBX.28", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL79900" + } ], + "code" : "LPC", + "display" : "Local Process" + } ] + } + }, { + "url" : "OBX.29", + "valueId" : "QST" + }, { + "url" : "OBX.31", + "valueId" : "31" + }, { + "url" : "OBX.32", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "32", + "display" : "value absent reason" + } ] + } + }, { + "url" : "OBX.33", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString" : "eip" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PGN" + } ] + }, + "value" : "33" + } + }, { + "url" : "OBX.9", + "valueString" : "99" + }, { + "url" : "OBX.11", + "valueString" : "F" + }, { + "url" : "OBX.12", + "valueString" : "20000101" + }, { + "url" : "OBX.13", + "valueString" : "user defined" + }, { + "url" : "OBX.17", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2" + } ] + } + }, { + "url" : "OBX.18", + "valueReference" : { + "reference" : "Device/1729291158910103000.91225479-ceca-43b2-b057-ba4d4db721da" + } + }, { + "url" : "OBX.20", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70163" + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v2-0163", + "code" : "BE", + "display" : "Bilateral Ears" + } ] + } + }, { + "url" : "OBX.26", + "valueId" : "26" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBX.21" + } ], + "type" : { + "coding" : [ { + "code" : "FILL" + } ] + }, + "value" : "entity id" + } ], + "status" : "final", + "code" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "LN" + } ], + "system" : "http://loinc.org", + "code" : "80383-3", + "display" : "Flu B" + } ] + }, + "subject" : { + "reference" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca" + }, + "encounter" : { + "reference" : "Encounter/1729291158748523000.e6b583e7-17ac-422d-a986-97f72ad3bbda" + }, + "effectiveDateTime" : "2023-01-01T00:00:00Z", + "_effectiveDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230101000000" + } ] + }, + "performer" : [ { + "reference" : "Organization/1729291158911367000.7a49c034-9660-433b-b57b-c3e28f1add68" + }, { + "reference" : "PractitionerRole/1729291158911505000.58d7f57a-a296-4c05-b24a-1e613f552e0f" + }, { + "reference" : "PractitionerRole/1729291158912015000.887b6c87-2497-4a38-945e-807a6c3cb6a9" + } ], + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "SCT" + } ], + "system" : "http://snomed.info/sct", + "code" : "260415000", + "display" : "Not detected" + } ] + }, + "interpretation" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "UP", + "display" : "Up to you" + } ] + } ], + "note" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension" : [ { + "url" : "NTE.2", + "valueId" : "L" + }, { + "url" : "NTE.7", + "valueString" : "20230202" + }, { + "url" : "NTE.8", + "valueString" : "20230203" + }, { + "url" : "NTE.9", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "CC", + "display" : "This is a coded comment for an observation note" + } ] + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId" : "OBX Note" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "RE", + "display" : "Remark" + } ] + } + } ], + "authorReference" : { + "reference" : "Practitioner/1729291158913363000.75217d83-e1ab-44f6-95ec-af347663a462" + }, + "time" : "2023-02-01", + "_time" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230201" + } ] + }, + "text" : "OBX Note" + } ], + "bodySite" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70163" + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v2-0163", + "code" : "BE", + "display" : "Bilateral Ears" + } ] + }, + "method" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2" + } ] + }, + "device" : { + "reference" : "Device/1729291158914164000.6895e08f-76fc-4155-b584-5362fd325e1a" + }, + "referenceRange" : [ { + "text" : "range of a few" + } ] + } + }, { + "fullUrl" : "Device/1729291158910103000.91225479-ceca-43b2-b057-ba4d4db721da", + "resource" : { + "resourceType" : "Device", + "id" : "1729291158910103000.91225479-ceca-43b2-b057-ba4d4db721da", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPTRDEV-001" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.17.840" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "Device 001" + } ] + } + }, { + "fullUrl" : "Organization/1729291158911367000.7a49c034-9660-433b-b57b-c3e28f1add68", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158911367000.7a49c034-9660-433b-b57b-c3e28f1add68", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "CLIA" + } ], + "code" : "11D1111111", + "display" : "CSV uploads" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBX.15" + } ], + "identifier" : [ { + "system" : "CLIA", + "value" : "11D1111111" + } ], + "name" : "CSV uploads" + } + }, { + "fullUrl" : "Practitioner/1729291158911855000.98f68938-0ab1-49a5-8b0f-30c5511db7f5", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158911855000.98f68938-0ab1-49a5-8b0f-30c5511db7f5", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "Quinlen" + } ] + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "Frances", + "given" : [ "Quinlen" ] + } ] + } + }, { + "fullUrl" : "PractitionerRole/1729291158911505000.58d7f57a-a296-4c05-b24a-1e613f552e0f", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1729291158911505000.58d7f57a-a296-4c05-b24a-1e613f552e0f", + "practitioner" : { + "reference" : "Practitioner/1729291158911855000.98f68938-0ab1-49a5-8b0f-30c5511db7f5" + }, + "code" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/practitioner-role", + "code" : "responsibleObserver" + } ] + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158912293000.d3a1870f-41a5-4bcb-a8d9-8e66238e9465", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158912293000.d3a1870f-41a5-4bcb-a8d9-8e66238e9465", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "Quinlen" + } ] + } ], + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "Mark", + "given" : [ "Quinlen" ] + } ] + } + }, { + "fullUrl" : "Organization/1729291158912791000.80a47615-5d9e-4b9c-8dfa-37f91af387c6", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158912791000.80a47615-5d9e-4b9c-8dfa-37f91af387c6", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.10", + "valueString" : "11D1111111" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CLIA" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.113883.4.7" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "XX" + } ] + }, + "value" : "11D1111111" + } ], + "name" : "CSV uploads-11D1111111", + "address" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "2 Second Dr" + } ] + } ] + } ], + "line" : [ "2 Second Dr" ], + "state" : "IG", + "postalCode" : "94553", + "country" : "USA" + } ] + } + }, { + "fullUrl" : "PractitionerRole/1729291158912015000.887b6c87-2497-4a38-945e-807a6c3cb6a9", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1729291158912015000.887b6c87-2497-4a38-945e-807a6c3cb6a9", + "practitioner" : { + "reference" : "Practitioner/1729291158912293000.d3a1870f-41a5-4bcb-a8d9-8e66238e9465" + }, + "organization" : { + "reference" : "Organization/1729291158912791000.80a47615-5d9e-4b9c-8dfa-37f91af387c6" + }, + "code" : [ { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", + "code" : "MDIR" + } ] + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158913363000.75217d83-e1ab-44f6-95ec-af347663a462", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158913363000.75217d83-e1ab-44f6-95ec-af347663a462", + "identifier" : [ { + "value" : "Bob R.N.A." + } ] + } + }, { + "fullUrl" : "Device/1729291158914164000.6895e08f-76fc-4155-b584-5362fd325e1a", + "resource" : { + "resourceType" : "Device", + "id" : "1729291158914164000.6895e08f-76fc-4155-b584-5362fd325e1a", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPTRDEV-001" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.17.840" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "Device 001" + } ] + } + }, { + "fullUrl" : "ServiceRequest/1729291158936263000.5f403463-87f3-4c92-9f47-e5f0d48e7186", + "resource" : { + "resourceType" : "ServiceRequest", + "id" : "1729291158936263000.5f403463-87f3-4c92-9f47-e5f0d48e7186", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode" : "RE" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString" : "20230725" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL79999" + } ], + "code" : "OS", + "display" : "order status" + } ] + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension" : [ { + "url" : "ORC.5", + "valueString" : "CM" + }, { + "url" : "ORC.6", + "valueString" : "E" + }, { + "url" : "ORC.19", + "valueReference" : { + "reference" : "Practitioner/1729291158920752000.024c5626-05c5-45f7-a14c-30b7c81c7700" + } + }, { + "url" : "orc-21-ordering-facility-name", + "valueReference" : { + "reference" : "Organization/1729291158921164000.d9c2a1ef-fa84-403d-ae73-b9cd9dc7aa6d" + } + }, { + "url" : "orc-22-ordering-facility-address", + "valueAddress" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "111 Street St" + } ] + } ] + } ], + "line" : [ "111 Street St" ], + "city" : "Streetsville", + "state" : "ST" + } + }, { + "url" : "orc-24-ordering-provider-address", + "valueAddress" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "111 Road Rd" + } ] + } ] + } ], + "line" : [ "111 Road Rd" ], + "city" : "Roadsville", + "state" : "RD" + } + }, { + "url" : "ORC.27", + "valueString" : "20260404" + }, { + "url" : "ORC.28", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70177" + } ], + "code" : "EMP", + "display" : "Employee" + } ] + } + }, { + "url" : "ORC.30", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding-system", + "valueString" : "HL70483" + } ], + "code" : "EL", + "display" : "Electronic" + } ] + } + }, { + "url" : "ORC.31", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70000" + } ], + "code" : "UMM", + "display" : "Universal Modifier" + } ] + } + }, { + "url" : "ORC.32", + "valueString" : "20250403" + }, { + "url" : "ORC.8", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPHL-000048" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.10765" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString" : "Specimen12333454" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPHL-000048" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.10765" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "ISO" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PGN" + } ] + }, + "value" : "Specimen12333" + } + }, { + "url" : "ORC.10", + "valueReference" : { + "reference" : "Practitioner/1729291158922473000.c533de3e-d2ba-44e0-8b6b-453b1576663e" + } + }, { + "url" : "ORC.11", + "valueReference" : { + "reference" : "Practitioner/1729291158922799000.5359badb-22f7-48ba-9960-6e64b3441c64" + } + }, { + "url" : "orc-12-ordering-provider", + "valueReference" : { + "reference" : "Practitioner/1729291158923141000.1b20e06c-4c1e-45ab-bb17-2a0f784195bd" + } + }, { + "url" : "ORC.13", + "valueReference" : { + "reference" : "Location/1729291158923690000.bce36e37-6828-4d55-ac5e-c84b72ed8864" + } + }, { + "url" : "ORC.15", + "valueString" : "202101021000" + }, { + "url" : "ORC.17", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL79999" + } ], + "code" : "EO", + "display" : "entering org text" + } ] + } + }, { + "url" : "ORC.18", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL79999" + } ], + "code" : "ED", + "display" : "entering device text" + } ] + } + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ { + "url" : "OBR.2", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Placer Identifier Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "Placer Universal ID" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "Placer Identifier" + } + }, { + "url" : "OBR.3", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Filler Identifier Namespace" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "Filler Universal ID" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "Filler Identifier" + } + }, { + "url" : "OBR.20", + "valueString" : "filler1" + }, { + "url" : "OBR.21", + "valueString" : "filler2" + }, { + "url" : "OBR.23", + "extension" : [ { + "url" : "moc-1-1-monetary-amount", + "valueString" : "100" + }, { + "url" : "moc-1-2-monetary-denomination", + "valueString" : "$" + }, { + "url" : "moc-2-charge-code", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "16", + "display" : "code" + } ] + } + } ] + }, { + "url" : "OBR.24", + "valueId" : "OTH" + }, { + "url" : "OBR.25", + "valueId" : "F" + }, { + "url" : "OBR.26", + "extension" : [ { + "url" : "prl-1-parent-observation-identifier", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "444", + "display" : "ParentId" + } ] + } + }, { + "url" : "prl-2-parent-observation-sub-identifier", + "valueString" : "888" + }, { + "url" : "prl-3-parent-observation-descriptor", + "valueString" : "ParentOBSdescriptor" + } ] + }, { + "url" : "OBR.28", + "valueReference" : { + "reference" : "Practitioner/1729291158924936000.f7d9f43a-4887-49ab-8756-ef1d1d1f9e1f" + } + }, { + "url" : "OBR.29", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CSV" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "11D1111111" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "CLIA" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Other CSV" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "22D2222222" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "CLIA2" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PGN" + } ] + }, + "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + } + }, { + "url" : "OBR.33", + "valueReference" : { + "reference" : "PractitionerRole/1729291158931548000.0a58e2a6-5f45-48e8-8eb7-b8331a7c6350" + } + }, { + "url" : "OBR.10", + "valueReference" : { + "reference" : "Practitioner/1729291158932532000.051e3555-203d-4835-9150-46847e25ffcd" + } + }, { + "url" : "OBR.36", + "valueString" : "20230806123359-0500" + }, { + "url" : "OBR.39", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4438", + "display" : "Collectors Comment" + } ] + } + }, { + "url" : "OBR.39", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4438", + "display" : "Collectors Comment2" + } ] + } + }, { + "url" : "OBR.44", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString" : "coding" + } ], + "code" : "5019", + "display" : "Procedure Code" + } ] + } + }, { + "url" : "obr-45-procedure-code-modifier", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString" : "coding" + } ], + "code" : "887766", + "display" : "Procedure Code Modifier" + } ] + } + }, { + "url" : "obr-45-procedure-code-modifier", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString" : "coding" + } ], + "code" : "887766", + "display" : "Procedure Code Modifier2" + } ] + } + }, { + "url" : "OBR.48", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "71435", + "display" : "Medically Necessary Duplicate Procedure" + } ] + } + }, { + "url" : "OBR.49", + "valueString" : "N" + }, { + "url" : "OBR.50", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "443331", + "display" : "Parent Universal Service Identifier" + } ] + } + }, { + "url" : "OBR.53", + "valueIdentifier" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "Placer Order" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBR.53" + } ], + "value" : "Alt" + } + }, { + "url" : "OBR.53", + "valueIdentifier" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "Placer Order2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBR.53" + } ], + "value" : "Alt" + } + }, { + "url" : "OBR.54", + "valueIdentifier" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "CSV" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "11D1111111" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "CLIA" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Other CSV" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "22D2222222" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString" : "CLIA2" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PGN" + } ] + }, + "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + } + }, { + "url" : "OBR.11", + "valueString" : "G" + }, { + "url" : "OBR.12", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "512", + "display" : "Danger code" + } ] + } + }, { + "url" : "OBR.13", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "relevent info" + } ] + } + }, { + "url" : "OBR.16", + "valueReference" : { + "reference" : "Practitioner/1729291158934431000.fd15a4f2-9549-4ee5-832d-709bc029246a" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString" : "1" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString" : "260" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString" : "7595016" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.2", + "valueString" : "WPN" + }, { + "url" : "XTN.3", + "valueString" : "BP" + }, { + "url" : "XTN.7", + "valueString" : "7595016" + }, { + "url" : "XTN.12", + "valueString" : "+1 260 759 5016" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBR.17" + } ], + "system" : "pager", + "value" : "+1 260 759 5016", + "use" : "work" + } + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.2", + "valueString" : "WPN" + }, { + "url" : "XTN.3", + "valueString" : "Internet" + }, { + "url" : "XTN.4", + "valueString" : "order.callback@email.com" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBR.17" + } ], + "system" : "email", + "value" : "order.callback@email.com", + "use" : "work" + } + }, { + "url" : "OBR.18", + "valueString" : "placer1" + }, { + "url" : "OBR.19", + "valueString" : "placer2" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPHL-000048" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.10765" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } ] + }, + "value" : "Specimen123" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.3" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPHL-000048" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.10765" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "FILL" + } ] + }, + "value" : "Specimen12311" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.4" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPHL-000048" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.10765" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PGN" + } ] + }, + "value" : "Specimen12322" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.4" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "SPHL-000048" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.1.10765" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "FGN" + } ] + }, + "value" : "Specimen12322" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.33" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } ] + }, + "value" : "33" + } ], + "status" : "completed", + "intent" : "order", + "code" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "123", + "display" : "Universal service identifier" + } ] + }, + "orderDetail" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBR.46" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "7461", + "display" : "Placer Supplemental" + } ] + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBR.46" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "7461", + "display" : "Placer Supplemental2" + } ] + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBR.47" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "8811", + "display" : "Fillter Supplemental" + } ] + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "OBR.47" + } ], + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "8811", + "display" : "Fillter Supplemental2" + } ] + } ], + "subject" : { + "reference" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca" + }, + "occurrenceDateTime" : "2022-02-02T10:22:00Z", + "_occurrenceDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202202021022" + } ] + }, + "requester" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.1", + "valueString" : "123" + }, { + "url" : "XTN.4", + "valueString" : "+123" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.14" + } ], + "system" : "email", + "value" : "123" + } + } ], + "reference" : "PractitionerRole/1729291158917089000.11c90c5e-0ed2-4f77-b6ba-7eedcf0195d9" + }, + "locationCode" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70482" + } ], + "code" : "I", + "display" : "Inpatient Order" + } ] + } ], + "reasonCode" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "3216", + "display" : "ReasonForStudy" + } ] + }, { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "3216", + "display" : "ReasonForStudy2" + } ] + } ], + "supportingInfo" : [ { + "reference" : "Observation/1729291158910998000.27dcecd6-0296-4d0e-9d34-a9b2cdc172a3" + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158917713000.cab4cddf-a711-40a0-a063-4ad646ddf375", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158917713000.cab4cddf-a711-40a0-a063-4ad646ddf375", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "ORC.12Name" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.12" + } ], + "identifier" : [ { + "value" : "93" + } ], + "name" : [ { + "given" : [ "ORC.12Name" ] + } ], + "address" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "111 Road Rd" + } ] + } ] + } ], + "line" : [ "111 Road Rd" ], + "city" : "Roadsville", + "state" : "RD" + } ] + } + }, { + "fullUrl" : "Location/1729291158918001000.d47fb820-ae92-4621-a8e3-b1053ae79193", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158918001000.d47fb820-ae92-4621-a8e3-b1053ae79193", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "2.16.840.1.114222.8.7.6.5.4.1" + } ], + "name" : "STARLINKS.CDC.Stag", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158918665000.f64034a5-85f2-407e-bc34-76b5da8e2570", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158918665000.f64034a5-85f2-407e-bc34-76b5da8e2570", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "A" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.10", + "valueString" : "SPHL-000048" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "STARLIMS.CDC.Stag" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158918001000.d47fb820-ae92-4621-a8e3-b1053ae79193" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "XX" + } ] + }, + "value" : "SPHL-000048" + } ], + "name" : "CDPH, Viral and Rickettsial Disease Laboratory", + "telecom" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension" : [ { + "url" : "XTN.1", + "valueString" : "456" + }, { + "url" : "XTN.4", + "valueString" : "+456" + } ] + } ], + "system" : "email", + "value" : "456" + } ], + "address" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension" : [ { + "url" : "SAD.1", + "valueString" : "111 Street St" + } ] + } ] + } ], + "line" : [ "111 Street St" ], + "city" : "Streetsville", + "state" : "ST" + } ] + } + }, { + "fullUrl" : "PractitionerRole/1729291158917089000.11c90c5e-0ed2-4f77-b6ba-7eedcf0195d9", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1729291158917089000.11c90c5e-0ed2-4f77-b6ba-7eedcf0195d9", + "practitioner" : { + "reference" : "Practitioner/1729291158917713000.cab4cddf-a711-40a0-a063-4ad646ddf375" + }, + "organization" : { + "reference" : "Organization/1729291158918665000.f64034a5-85f2-407e-bc34-76b5da8e2570" + } + } + }, { + "fullUrl" : "Practitioner/1729291158920752000.024c5626-05c5-45f7-a14c-30b7c81c7700", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158920752000.024c5626-05c5-45f7-a14c-30b7c81c7700", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "ORC.19Name" + } ] + } ], + "identifier" : [ { + "value" : "60" + } ], + "name" : [ { + "given" : [ "ORC.19Name" ] + } ] + } + }, { + "fullUrl" : "Location/1729291158920994000.1f23c2c7-b4de-418c-8a4c-51530300d30e", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158920994000.1f23c2c7-b4de-418c-8a4c-51530300d30e", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ], + "identifier" : [ { + "value" : "2.16.840.1.114222.8.7.6.5.4.1" + } ], + "name" : "STARLINKS.CDC.Stag", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Organization/1729291158921164000.d9c2a1ef-fa84-403d-ae73-b9cd9dc7aa6d", + "resource" : { + "resourceType" : "Organization", + "id" : "1729291158921164000.d9c2a1ef-fa84-403d-ae73-b9cd9dc7aa6d", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString" : "A" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension" : [ { + "url" : "XON.10", + "valueString" : "SPHL-000048" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "STARLIMS.CDC.Stag" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference" : { + "reference" : "Location/1729291158920994000.1f23c2c7-b4de-418c-8a4c-51530300d30e" + } + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "XX" + } ] + }, + "value" : "SPHL-000048" + } ], + "name" : "CDPH, Viral and Rickettsial Disease Laboratory" + } + }, { + "fullUrl" : "Practitioner/1729291158922473000.c533de3e-d2ba-44e0-8b6b-453b1576663e", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158922473000.c533de3e-d2ba-44e0-8b6b-453b1576663e", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "ORC.10Name" + } ] + } ], + "identifier" : [ { + "value" : "71" + } ], + "name" : [ { + "given" : [ "ORC.10Name" ] + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158922799000.5359badb-22f7-48ba-9960-6e64b3441c64", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158922799000.5359badb-22f7-48ba-9960-6e64b3441c64", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "ORC.11Name" + } ] + } ], + "identifier" : [ { + "value" : "82" + } ], + "name" : [ { + "given" : [ "ORC.11Name" ] + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158923141000.1b20e06c-4c1e-45ab-bb17-2a0f784195bd", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158923141000.1b20e06c-4c1e-45ab-bb17-2a0f784195bd", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "ORC.12Name" + } ] + } ], + "identifier" : [ { + "value" : "93" + } ], + "name" : [ { + "given" : [ "ORC.12Name" ] + } ] + } + }, { + "fullUrl" : "Location/1729291158923548000.01d5590c-8270-4b72-b3c6-37d52d174108", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158923548000.01d5590c-8270-4b72-b3c6-37d52d174108", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "12.12.12" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "L" + } ] + }, + "value" : "enter location id" + } ], + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString" : "poc" + } ] + } + } ] + } + } + }, { + "fullUrl" : "Location/1729291158923690000.bce36e37-6828-4d55-ac5e-c84b72ed8864", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158923690000.bce36e37-6828-4d55-ac5e-c84b72ed8864", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "12.12.12" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "L" + } ] + }, + "value" : "enter location id" + } ], + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString" : "poc" + } ] + } + } ] + }, + "partOf" : { + "reference" : "Location/1729291158923548000.01d5590c-8270-4b72-b3c6-37d52d174108" + } + } + }, { + "fullUrl" : "Practitioner/1729291158924936000.f7d9f43a-4887-49ab-8756-ef1d1d1f9e1f", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158924936000.f7d9f43a-4887-49ab-8756-ef1d1d1f9e1f", + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "result", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "copiesto" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "NotSoJollyROGER" + } ] + } + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158925581000.1c33c538-0576-485b-ad9d-06b8150ba604", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158925581000.1c33c538-0576-485b-ad9d-06b8150ba604", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension" : [ { + "url" : "CNN.3", + "valueString" : "Results Interpreter" + }, { + "url" : "CNN.4", + "valueString" : "S" + }, { + "url" : "CNN.5", + "valueString" : "ESQ" + }, { + "url" : "CNN.7", + "valueString" : "MD" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString" : "Assigning Authority" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "2.1.4.1" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + } ], + "value" : "123" + } ], + "name" : [ { + "family" : "Assistant", + "given" : [ "Results Interpreter", "S" ], + "prefix" : [ "DR" ], + "suffix" : [ "ESQ", "MD" ] + } ] + } + }, { + "fullUrl" : "Location/1729291158926027000.dee5bea7-5a46-4d21-821a-4bf064becb60", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158926027000.dee5bea7-5a46-4d21-821a-4bf064becb60", + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.1" + } ], + "value" : "Hospital A" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "HD.2,HD.3" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "ISO" + } ] + }, + "value" : "2.16.840.1.113883.9.11" + } ], + "status" : "active", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "si" + } ] + } + } + }, { + "fullUrl" : "Location/1729291158930548000.af295f16-53b5-4748-b98a-562de34612cd", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158930548000.af295f16-53b5-4748-b98a-562de34612cd", + "identifier" : [ { + "value" : "Building 123" + } ], + "status" : "active", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "bu" + } ] + } + } + }, { + "fullUrl" : "Location/1729291158930874000.8b958775-eb86-426e-beff-0ab25bcd1849", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158930874000.8b958775-eb86-426e-beff-0ab25bcd1849", + "identifier" : [ { + "value" : "Point of Care" + } ], + "status" : "active", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString" : "poc" + } ] + } + } ] + } + } + }, { + "fullUrl" : "Location/1729291158931094000.0c7579ad-e3cb-4868-bb29-a9ade5bcd506", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158931094000.0c7579ad-e3cb-4868-bb29-a9ade5bcd506", + "identifier" : [ { + "value" : "Floor A" + } ], + "status" : "active", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "lvl" + } ] + } + } + }, { + "fullUrl" : "Location/1729291158931277000.14b089ea-b623-406c-a101-c2ad4674f37f", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158931277000.14b089ea-b623-406c-a101-c2ad4674f37f", + "identifier" : [ { + "value" : "Room 101" + } ], + "status" : "active", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "ro" + } ] + } + } + }, { + "fullUrl" : "Location/1729291158931473000.923f8586-db44-42a2-b826-9443f81b36ab", + "resource" : { + "resourceType" : "Location", + "id" : "1729291158931473000.923f8586-db44-42a2-b826-9443f81b36ab", + "identifier" : [ { + "value" : "Bed A" + } ], + "status" : "active", + "mode" : "instance", + "physicalType" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code" : "bd" + } ] + } + } + }, { + "fullUrl" : "PractitionerRole/1729291158931548000.0a58e2a6-5f45-48e8-8eb7-b8331a7c6350", + "resource" : { + "resourceType" : "PractitionerRole", + "id" : "1729291158931548000.0a58e2a6-5f45-48e8-8eb7-b8331a7c6350", + "period" : { + "start" : "2023-04-01T10:25:31-04:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230401102531-0400" + } ] + }, + "end" : "2023-05-01T10:25:31-04:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230501102531-0400" + } ] + } + }, + "practitioner" : { + "reference" : "Practitioner/1729291158925581000.1c33c538-0576-485b-ad9d-06b8150ba604" + }, + "location" : [ { + "reference" : "Location/1729291158926027000.dee5bea7-5a46-4d21-821a-4bf064becb60" + }, { + "reference" : "Location/1729291158930548000.af295f16-53b5-4748-b98a-562de34612cd" + }, { + "reference" : "Location/1729291158930874000.8b958775-eb86-426e-beff-0ab25bcd1849" + }, { + "reference" : "Location/1729291158931094000.0c7579ad-e3cb-4868-bb29-a9ade5bcd506" + }, { + "reference" : "Location/1729291158931277000.14b089ea-b623-406c-a101-c2ad4674f37f" + }, { + "reference" : "Location/1729291158931473000.923f8586-db44-42a2-b826-9443f81b36ab" + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158932532000.051e3555-203d-4835-9150-46847e25ffcd", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158932532000.051e3555-203d-4835-9150-46847e25ffcd", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "use" : "official", + "family" : "Collector", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD" ] + } ] + } + }, { + "fullUrl" : "Practitioner/1729291158934431000.fd15a4f2-9549-4ee5-832d-709bc029246a", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1729291158934431000.fd15a4f2-9549-4ee5-832d-709bc029246a", + "identifier" : [ { + "value" : "1" + } ], + "name" : [ { + "family" : "Ordering", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Provider" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "JollyROGER" + } ] + } + } ] + } + } ] +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7 new file mode 100644 index 00000000000..44981ed2f2f --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7 @@ -0,0 +1,10 @@ +MSH|^~\&|OrderingFacilityApplicationName^2.16.840.1.114222.XXX^ISO|OrderingFacilityName^2.16.840.1.114222.XXX^ISO|txdshslabNBS^2.16.840.1.114222.4.1.181960.2^ISO|txdshslab^2.16.840.1.114222.4.1.181960^ISO|20190720091229|msh8placeholder|ORM^O01^ORM_O01|0123|P^A|2.5.1|42|msh14placeholder|AL|AL|FR|UNICODE UTF-8|ENG^English^ISO^altE^altEnglish^altISO^131^313^originaltext^2ndalt^Second Alt|UNICODE UTF-16|PHLabReport-NoAck^PHIN^2.16.840.1.113883.9.11^ISO|Sending Responsible Org^1357-9&SomeText&LN&2468-5&SomeAltText&LN&1&2&OriginalText^1111^9^BCV^The Authority&4.2.8.2&ISO^BC^Clinic A&1.8.440.1.1138.9.22&ISO^NameRepCode1^OrgIdentifier2|Receiving Responsible Org^1133-5&SomeOtherText&LN&1298-7&SomeOtherAltText&LN&1&2&TheOriginalText^5555^8^CCTV^An Authority&45.24.167.43&ISO^BCVan^Clinic B&10.10.40.10.11380.90.22&ISO^NameRepCode2^OrgIdentifier3|SendingNetworkAddress^1.23.987.1.114222.XXX^ISO|ReceivingNetworkAddress^9.87.123.1.114222.XXX^ISO +PID|1||Patidlist^forty^123^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO^20210113^20211230^IX&Ninth&HL7123^X&Tenth&HL7123~PID123^^^SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^PI||Mega&Mr&MrOwnMega&Mrs&MrsOwn^HL7^MI^V^DR^BCN^L^Naaame^C&Name Context&HL7444^Yes^G^19900503^20030503^Prof|Mind^FHIR^WI^^^^L|1640|F^Female^HL70001||2106-3^White^HL70005|123 Main St^Altxad^AnyTown^IG^95802^USA^H^MahHome^ThoCo^Census^A^2020&2024^2022^2027^^^^^MrSir||12345^PRS^CP^real@example.com^1^713^5553861^1^himom^^4^17135553862^1999^2000^^^^7|9865^EMR^SAT^alsoreal@exmaple.com^1^281^5553861|E^English^HL70296|P^Domestic Partnet^HL70002|AGN^Agnostic^HL70006|32|||maybe|U^Uknown^HL70189|Bayou|Y|11|USA^United States^HL70171|NA^Not Applicable^HL70172|A^American^HL70212|2031|Y|N|AL^Alias^HL70445|202408211138|RSDT^0.0.0.1.1138^ISO|D^Dog^HL70446|||RA^Racing^HL70429|N^None^HL70171|40 +PD1|C^Small Children Dependent^HL70223^M^Medical Supervision Required^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3~O^Other^HL70223^U^Unknown^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3|A^Alone^HL70220^F^Family^HL70220^2.5.1^4^TEST^F^Family^HL70220^2.5.1^8.44.235.1.113883.3.3|Receiving Responsible Org^1133-5&SomeOtherText&LN&1298-7&SomeOtherAltText&LN&1&2&TheOriginalText^5555^8^CCTV^An Authority&45.24.167.43&ISO^BCVan^Clinic B&10.10.40.10.11380.90.22&ISO^NameRepCode2^OrgIdentifier3||F^Full-time student^HL70231^N^Not a student^HL70231^2.5.1^4^TEST^N^Not a student^HL70231^2.5.1^8.44.235.1.113883.3.3|T^TEST^HL70295^P^Prod^HL70295^2.5.1^4^TEST^D^Debug^HL70295^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient has a living will but it is not on file^HL70315^I^No, patient does not have a living will but information was provided^HL70315^2.5.1^4^TEST^U^Unknown^HL70315^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient is a documented donor, but documentation is not on file^HL70316^I^No, patient is not a documented donor, but information was provided^HL70316^2.5.1^4^TEST^U^Unknown^HL70316^2.5.1^8.44.235.1.113883.3.3|N|18547545^^^NIST MPI&2.16.840.1.113883.3.72.5.30.2&ISO^MR^University H&2.16.840.1.113883.3.0&ISO~111111111^^^SSN&2.16.840.1.113883.4.1&ISO^SS^SSA&2.16.840.1.113883.3.184&ISO|F^Family only^HL70215^N^No Publicity^HL70215^2.5.1^4^TEST^U^Unknown^HL70215^2.5.1^8.44.235.1.113883.3.3|N|20230501102531-0400|1st Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^1st OrgIdentifier~2nd Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^2nd OrgIdentifier|DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3~DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3|A^Active^HL70441^I^Inactive^HL70441^2.5.1^4^TEST^O^Other^HL70441^2.5.1^8.44.235.1.113883.3.3|20230501102532-0400|20230501102533-0400|AUSA^Australian Army^HL70140^AUSFA^Australian Air Force^HL70140^2.5.1^4^TEST^AUSN^Australian Navy^HL70140^2.5.1^8.44.235.1.113883.3.3|E1... E9^Enlisted^HL70141^O1 ... O9^Officers^HL70141^2.5.1^4^TEST^W1 ... W4^Warrent Officers^HL70141^2.5.1^8.44.235.1.113883.3.3|ACT^Active duty^HL70142^DEC^Deceased^HL70142^2.5.1^4^TEST^RET^Retired^HL70142^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400 +NTE|1|L|Accession level coment.|RE^Remark^HL70364^z^x^y^2.5.1^a^b|Bob R.N.|20230531|20230601|20350201|CC^Coded comment for patient note +PV1|1|O|A&Point OF Care&C^1&Room&3^B&Bed&A^Hospital Assigned&2.4.4.4&ISO^^R^&Building^&Floor^Totally A Real Location^Comprehensive&&UID4This^AA&AssigningAUTH&ISO|R^Routine^HL70007|232323|^^^Hospital Prio&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID|1^BEETHOVEN^LUDWIG^B^2ND^DR^MD^^Namespace&AssigningSystem&UUID^B^^^DL^^^^^^^^MD|1^MOZART|1^CHOPIN|URO^Urology Service^HL70069|^^^^^^^^Its Temporary|P^Passed^HL70087|R^Re-admission^HL70092|RL^Real Life^HL70023||VIP^Very Interesting Person^HL70099|1^BACH|H^Human Patient^HL70018|22|||||||||||20020101|C^Collectors^HL70021|1|0|Y^Yes^HL70111|20080101|H^Happy^HL70112|^202305061200|F^Fed^HL70114|H^A Hospital Of Course^HL70115||A^Active^HL70117|^^^^^^^^Pending Location|^^^^^^^^Prior Location|20240801102531-0400|20240801102531-0400|100|199|142|130|alternate visit|A^Account Level^HL70326||Service Description|episode identifier +PV2|^^^Hospital PriorPending&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID||1^AD||||413^V~423^X|20230601102531-0400|20230701102531-0400|5|12|Description|1^BEETHOVEN&VAN&Referral Source Code1&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^BEETHOVEN&VAN&Referral Source Code2&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||EMP_ILL||||||100^PublicCode|SEC|Org1^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO~Org2^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO||3^Elective^HL70217|20230501102531-0400|||20220501102531-0400|||||||||444^MODE||123^CARELEVEL1 +ORC|RE|Specimen123^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12311^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12322^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|CM|E||Specimen12333&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^Specimen12333454&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO|20230725|71^^ORC.10Name|82^^ORC.11Name|93^^ORC.12Name|12.12.12&enter location id&L|123^^^+123|202101021000||EO^entering org text^HL79999|ED^entering device text^HL79999|60^^ORC.19Name||CDPH, Viral and Rickettsial Disease Laboratory^^^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^XX^STARLINKS.CDC.Stag&2.16.840.1.114222.8.7.6.5.4.1&ISO^A^SPHL-000048|111 Street St^^Streetsville^ST|456^^^+456|111 Road Rd^^Roadsville^RD|OS^order status^HL79999||20260404|EMP^Employee^HL70177|I^Inpatient Order^HL70482|EL^Electronic^HL70483|UMM^Universal Modifier^HL70000|20250403|33 +OBR|1|Placer Identifier^Placer Identifier Namespace^Placer Universal ID^ISO|Filler Identifier^Filler Identifier Namespace^Filler Universal ID^ISO|123^Universal service identifier||202202021022||||1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext|G|512^Danger code|relevent info|||1^Ordering&VAN&Provider&VAL&JollyROGER|^WPN^BP^^1^260^7595016^^^^^+1 260 759 5016~^WPN^Internet^order.callback@email.com|placer1|placer2|filler1|filler2||100&$^16&code|OTH|F|444&ParentId^888^ParentOBSdescriptor||1^result&VAN&copiesto&VAL&NotSoJollyROGER|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2||3216^ReasonForStudy~3216^ReasonForStudy2||123&Assistant&Results Interpreter&S&ESQ&DR&MD&&Assigning Authority&2.1.4.1&ISO^20230401102531-0400^20230501102531-0400^Point of Care^Room 101^Bed A^Hospital A&2.16.840.1.113883.9.11&ISO^active^^Building 123^Floor A|||20230806123359-0500|||4438^Collectors Comment~4438^Collectors Comment2|||||5019^Procedure Code|887766^Procedure Code Modifier~887766^Procedure Code Modifier2|7461^Placer Supplemental~7461^Placer Supplemental2|8811^Fillter Supplemental~8811^Fillter Supplemental2|71435^Medically Necessary Duplicate Procedure|N|443331^Parent Universal Service Identifier|||Alt^Placer Order~Alt^Placer Order2|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2 +OBX|1|CWE|80383-3^Flu B^LN|subid|260415000^Not detected^SCT|g^gram^HL79999|range of a few|UP^Up to you|99|ST|F|20000101|user defined|20230101000000|11D1111111^CSV uploads^CLIA|1^Frances^Quinlen|^BD Veritor System for Rapid Detection of SARS-CoV-2|Device 001^SPTRDEV-001^2.17.840^ISO|20230912180802-0400|BE^Bilateral Ears^HL70163|entity id||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen|26|RC^root cause^HL79900|LPC^Local Process^HL79900|QST|30|31|32^value absent reason|33^eip +NTE|1|L|OBX Note|RE^Remark|Bob R.N.A.|20230201|20230202|20230203|CC^This is a coded comment for an observation note \ No newline at end of file From e077e8ad6e3256ced0509fa1003a3d8d7cfade66 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Tue, 12 Nov 2024 17:20:11 -0500 Subject: [PATCH 03/34] [16144] Modifications for user story 16144 - Implement Translate Step Updates --- .../event/ReportStreamEventData.kt | 1 + .../fhirengine/engine/FHIRTranslator.kt | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt b/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt index 7596e10913f..cd90d238b64 100644 --- a/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt +++ b/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt @@ -92,6 +92,7 @@ enum class ReportStreamEventName { REPORT_NOT_PROCESSABLE, ITEM_SENT, PIPELINE_EXCEPTION, + ITEM_TRANSFORMED, } /** diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 674ea533330..1b717432335 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -6,6 +6,8 @@ import ca.uhn.hl7v2.model.Segment import ca.uhn.hl7v2.util.Terser import fhirengine.engine.CustomFhirPathFunctions import fhirengine.engine.CustomTranslationFunctions +import gov.cdc.prime.reportstream.shared.BlobUtils +import gov.cdc.prime.reportstream.shared.BlobUtils.sha256Digest import gov.cdc.prime.reportstream.shared.QueueMessage import gov.cdc.prime.router.ActionLogger import gov.cdc.prime.router.CustomerStatus @@ -26,6 +28,8 @@ import gov.cdc.prime.router.azure.observability.context.withLoggingContext import gov.cdc.prime.router.azure.observability.event.AzureEventService import gov.cdc.prime.router.azure.observability.event.AzureEventServiceImpl import gov.cdc.prime.router.azure.observability.event.IReportStreamEventService +import gov.cdc.prime.router.azure.observability.event.ReportStreamEventName +import gov.cdc.prime.router.azure.observability.event.ReportStreamItemEventBuilder import gov.cdc.prime.router.common.Environment import gov.cdc.prime.router.fhirengine.config.HL7TranslationConfig import gov.cdc.prime.router.fhirengine.translation.hl7.FhirToHl7Context @@ -114,6 +118,10 @@ class FHIRTranslator( logger.trace("Preparing to send original message") val originalReport = reportService.getRootReport(message.reportId) val bodyBytes = BlobAccess.downloadBlobAsByteArray(originalReport.bodyUrl) + val localDigest = BlobUtils.digestToString(sha256Digest(bodyBytes)) + check(message.digest == localDigest) { + "Downloaded file does not match expected file\n$message.digest | $localDigest" + } // get a Report from the message val (report, event, blobInfo) = Report.generateReportAndUploadBlob( @@ -163,6 +171,17 @@ class FHIRTranslator( topic = message.topic ) + val someEvent = ReportStreamItemEventBuilder( + reportEventService, + azureEventService, + ReportStreamEventName.ITEM_TRANSFORMED, + report.id, + report.bodyURL, + message.topic, + TaskAction.translate + ).buildEvent() + azureEventService.trackEvent(someEvent) + return FHIREngineRunResult( event, report, From 33228520e33d9bab9426bed84cf9e9438aa575ba Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Wed, 13 Nov 2024 10:59:19 -0500 Subject: [PATCH 04/34] [16144] Change to attempt fix for existing unit and integration tests. --- .../src/main/kotlin/fhirengine/engine/FHIRTranslator.kt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 1b717432335..4b0ea731e45 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -171,7 +171,7 @@ class FHIRTranslator( topic = message.topic ) - val someEvent = ReportStreamItemEventBuilder( + val builder = ReportStreamItemEventBuilder( reportEventService, azureEventService, ReportStreamEventName.ITEM_TRANSFORMED, @@ -179,8 +179,9 @@ class FHIRTranslator( report.bodyURL, message.topic, TaskAction.translate - ).buildEvent() - azureEventService.trackEvent(someEvent) + ) + builder.theParentReportId = reportService.getRootReport(report.id).reportId + azureEventService.trackEvent(builder.buildEvent()) return FHIREngineRunResult( event, From 96063286a57392201d89324260241f309e432668 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Wed, 13 Nov 2024 13:21:47 -0500 Subject: [PATCH 05/34] [16144] Fixed unit tests in FHIRTranslatorTests. --- .../fhirengine/engine/FhirTranslatorTests.kt | 26 ++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt index b6944b9dce9..34bf6fa3c9e 100644 --- a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt @@ -24,7 +24,9 @@ import gov.cdc.prime.router.azure.BlobAccess import gov.cdc.prime.router.azure.DatabaseAccess import gov.cdc.prime.router.azure.db.enums.TaskAction import gov.cdc.prime.router.azure.db.tables.pojos.Action +import gov.cdc.prime.router.azure.db.tables.pojos.ReportFile import gov.cdc.prime.router.fhirengine.utils.FhirTranscoder +import gov.cdc.prime.router.report.ReportService import gov.cdc.prime.router.unittest.UnitTestUtils import io.mockk.clearAllMocks import io.mockk.every @@ -75,6 +77,7 @@ class FhirTranslatorTests { ) ) ) + val reportServiceMock = mockk() private fun makeFhirEngine( metadata: Metadata = Metadata( @@ -87,7 +90,7 @@ class FhirTranslatorTests { settings: SettingsProvider = FileSettings().loadOrganizations(oneOrganization), ): FHIRTranslator { return FHIREngine.Builder().metadata(metadata).settingsProvider(settings).databaseAccess(accessSpy) - .blobAccess(blobMock).build(TaskAction.translate) as FHIRTranslator + .blobAccess(blobMock).reportService(reportServiceMock).build(TaskAction.translate) as FHIRTranslator } @BeforeEach @@ -106,10 +109,11 @@ class FhirTranslatorTests { val actionLogger = mockk() val engine = makeFhirEngine() + val reportId = UUID.randomUUID() val message = spyk( FhirTranslateQueueMessage( - UUID.randomUUID(), + reportId, BLOB_URL, "test", BLOB_SUB_FOLDER, @@ -120,6 +124,7 @@ class FhirTranslatorTests { val bodyFormat = MimeFormat.FHIR val bodyUrl = BODY_URL + val rootReport = mockk() every { actionLogger.hasErrors() } returns false every { BlobAccess.downloadBlob(any(), any()) } @@ -154,6 +159,12 @@ class FhirTranslatorTests { "" ) ) + every { rootReport.reportId } returns reportId + every { rootReport.sendingOrg } returns oneOrganization.name + every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName + every { reportServiceMock.getRootReport(any()) } returns rootReport + every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) + every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 // act accessSpy.transact { txn -> @@ -182,9 +193,10 @@ class FhirTranslatorTests { val actionLogger = mockk() val engine = makeFhirEngine(settings = settings) + val reportId = UUID.randomUUID() val message = spyk( FhirTranslateQueueMessage( - UUID.randomUUID(), + reportId, BLOB_URL, "test", BLOB_SUB_FOLDER, @@ -195,6 +207,7 @@ class FhirTranslatorTests { val bodyFormat = MimeFormat.FHIR val bodyUrl = BODY_URL + val rootReport = mockk() every { actionLogger.hasErrors() } returns false every { BlobAccess.downloadBlob(any(), any()) } .returns(File(VALID_DATA_URL).readText()) @@ -229,6 +242,13 @@ class FhirTranslatorTests { ) ) + every { rootReport.reportId } returns reportId + every { rootReport.sendingOrg } returns oneOrganization.name + every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName + every { reportServiceMock.getRootReport(any()) } returns rootReport + every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) + every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 + // act accessSpy.transact { txn -> engine.run(message, actionLogger, actionHistory, txn) From 1102247c510bc696c1e2d914e991eca1c2487ea5 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Wed, 13 Nov 2024 15:46:11 -0500 Subject: [PATCH 06/34] [16144] Fixed integration tests by modifying FHIRTranslator. --- .../src/main/kotlin/fhirengine/engine/FHIRTranslator.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 4b0ea731e45..34b7802d19b 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -180,7 +180,7 @@ class FHIRTranslator( message.topic, TaskAction.translate ) - builder.theParentReportId = reportService.getRootReport(report.id).reportId + builder.theParentReportId = message.reportId azureEventService.trackEvent(builder.buildEvent()) return FHIREngineRunResult( From d0517ecbf77c6e21e298b80e2fdb58450819d6e3 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Thu, 14 Nov 2024 17:07:22 -0500 Subject: [PATCH 07/34] [16144] Added code for tests. --- .../fhirengine/engine/FHIRTranslator.kt | 2 +- .../fhirengine/engine/FhirTranslatorTests.kt | 90 ++++++++++++++++++- 2 files changed, 90 insertions(+), 2 deletions(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 34b7802d19b..c18a171327c 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -120,7 +120,7 @@ class FHIRTranslator( val bodyBytes = BlobAccess.downloadBlobAsByteArray(originalReport.bodyUrl) val localDigest = BlobUtils.digestToString(sha256Digest(bodyBytes)) check(message.digest == localDigest) { - "Downloaded file does not match expected file\n$message.digest | $localDigest" + "Downloaded file does not match expected file\n${message.digest} | $localDigest" } // get a Report from the message diff --git a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt index 34bf6fa3c9e..0d07f09b839 100644 --- a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt @@ -25,6 +25,7 @@ import gov.cdc.prime.router.azure.DatabaseAccess import gov.cdc.prime.router.azure.db.enums.TaskAction import gov.cdc.prime.router.azure.db.tables.pojos.Action import gov.cdc.prime.router.azure.db.tables.pojos.ReportFile +import gov.cdc.prime.router.azure.observability.event.AzureEventService import gov.cdc.prime.router.fhirengine.utils.FhirTranscoder import gov.cdc.prime.router.report.ReportService import gov.cdc.prime.router.unittest.UnitTestUtils @@ -78,6 +79,7 @@ class FhirTranslatorTests { ) ) val reportServiceMock = mockk() + val azureEventService = mockk() private fun makeFhirEngine( metadata: Metadata = Metadata( @@ -90,7 +92,8 @@ class FhirTranslatorTests { settings: SettingsProvider = FileSettings().loadOrganizations(oneOrganization), ): FHIRTranslator { return FHIREngine.Builder().metadata(metadata).settingsProvider(settings).databaseAccess(accessSpy) - .blobAccess(blobMock).reportService(reportServiceMock).build(TaskAction.translate) as FHIRTranslator + .blobAccess(blobMock).reportService(reportServiceMock).azureEventService(azureEventService) + .build(TaskAction.translate) as FHIRTranslator } @BeforeEach @@ -165,6 +168,8 @@ class FhirTranslatorTests { every { reportServiceMock.getRootReport(any()) } returns rootReport every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 + every { BlobAccess.downloadBlobAsByteArray(any()) } returns "1".toByteArray(Charsets.UTF_8) + every { azureEventService.trackEvent(any()) } returns Unit // act accessSpy.transact { txn -> @@ -178,6 +183,88 @@ class FhirTranslatorTests { BlobAccess.Companion.uploadBlob(any(), any(), any()) accessSpy.insertTask(any(), any(), any(), any(), any()) actionHistory.trackActionReceiverInfo(any(), any()) + azureEventService.trackEvent(any()) + } + } + + @Test + fun `test translation happy path with file digest exception`() { + mockkObject(BlobAccess) + mockkObject(BlobAccess.BlobContainerMetadata) + + // set up + val actionHistory = mockk() + val actionLogger = mockk() + val engine = makeFhirEngine() + + val reportId = UUID.randomUUID() + val message = + spyk( + FhirTranslateQueueMessage( + reportId, + BLOB_URL, + "test", + BLOB_SUB_FOLDER, + topic = Topic.ELR_ELIMS, + oneOrganization.receivers[0].fullName + ) + ) + + val bodyFormat = MimeFormat.FHIR + val bodyUrl = BODY_URL + val rootReport = mockk() + + every { actionLogger.hasErrors() } returns false + every { actionLogger.error(any()) } returns Unit + every { BlobAccess.downloadBlob(any(), any()) } + .returns(File(VALID_DATA_URL).readText()) + every { BlobAccess.Companion.uploadBlob(any(), any()) } returns "test" + every { + BlobAccess.BlobContainerMetadata.build( + "metadata", + any() + ) + } returns mockk() + every { accessSpy.insertTask(any(), bodyFormat.toString(), bodyUrl, any()) }.returns(Unit) + every { actionHistory.trackCreatedReport(any(), any(), blobInfo = any()) }.returns(Unit) + every { actionHistory.trackExistingInputReport(any()) }.returns(Unit) + every { actionHistory.trackActionReceiverInfo(any(), any()) }.returns(Unit) + every { actionHistory.action }.returns( + Action( + 1, + TaskAction.receive, + "", + "", + OffsetDateTime.now(), + JSONB.valueOf(""), + 1, + 1, + "", + "", + "", + "", + "", + "", + "" + ) + ) + every { rootReport.reportId } returns reportId + every { rootReport.sendingOrg } returns oneOrganization.name + every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName + every { rootReport.bodyUrl } returns BLOB_URL + every { reportServiceMock.getRootReport(any()) } returns rootReport + every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) + every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 + every { BlobAccess.downloadBlobAsByteArray(any()) } returns "1".toByteArray(Charsets.UTF_8) + + // act + @Suppress("ktlint:standard:max-line-length") + accessSpy.transact { txn -> + assertFailsWith( + message = "Downloaded file does not match expected file\n" + + "test | 6bffffff86ffffffb273ffffffff34fffffffcffffffe1ffffff9d6bffffff804effffffff5a3f5747ffffffadffffffa4ffffffeaffffffa22f1d49ffffffc01e52ffffffddffffffb7ffffff875b4b", + block = { engine.run(message, actionLogger, actionHistory, txn) } + ) } } @@ -248,6 +335,7 @@ class FhirTranslatorTests { every { reportServiceMock.getRootReport(any()) } returns rootReport every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 + every { azureEventService.trackEvent(any()) } returns Unit // act accessSpy.transact { txn -> From c860dd92d8265b314b1283fe8181d6381d89b80b Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Mon, 18 Nov 2024 10:23:32 -0500 Subject: [PATCH 08/34] [16144] Added code to account for blob digest properly. --- .../src/main/kotlin/fhirengine/engine/FHIRTranslator.kt | 5 +++-- .../src/test/kotlin/common/UniversalPipelineTestUtils.kt | 6 +++++- .../test/kotlin/fhirengine/engine/FhirTranslatorTests.kt | 1 + 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index c18a171327c..4a976e0150f 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -118,9 +118,10 @@ class FHIRTranslator( logger.trace("Preparing to send original message") val originalReport = reportService.getRootReport(message.reportId) val bodyBytes = BlobAccess.downloadBlobAsByteArray(originalReport.bodyUrl) + val originalDigest = BlobUtils.digestToString(originalReport.blobDigest) val localDigest = BlobUtils.digestToString(sha256Digest(bodyBytes)) - check(message.digest == localDigest) { - "Downloaded file does not match expected file\n${message.digest} | $localDigest" + check(originalDigest == localDigest) { + "Downloaded file does not match expected file\n$localDigest | $originalDigest" } // get a Report from the message diff --git a/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt b/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt index 45f03b9514e..d1cab36103a 100644 --- a/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt +++ b/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt @@ -3,6 +3,7 @@ package gov.cdc.prime.router.common import assertk.assertThat import assertk.assertions.hasSize import assertk.assertions.isEqualTo +import gov.cdc.prime.reportstream.shared.BlobUtils.sha256Digest import gov.cdc.prime.router.ClientSource import gov.cdc.prime.router.CustomerStatus import gov.cdc.prime.router.DeepOrganization @@ -452,7 +453,8 @@ object UniversalPipelineTestUtils { event, Topic.FULL_ELR, parentReport, - blobUrl + blobUrl, + reportContents, ) } @@ -464,6 +466,7 @@ object UniversalPipelineTestUtils { topic: Topic, parentReport: Report? = null, bodyURL: String? = null, + reportContents: String, ): Report { val report = Report( fileFormat, @@ -493,6 +496,7 @@ object UniversalPipelineTestUtils { .setBodyUrl(report.bodyURL) .setSendingOrg(universalPipelineOrganization.name) .setSendingOrgClient("Test Sender") + .setBlobDigest(sha256Digest(reportContents.toByteArray(Charsets.UTF_8))) ReportStreamTestDatabaseContainer.testDatabaseAccess.insertReportFile( reportFile, txn, action diff --git a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt index 0d07f09b839..78b57c8be18 100644 --- a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt @@ -252,6 +252,7 @@ class FhirTranslatorTests { every { rootReport.sendingOrg } returns oneOrganization.name every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName every { rootReport.bodyUrl } returns BLOB_URL + every { rootReport.blobDigest } returns reportId.toString().toByteArray(Charsets.UTF_8) every { reportServiceMock.getRootReport(any()) } returns rootReport every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 From 6cdc85ce69a6c86513e02c234b8e122fc451bd1a Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Tue, 19 Nov 2024 11:14:22 -0500 Subject: [PATCH 09/34] [16144] Checking in WIP. --- .../fhirengine/engine/FHIRTranslator.kt | 45 ++++++++++++------- .../fhirengine/engine/FhirTranslatorTests.kt | 11 +++-- 2 files changed, 37 insertions(+), 19 deletions(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 4a976e0150f..5c494382b6d 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -23,18 +23,21 @@ import gov.cdc.prime.router.azure.DatabaseAccess import gov.cdc.prime.router.azure.Event import gov.cdc.prime.router.azure.db.Tables import gov.cdc.prime.router.azure.db.enums.TaskAction +import gov.cdc.prime.router.azure.observability.bundleDigest.BundleDigestExtractor +import gov.cdc.prime.router.azure.observability.bundleDigest.FhirPathBundleDigestLabResultExtractorStrategy import gov.cdc.prime.router.azure.observability.context.MDCUtils import gov.cdc.prime.router.azure.observability.context.withLoggingContext import gov.cdc.prime.router.azure.observability.event.AzureEventService import gov.cdc.prime.router.azure.observability.event.AzureEventServiceImpl import gov.cdc.prime.router.azure.observability.event.IReportStreamEventService import gov.cdc.prime.router.azure.observability.event.ReportStreamEventName -import gov.cdc.prime.router.azure.observability.event.ReportStreamItemEventBuilder +import gov.cdc.prime.router.azure.observability.event.ReportStreamEventProperties import gov.cdc.prime.router.common.Environment import gov.cdc.prime.router.fhirengine.config.HL7TranslationConfig import gov.cdc.prime.router.fhirengine.translation.hl7.FhirToHl7Context import gov.cdc.prime.router.fhirengine.translation.hl7.FhirToHl7Converter import gov.cdc.prime.router.fhirengine.translation.hl7.FhirTransformer +import gov.cdc.prime.router.fhirengine.translation.hl7.utils.CustomContext import gov.cdc.prime.router.fhirengine.translation.hl7.utils.HL7Utils.defaultHl7EncodingFiveChars import gov.cdc.prime.router.fhirengine.translation.hl7.utils.HL7Utils.defaultHl7EncodingFourChars import gov.cdc.prime.router.fhirengine.utils.FhirTranscoder @@ -157,10 +160,8 @@ class FHIRTranslator( actionHistory: ActionHistory, ): FHIREngineRunResult { logger.trace("Preparing to send translated message") - val bodyBytes = - getByteArrayFromBundle( - receiver, FhirTranscoder.decode(BlobAccess.downloadBlob(message.blobURL, message.digest)) - ) + val bundle = FhirTranscoder.decode(BlobAccess.downloadBlob(message.blobURL, message.digest)) + val bodyBytes = getByteArrayFromBundle(receiver, bundle) val (report, event, blobInfo) = Report.generateReportAndUploadBlob( Event.EventAction.BATCH, @@ -172,17 +173,31 @@ class FHIRTranslator( topic = message.topic ) - val builder = ReportStreamItemEventBuilder( - reportEventService, - azureEventService, - ReportStreamEventName.ITEM_TRANSFORMED, - report.id, - report.bodyURL, - message.topic, - TaskAction.translate + val bundleDigestExtractor = BundleDigestExtractor( + FhirPathBundleDigestLabResultExtractorStrategy( + CustomContext( + bundle, + bundle, + mutableMapOf(), + CustomFhirPathFunctions() + ) + ) ) - builder.theParentReportId = message.reportId - azureEventService.trackEvent(builder.buildEvent()) + reportEventService.sendItemEvent( + eventName = ReportStreamEventName.ITEM_TRANSFORMED, + childReport = report, + pipelineStepName = TaskAction.translate + ) { + parentReportId(message.reportId) + params( + mapOf( + ReportStreamEventProperties.RECEIVER_NAME to receiver.fullName, + ReportStreamEventProperties.BUNDLE_DIGEST + to bundleDigestExtractor.generateDigest(bundle) + ) + ) + trackingId(bundle) + } return FHIREngineRunResult( event, diff --git a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt index 78b57c8be18..a18dd429464 100644 --- a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt @@ -16,6 +16,7 @@ import gov.cdc.prime.router.Metadata import gov.cdc.prime.router.MimeFormat import gov.cdc.prime.router.Organization import gov.cdc.prime.router.Receiver +import gov.cdc.prime.router.Report import gov.cdc.prime.router.Schema import gov.cdc.prime.router.SettingsProvider import gov.cdc.prime.router.Topic @@ -26,6 +27,7 @@ import gov.cdc.prime.router.azure.db.enums.TaskAction import gov.cdc.prime.router.azure.db.tables.pojos.Action import gov.cdc.prime.router.azure.db.tables.pojos.ReportFile import gov.cdc.prime.router.azure.observability.event.AzureEventService +import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService import gov.cdc.prime.router.fhirengine.utils.FhirTranscoder import gov.cdc.prime.router.report.ReportService import gov.cdc.prime.router.unittest.UnitTestUtils @@ -92,8 +94,7 @@ class FhirTranslatorTests { settings: SettingsProvider = FileSettings().loadOrganizations(oneOrganization), ): FHIRTranslator { return FHIREngine.Builder().metadata(metadata).settingsProvider(settings).databaseAccess(accessSpy) - .blobAccess(blobMock).reportService(reportServiceMock).azureEventService(azureEventService) - .build(TaskAction.translate) as FHIRTranslator + .blobAccess(blobMock).reportService(reportServiceMock).build(TaskAction.translate) as FHIRTranslator } @BeforeEach @@ -128,6 +129,7 @@ class FhirTranslatorTests { val bodyFormat = MimeFormat.FHIR val bodyUrl = BODY_URL val rootReport = mockk() + val reportStreamEventService = mockk() every { actionLogger.hasErrors() } returns false every { BlobAccess.downloadBlob(any(), any()) } @@ -169,7 +171,8 @@ class FhirTranslatorTests { every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 every { BlobAccess.downloadBlobAsByteArray(any()) } returns "1".toByteArray(Charsets.UTF_8) - every { azureEventService.trackEvent(any()) } returns Unit + every { reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } returns Unit + every { reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } returns Unit // act accessSpy.transact { txn -> @@ -183,7 +186,7 @@ class FhirTranslatorTests { BlobAccess.Companion.uploadBlob(any(), any(), any()) accessSpy.insertTask(any(), any(), any(), any(), any()) actionHistory.trackActionReceiverInfo(any(), any()) - azureEventService.trackEvent(any()) + reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } } From 260604b879aceeb03dc45aa7555ce94679bf9d79 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Wed, 20 Nov 2024 09:48:58 -0500 Subject: [PATCH 10/34] [16144] Checking in WIP. --- .../event/ReportStreamEventData.kt | 3 +++ .../fhirengine/engine/FHIRTranslator.kt | 6 +++++- .../fhirengine/engine/FhirTranslatorTests.kt | 21 ++++++++++++------- 3 files changed, 22 insertions(+), 8 deletions(-) diff --git a/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt b/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt index cd90d238b64..d31404ebbe4 100644 --- a/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt +++ b/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt @@ -67,6 +67,9 @@ enum class ReportStreamEventProperties { BUNDLE_DIGEST, INGESTION_TYPE, POISON_QUEUE_MESSAGE_ID, + ENRICHMENTS, + ORIGINAL_FORMAT, + TARGET_FORMAT, ; @JsonKey diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 5c494382b6d..6dad98e0357 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -160,6 +160,7 @@ class FHIRTranslator( actionHistory: ActionHistory, ): FHIREngineRunResult { logger.trace("Preparing to send translated message") + val originalReport = reportService.getRootReport(message.reportId) val bundle = FhirTranscoder.decode(BlobAccess.downloadBlob(message.blobURL, message.digest)) val bodyBytes = getByteArrayFromBundle(receiver, bundle) @@ -193,7 +194,10 @@ class FHIRTranslator( mapOf( ReportStreamEventProperties.RECEIVER_NAME to receiver.fullName, ReportStreamEventProperties.BUNDLE_DIGEST - to bundleDigestExtractor.generateDigest(bundle) + to bundleDigestExtractor.generateDigest(bundle), + ReportStreamEventProperties.ORIGINAL_FORMAT to originalReport.bodyFormat, + ReportStreamEventProperties.TARGET_FORMAT to receiver.translation.format, + ReportStreamEventProperties.ENRICHMENTS to receiver.translation.schemaName ) ) trackingId(bundle) diff --git a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt index a18dd429464..c32e9243a74 100644 --- a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt @@ -26,7 +26,6 @@ import gov.cdc.prime.router.azure.DatabaseAccess import gov.cdc.prime.router.azure.db.enums.TaskAction import gov.cdc.prime.router.azure.db.tables.pojos.Action import gov.cdc.prime.router.azure.db.tables.pojos.ReportFile -import gov.cdc.prime.router.azure.observability.event.AzureEventService import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService import gov.cdc.prime.router.fhirengine.utils.FhirTranscoder import gov.cdc.prime.router.report.ReportService @@ -81,7 +80,7 @@ class FhirTranslatorTests { ) ) val reportServiceMock = mockk() - val azureEventService = mockk() + val reportStreamEventService = mockk() private fun makeFhirEngine( metadata: Metadata = Metadata( @@ -94,7 +93,8 @@ class FhirTranslatorTests { settings: SettingsProvider = FileSettings().loadOrganizations(oneOrganization), ): FHIRTranslator { return FHIREngine.Builder().metadata(metadata).settingsProvider(settings).databaseAccess(accessSpy) - .blobAccess(blobMock).reportService(reportServiceMock).build(TaskAction.translate) as FHIRTranslator + .blobAccess(blobMock).reportService(reportServiceMock).reportEventService(reportStreamEventService) + .build(TaskAction.translate) as FHIRTranslator } @BeforeEach @@ -129,7 +129,6 @@ class FhirTranslatorTests { val bodyFormat = MimeFormat.FHIR val bodyUrl = BODY_URL val rootReport = mockk() - val reportStreamEventService = mockk() every { actionLogger.hasErrors() } returns false every { BlobAccess.downloadBlob(any(), any()) } @@ -167,6 +166,7 @@ class FhirTranslatorTests { every { rootReport.reportId } returns reportId every { rootReport.sendingOrg } returns oneOrganization.name every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName + every { rootReport.bodyFormat } returns bodyFormat.toString() every { reportServiceMock.getRootReport(any()) } returns rootReport every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 @@ -186,7 +186,6 @@ class FhirTranslatorTests { BlobAccess.Companion.uploadBlob(any(), any(), any()) accessSpy.insertTask(any(), any(), any(), any(), any()) actionHistory.trackActionReceiverInfo(any(), any()) - reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } } @@ -334,12 +333,12 @@ class FhirTranslatorTests { ) every { rootReport.reportId } returns reportId + every { rootReport.bodyFormat } returns bodyFormat.toString() every { rootReport.sendingOrg } returns oneOrganization.name every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName every { reportServiceMock.getRootReport(any()) } returns rootReport every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 - every { azureEventService.trackEvent(any()) } returns Unit // act accessSpy.transact { txn -> @@ -587,9 +586,10 @@ class FhirTranslatorTests { val actionHistory = mockk() val actionLogger = mockk() + val reportId = UUID.randomUUID() val message = spyk( FhirTranslateQueueMessage( - UUID.randomUUID(), + reportId, BLOB_URL, "test", BLOB_SUB_FOLDER, @@ -600,6 +600,13 @@ class FhirTranslatorTests { val bodyFormat = MimeFormat.FHIR val bodyUrl = BODY_URL + val rootReport = mockk() + + every { rootReport.reportId } returns reportId + every { rootReport.sendingOrg } returns oneOrganization.name + every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName + every { rootReport.bodyFormat } returns bodyFormat.toString() + every { reportServiceMock.getRootReport(any()) } returns rootReport every { actionLogger.hasErrors() } returns false every { actionLogger.error(any()) } returns Unit From e1c5a709771f8543a5205304af6c1dd3be3cb433 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Wed, 20 Nov 2024 10:52:14 -0500 Subject: [PATCH 11/34] [16144] Made change to FHIREngine to account for nullable reportEventService actually having a value in builder. --- prime-router/src/main/kotlin/fhirengine/engine/FHIREngine.kt | 2 +- .../src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIREngine.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIREngine.kt index d32ad4269c7..04cb5a563f1 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIREngine.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIREngine.kt @@ -171,7 +171,7 @@ abstract class FHIREngine( blobAccess ?: BlobAccess(), azureEventService ?: AzureEventServiceImpl(), reportService ?: ReportService(), - ReportStreamEventService( + reportEventService ?: ReportStreamEventService( databaseAccess ?: databaseAccessSingleton, azureEventService ?: AzureEventServiceImpl(), reportService ?: ReportService() diff --git a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt index c32e9243a74..1f1668cffbf 100644 --- a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt @@ -172,7 +172,6 @@ class FhirTranslatorTests { every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 every { BlobAccess.downloadBlobAsByteArray(any()) } returns "1".toByteArray(Charsets.UTF_8) every { reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } returns Unit - every { reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } returns Unit // act accessSpy.transact { txn -> @@ -186,6 +185,7 @@ class FhirTranslatorTests { BlobAccess.Companion.uploadBlob(any(), any(), any()) accessSpy.insertTask(any(), any(), any(), any(), any()) actionHistory.trackActionReceiverInfo(any(), any()) + reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } } @@ -339,6 +339,7 @@ class FhirTranslatorTests { every { reportServiceMock.getRootReport(any()) } returns rootReport every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1 + every { reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } returns Unit // act accessSpy.transact { txn -> From 74b67f7f809e087c9c903c87e83b5854f4df3bf8 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Wed, 20 Nov 2024 14:04:58 -0500 Subject: [PATCH 12/34] [16144] Updates based on PR review. --- .../fhirengine/engine/FHIRTranslator.kt | 11 ++----- .../azure/FHIRTranslatorIntegrationTests.kt | 32 +++++++++++++++++++ .../fhirengine/engine/FhirTranslatorTests.kt | 3 +- 3 files changed, 35 insertions(+), 11 deletions(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 6dad98e0357..1827bd78ee0 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -6,8 +6,6 @@ import ca.uhn.hl7v2.model.Segment import ca.uhn.hl7v2.util.Terser import fhirengine.engine.CustomFhirPathFunctions import fhirengine.engine.CustomTranslationFunctions -import gov.cdc.prime.reportstream.shared.BlobUtils -import gov.cdc.prime.reportstream.shared.BlobUtils.sha256Digest import gov.cdc.prime.reportstream.shared.QueueMessage import gov.cdc.prime.router.ActionLogger import gov.cdc.prime.router.CustomerStatus @@ -120,17 +118,12 @@ class FHIRTranslator( ): FHIREngineRunResult { logger.trace("Preparing to send original message") val originalReport = reportService.getRootReport(message.reportId) - val bodyBytes = BlobAccess.downloadBlobAsByteArray(originalReport.bodyUrl) - val originalDigest = BlobUtils.digestToString(originalReport.blobDigest) - val localDigest = BlobUtils.digestToString(sha256Digest(bodyBytes)) - check(originalDigest == localDigest) { - "Downloaded file does not match expected file\n$localDigest | $originalDigest" - } + val bodyAsString = BlobAccess.downloadBlob(message.blobURL, message.digest) // get a Report from the message val (report, event, blobInfo) = Report.generateReportAndUploadBlob( Event.EventAction.SEND, - bodyBytes, + bodyAsString.toByteArray(), listOf(message.reportId), receiver, this.metadata, diff --git a/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt b/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt index df375e85ed3..56f6de22509 100644 --- a/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt @@ -1,7 +1,9 @@ package gov.cdc.prime.router.fhirengine.azure import assertk.assertThat +import assertk.assertions.hasSize import assertk.assertions.isEqualTo +import assertk.assertions.isInstanceOf import assertk.assertions.isNotEqualTo import assertk.assertions.isNotNull import assertk.assertions.isNull @@ -22,7 +24,9 @@ import gov.cdc.prime.router.azure.db.enums.TaskAction import gov.cdc.prime.router.azure.db.tables.Task import gov.cdc.prime.router.azure.observability.event.AzureEventService import gov.cdc.prime.router.azure.observability.event.InMemoryAzureEventService +import gov.cdc.prime.router.azure.observability.event.ReportStreamEventName import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService +import gov.cdc.prime.router.azure.observability.event.ReportStreamItemEvent import gov.cdc.prime.router.cli.tests.CompareData import gov.cdc.prime.router.common.TestcontainersUtils import gov.cdc.prime.router.common.UniversalPipelineTestUtils @@ -191,6 +195,13 @@ class FHIRTranslatorIntegrationTests : Logging { QueueAccess.sendMessage(any(), any()) } + // check events + assertThat(azureEventService.reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!).hasSize(1) + assertThat( + azureEventService + .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() + ).isInstanceOf() + // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) @@ -289,6 +300,13 @@ class FHIRTranslatorIntegrationTests : Logging { QueueAccess.sendMessage(any(), any()) } + // check events + assertThat(azureEventService.reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!).hasSize(1) + assertThat( + azureEventService + .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() + ).isInstanceOf() + // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) @@ -364,6 +382,13 @@ class FHIRTranslatorIntegrationTests : Logging { QueueAccess.sendMessage(any(), any()) } + // check events + assertThat(azureEventService.reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!).hasSize(1) + assertThat( + azureEventService + .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() + ).isInstanceOf() + // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) @@ -449,6 +474,13 @@ class FHIRTranslatorIntegrationTests : Logging { QueueAccess.sendMessage(any(), any()) } + // check events + assertThat(azureEventService.reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!).hasSize(1) + assertThat( + azureEventService + .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() + ).isInstanceOf() + // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) diff --git a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt index 1f1668cffbf..3f0ad2531aa 100644 --- a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt @@ -218,8 +218,6 @@ class FhirTranslatorTests { every { actionLogger.hasErrors() } returns false every { actionLogger.error(any()) } returns Unit - every { BlobAccess.downloadBlob(any(), any()) } - .returns(File(VALID_DATA_URL).readText()) every { BlobAccess.Companion.uploadBlob(any(), any()) } returns "test" every { BlobAccess.BlobContainerMetadata.build( @@ -254,6 +252,7 @@ class FhirTranslatorTests { every { rootReport.sendingOrg } returns oneOrganization.name every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName every { rootReport.bodyUrl } returns BLOB_URL + every { rootReport.bodyFormat } returns "HL7" every { rootReport.blobDigest } returns reportId.toString().toByteArray(Charsets.UTF_8) every { reportServiceMock.getRootReport(any()) } returns rootReport every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport) From 9dc404992dcbe4d716e465c2ee81f45c53ae44f8 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Wed, 20 Nov 2024 16:21:41 -0500 Subject: [PATCH 13/34] [16144] Update based on PR review. --- .../src/main/kotlin/fhirengine/engine/FHIRTranslator.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 1827bd78ee0..5a5b854d319 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -190,7 +190,7 @@ class FHIRTranslator( to bundleDigestExtractor.generateDigest(bundle), ReportStreamEventProperties.ORIGINAL_FORMAT to originalReport.bodyFormat, ReportStreamEventProperties.TARGET_FORMAT to receiver.translation.format, - ReportStreamEventProperties.ENRICHMENTS to receiver.translation.schemaName + ReportStreamEventProperties.ENRICHMENTS to listOf(receiver.translation.schemaName) ) ) trackingId(bundle) From 8b29996ea90cb0d24b7f27019647b549d7140fd7 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Wed, 20 Nov 2024 17:17:04 -0500 Subject: [PATCH 14/34] [16144] Changed url and digest to use correct reportdocument. --- .../src/main/kotlin/fhirengine/engine/FHIRTranslator.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 5a5b854d319..27e72f3476f 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -6,6 +6,7 @@ import ca.uhn.hl7v2.model.Segment import ca.uhn.hl7v2.util.Terser import fhirengine.engine.CustomFhirPathFunctions import fhirengine.engine.CustomTranslationFunctions +import gov.cdc.prime.reportstream.shared.BlobUtils import gov.cdc.prime.reportstream.shared.QueueMessage import gov.cdc.prime.router.ActionLogger import gov.cdc.prime.router.CustomerStatus @@ -118,7 +119,8 @@ class FHIRTranslator( ): FHIREngineRunResult { logger.trace("Preparing to send original message") val originalReport = reportService.getRootReport(message.reportId) - val bodyAsString = BlobAccess.downloadBlob(message.blobURL, message.digest) + val bodyAsString = + BlobAccess.downloadBlob(originalReport.bodyUrl, BlobUtils.digestToString(originalReport.blobDigest)) // get a Report from the message val (report, event, blobInfo) = Report.generateReportAndUploadBlob( From 7ce035d7cc6c2d3457093e4286e5c1dead3dc1c8 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Thu, 21 Nov 2024 08:44:05 -0500 Subject: [PATCH 15/34] [16144] Added additional checks to integration test. --- .../fhirengine/engine/FHIRTranslator.kt | 2 +- .../azure/FHIRTranslatorIntegrationTests.kt | 29 +++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt index 27e72f3476f..5364a806886 100644 --- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt +++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt @@ -191,7 +191,7 @@ class FHIRTranslator( ReportStreamEventProperties.BUNDLE_DIGEST to bundleDigestExtractor.generateDigest(bundle), ReportStreamEventProperties.ORIGINAL_FORMAT to originalReport.bodyFormat, - ReportStreamEventProperties.TARGET_FORMAT to receiver.translation.format, + ReportStreamEventProperties.TARGET_FORMAT to receiver.translation.format.name, ReportStreamEventProperties.ENRICHMENTS to listOf(receiver.translation.schemaName) ) ) diff --git a/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt b/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt index 56f6de22509..0924a2fe63e 100644 --- a/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt @@ -25,6 +25,7 @@ import gov.cdc.prime.router.azure.db.tables.Task import gov.cdc.prime.router.azure.observability.event.AzureEventService import gov.cdc.prime.router.azure.observability.event.InMemoryAzureEventService import gov.cdc.prime.router.azure.observability.event.ReportStreamEventName +import gov.cdc.prime.router.azure.observability.event.ReportStreamEventProperties import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService import gov.cdc.prime.router.azure.observability.event.ReportStreamItemEvent import gov.cdc.prime.router.cli.tests.CompareData @@ -201,6 +202,13 @@ class FHIRTranslatorIntegrationTests : Logging { azureEventService .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() ).isInstanceOf() + val event = azureEventService + .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() as ReportStreamItemEvent + assertThat(event.params[ReportStreamEventProperties.ORIGINAL_FORMAT]).isEqualTo("FHIR") + assertThat(event.params[ReportStreamEventProperties.TARGET_FORMAT]).isEqualTo("HL7") + assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x") + val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*> + assertThat(enrichments).hasSize(1) // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) @@ -306,6 +314,13 @@ class FHIRTranslatorIntegrationTests : Logging { azureEventService .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() ).isInstanceOf() + val event = azureEventService + .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() as ReportStreamItemEvent + assertThat(event.params[ReportStreamEventProperties.ORIGINAL_FORMAT]).isEqualTo("FHIR") + assertThat(event.params[ReportStreamEventProperties.TARGET_FORMAT]).isEqualTo("HL7") + assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x") + val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*> + assertThat(enrichments).hasSize(1) // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) @@ -388,6 +403,13 @@ class FHIRTranslatorIntegrationTests : Logging { azureEventService .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() ).isInstanceOf() + val event = azureEventService + .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() as ReportStreamItemEvent + assertThat(event.params[ReportStreamEventProperties.ORIGINAL_FORMAT]).isEqualTo("FHIR") + assertThat(event.params[ReportStreamEventProperties.TARGET_FORMAT]).isEqualTo("FHIR") + assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x") + val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*> + assertThat(enrichments).hasSize(1) // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) @@ -480,6 +502,13 @@ class FHIRTranslatorIntegrationTests : Logging { azureEventService .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() ).isInstanceOf() + val event = azureEventService + .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() as ReportStreamItemEvent + assertThat(event.params[ReportStreamEventProperties.ORIGINAL_FORMAT]).isEqualTo("FHIR") + assertThat(event.params[ReportStreamEventProperties.TARGET_FORMAT]).isEqualTo("FHIR") + assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x") + val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*> + assertThat(enrichments).hasSize(1) // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) From 97b21ad42865583947e58be42bd4ca862e92e3f5 Mon Sep 17 00:00:00 2001 From: Bill Cutshall Date: Thu, 21 Nov 2024 12:38:58 -0500 Subject: [PATCH 16/34] [16144] Added additional check to integration tests. --- .../kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt b/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt index 0924a2fe63e..99eada67991 100644 --- a/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt @@ -209,6 +209,7 @@ class FHIRTranslatorIntegrationTests : Logging { assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x") val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*> assertThat(enrichments).hasSize(1) + assertThat(enrichments.first()).isEqualTo(receiverSetupData.first().schemaName) // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) @@ -321,6 +322,7 @@ class FHIRTranslatorIntegrationTests : Logging { assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x") val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*> assertThat(enrichments).hasSize(1) + assertThat(enrichments.first()).isEqualTo(receiverSetupData.first().schemaName) // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) @@ -410,6 +412,7 @@ class FHIRTranslatorIntegrationTests : Logging { assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x") val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*> assertThat(enrichments).hasSize(1) + assertThat(enrichments.first()).isEqualTo(receiverSetupData.first().schemaName) // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) @@ -509,6 +512,7 @@ class FHIRTranslatorIntegrationTests : Logging { assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x") val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*> assertThat(enrichments).hasSize(1) + assertThat(enrichments.first()).isEqualTo(receiverSetupData.first().schemaName) // check action table UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate)) From 39e79a8e8bb08c2e43b1980d4fecc5047fbae37e Mon Sep 17 00:00:00 2001 From: Josh Fisk Date: Thu, 21 Nov 2024 13:56:29 -0800 Subject: [PATCH 17/34] Remaining ORM/OML Updates (#16539) * Add OML Java Classes * Updated tests with repeating fields and segments * OML FHIR->HL7 Updates * OBR -> Specimen Additions and Updates * Missed todos * Populating OBR 7&8 as separate datetime fields when in extension --- .../hl7/segments/ORC/OBRExtension.yml | 162 + .../catchall/hl7/segments/ORC/Specimen.yml | 13 +- .../group/OML_O21_OBSERVATION.java | 236 + .../group/OML_O21_OBSERVATION_REQUEST.java | 526 + .../fhirinventory/group/OML_O21_ORDER.java | 383 + .../fhirinventory/group/OML_O21_PATIENT.java | 469 + .../group/OML_O21_PATIENT_VISIT.java | 166 + .../fhirinventory/group/OML_O21_SPECIMEN.java | 224 + .../fhirinventory/message/OML_O21.java | 354 + .../main/kotlin/fhirengine/utils/HL7Reader.kt | 11 +- .../observation-request-base.yml | 2 + .../observation-request.yml | 16 +- .../observation/observation.yml | 18 +- .../observation-request/specimen/specimen.yml | 1 + .../OML_O21/base/patient/patient.yml | 2 +- .../order-observation/order-observation.yml | 6 + .../order-observation/specimen.yml | 2 +- .../resources/ServiceRequest/OBR.yml | 15 - .../resources/ServiceRequest/OBRExtension.yml | 47 +- .../hl7_mapping/resources/Specimen/OBR.yml | 56 + .../hl7_mapping/resources/Specimen/SPM.yml | 2 +- .../common/UniversalPipelineTestUtils.kt | 10 +- .../catchall/orcobr/OBRToSpecimenTests.kt | 32 + ...BRToServiceRequestDiagnosticReportTests.kt | 2 +- .../HL7_to_FHIR/sample_oml_20240319-001.fhir | 2746 +-- ...mple_orm_20230809-001-with-enrichment.fhir | 48 + .../HL7_to_FHIR/sample_orm_20230809-001.fhir | 48 + .../HL7_to_FHIR/sample_oru_20241015-001.fhir | 716 +- .../ei/EI-to-Identifier-Extension.fhir | 19 +- .../catchall/omlo21/oml_o21-full.fhir | 19273 +++++++++++++--- .../catchall/omlo21/oml_o21-full.hl7 | 33 +- .../catchall/orcobr/oml-obr-to-specimen.fhir | 821 + .../catchall/orcobr/oml-obr-to-specimen.hl7 | 4 + ...equest_diagnosticreport-obr-populated.fhir | 5216 ++--- ...est_diagnosticreport-obr25-not-mapped.fhir | 9 + ...sticreport-obr25-obrext-not-populated.fhir | 13 + ...servicerequest_diagnosticreport-obr25.fhir | 9 + ...t_diagnosticreport-obr8-not-populated.fhir | 9 + ...quest_diagnosticreport-obr8-populated.fhir | 18 + ...st_diagnosticreport-orc-obr-populated.fhir | 5604 ++--- ...equest_diagnosticreport-orc-populated.fhir | 3852 +-- .../catchall/orcobr/orm-obr-to-specimen.fhir | 547 + .../catchall/orcobr/orm-obr-to-specimen.hl7 | 4 + .../catchall/orcobr/oru-obr-to-specimen.fhir | 842 + .../catchall/orcobr/oru-obr-to-specimen.hl7 | 3 + .../catchall/ormo01/orm_o01-full.fhir | 16846 +++++++++----- .../catchall/ormo01/orm_o01-full.hl7 | 9 +- .../catchall/orur01/oru_r01-full.fhir | 34 +- 48 files changed, 41533 insertions(+), 17945 deletions(-) create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/OML_O21.java create mode 100644 prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/OBR.yml create mode 100644 prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/OBRToSpecimenTests.kt create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.fhir create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.hl7 create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.fhir create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.hl7 create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.fhir create mode 100644 prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.hl7 diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/OBRExtension.yml b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/OBRExtension.yml index 33ca4d0f481..c2509802ecf 100644 --- a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/OBRExtension.yml +++ b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/OBRExtension.yml @@ -34,6 +34,77 @@ extension: valueOf: datatypes/EI/Identifier expressionType: resource specs: OBR.3 + - expressionType: nested + vars: + obr7: OBR.7 + condition: $obr7 NOT_NULL + generateList: true + expressionsMap: + url: + type: STRING + value: OBR.7 + valueDateTime: + expressionType: nested + expressions: + - type: STRING + valueOf: "GeneralUtils.dateTimeWithZoneId(obr7,ZONEID)" + expressionType: JEXL + _valueDateTime: + expressionType: nested + expressionsMap: + extension: + generateList: true + expressionType: nested + expressionsMap: + url: + type: SYSTEM_URL + value: hl7v2-date-time + valueString: + type: STRING + valueOf: OBR.7 + expressionType: HL7Spec + - expressionType: nested + vars: + obr8: OBR.8 + condition: $obr8 NOT_NULL + generateList: true + expressionsMap: + url: + type: STRING + value: OBR.8 + valueDateTime: + expressionType: nested + expressions: + - type: STRING + valueOf: "GeneralUtils.dateTimeWithZoneId(obr8,ZONEID)" + expressionType: JEXL + _valueDateTime: + expressionType: nested + expressionsMap: + extension: + generateList: true + expressionType: nested + expressionsMap: + url: + type: SYSTEM_URL + value: hl7v2-date-time + valueString: + type: STRING + valueOf: OBR.8 + expressionType: HL7Spec + - expressionType: nested + vars: + obr9: STRING, OBR.9 + condition: $obr9 NOT_NULL + specs: OBR.9 + generateList: true + expressionsMap: + url: + type: STRING + value: OBR.9 + valueQuantity: + expressionType: resource + valueOf: datatypes/CQ/Quantity - expressionType: nested vars: obr10: STRING_ALL, OBR.10 @@ -83,6 +154,97 @@ extension: expressionType: resource valueOf: datatypes/CWE/CodeableConcept specs: OBR.13 + - expressionType: nested + vars: + obr14: STRING, OBR.14 + condition: $obr14 NOT_NULL + expressionsMap: + url: + type: STRING + value: OBR.14 + valueDateTime: + type: STRING + valueOf: "GeneralUtils.dateTimeWithZoneId(dateTimeIn,ZONEID)" + expressionType: JEXL + vars: + dateTimeIn: OBR.14 + _valueDateTime: + condition: $obr14 NOT_NULL + expressionType: nested + vars: + obr14: OBR.14 + expressionsMap: + extension: + generateList: true + expressionType: nested + expressionsMap: + url: + type: SYSTEM_URL + value: hl7v2-date-time + valueString: + type: STRING + valueOf: $obr14 + expressionType: HL7Spec + - expressionType: nested + vars: + obr151: STRING_ALL, OBR.15.1 + condition: $obr151 NOT_NULL + expressionsMap: + url: + type: STRING + value: OBR.15.1 + valueCodeableConcept: + valueOf: datatypes/CWE/CodeableConcept + expressionType: resource + specs: OBR.15.1 + - expressionType: nested + vars: + obr152: STRING_ALL, OBR.15.2 + condition: $obr152 NOT_NULL + expressionsMap: + url: + type: STRING + value: OBR.15.2 + valueCodeableConcept: + valueOf: datatypes/CWE/CodeableConcept + expressionType: resource + specs: OBR.15.2 + - expressionType: nested + vars: + obr153: OBR.15.3 + condition: $obr153 NOT_NULL + expressionsMap: + url: + type: STRING + value: OBR.15.3 + valueString: + type: STRING + valueOf: OBR.15.3 + expressionType: HL7Spec + - expressionType: nested + vars: + obr154: STRING_ALL, OBR.15.4 + condition: $obr154 NOT_NULL + expressionsMap: + url: + type: STRING + value: OBR.15.4 + valueCodeableConcept: + valueOf: datatypes/CWE/CodeableConcept + expressionType: resource + specs: OBR.15.4 + - expressionType: nested + vars: + obr156: STRING_ALL, OBR.15.6 + condition: $obr156 NOT_NULL + expressionsMap: + url: + type: STRING + value: OBR.15.6 + valueCodeableConcept: + valueOf: datatypes/CWE/CodeableConcept + expressionType: resource + specs: OBR.15.6 - expressionType: nested vars: obr16: STRING_ALL, OBR.16 diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml index b43c8db1440..f5a05555b8f 100644 --- a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml +++ b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml @@ -12,21 +12,16 @@ type: specs: OBR.15.1 container: - condition: $obr152 + condition: $obr152 NOT_NULL expressionType: nested generateList: true vars: obr152: OBR.15.2 expressionsMap: additiveCodeableConcept: - expressionType: nested - expressions: - - expressionType: nested - expressionsMap: - text: - type: STRING - valueOf: OBR.15.2 - expressionType: HL7Spec + valueOf: datatypes/CWE/CodeableConcept + expressionType: resource + specs: OBR.15.2 collection: condition: $obr7 NOT_NULL || $obr8 NOT_NULL || $obr9 NOT_NULL || $obr10 NOT_NULL || $obr15 NOT_NULL diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java new file mode 100644 index 00000000000..2c642089c1e --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java @@ -0,0 +1,236 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.v27.segment.TCD; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + +/** + *

Represents a OML_O21_OBSERVATION group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: OBX (Observation/Result)
  • + *
  • 2: PRT (Participation Information) optional repeating
  • + *
  • 3: TCD (Test Code Detail) optional
  • + *
  • 4: NTE (Notes and Comments) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_OBSERVATION extends AbstractGroup { + + /** + * Creates a new OML_O21_OBSERVATION group + */ + public OML_O21_OBSERVATION(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(OBX.class, true, false, false); + this.add(PRT.class, false, true, false); + this.add(TCD.class, false, false, false); + this.add(NTE.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_OBSERVATION - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * OBX (Observation/Result) - creates it if necessary + */ + public OBX getOBX() { + OBX retVal = getTyped("OBX", OBX.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + /** + * Returns + * TCD (Test Code Detail) - creates it if necessary + */ + public TCD getTCD() { + TCD retVal = getTyped("TCD", TCD.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + */ + public NTE getNTE() { + NTE retVal = getTyped("NTE", NTE.class); + return retVal; + } + + /** + * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { + NTE retVal = getTyped("NTE", rep, NTE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of NTE + */ + public int getNTEReps() { + return getReps("NTE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition("NTE", structure, rep); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { + return (NTE)super.insertRepetition("NTE", rep); + } + + /** + * Removes a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { + return (NTE)super.removeRepetition("NTE", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java new file mode 100644 index 00000000000..9dc2ea7041e --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java @@ -0,0 +1,526 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.v27.group.OML_O21_PRIOR_RESULT; +import ca.uhn.hl7v2.model.v27.segment.CTD; +import ca.uhn.hl7v2.model.v27.segment.DG1; +import ca.uhn.hl7v2.model.v27.segment.TCD; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + +/** + *

Represents a OML_O21_OBSERVATION_REQUEST group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: OBR (Observation Request)
  • + *
  • 2: TCD (Test Code Detail) optional
  • + *
  • 3: NTE (Notes and Comments) optional repeating
  • + *
  • 4: PRT (Participation Information) optional repeating
  • + *
  • 5: CTD (Contact Data) optional
  • + *
  • 6: DG1 (Diagnosis) optional repeating
  • + *
  • 7: OML_O21_OBSERVATION (a Group object) optional repeating
  • + *
  • 8: OML_O21_SPECIMEN (a Group object) optional repeating
  • + *
  • 9: OML_O21_PRIOR_RESULT (a Group object) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_OBSERVATION_REQUEST extends AbstractGroup { + + /** + * Creates a new OML_O21_OBSERVATION_REQUEST group + */ + public OML_O21_OBSERVATION_REQUEST(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(OBR.class, true, false, false); + this.add(TCD.class, false, false, false); + this.add(NTE.class, false, true, false); + this.add(PRT.class, false, true, false); + this.add(CTD.class, false, false, false); + this.add(DG1.class, false, true, false); + this.add(OML_O21_OBSERVATION.class, false, true, false); + this.add(OML_O21_SPECIMEN.class, false, true, false); + this.add(OML_O21_PRIOR_RESULT.class, false, true, false); // not todo? + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_OBSERVATION_REQUEST - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * OBR (Observation Request) - creates it if necessary + */ + public OBR getOBR() { + OBR retVal = getTyped("OBR", OBR.class); + return retVal; + } + + /** + * Returns + * TCD (Test Code Detail) - creates it if necessary + */ + public TCD getTCD() { + TCD retVal = getTyped("TCD", TCD.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + */ + public NTE getNTE() { + NTE retVal = getTyped("NTE", NTE.class); + return retVal; + } + + /** + * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { + NTE retVal = getTyped("NTE", rep, NTE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of NTE + */ + public int getNTEReps() { + return getReps("NTE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition("NTE", structure, rep); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { + return (NTE)super.insertRepetition("NTE", rep); + } + + /** + * Removes a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { + return (NTE)super.removeRepetition("NTE", rep); + } + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + /** + * Returns + * CTD (Contact Data) - creates it if necessary + */ + public CTD getCTD() { + CTD retVal = getTyped("CTD", CTD.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * DG1 (Diagnosis) - creates it if necessary + */ + public DG1 getDG1() { + DG1 retVal = getTyped("DG1", DG1.class); + return retVal; + } + + /** + * Returns a specific repetition of + * DG1 (Diagnosis) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public DG1 getDG1(int rep) { + DG1 retVal = getTyped("DG1", rep, DG1.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of DG1 + */ + public int getDG1Reps() { + return getReps("DG1"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of DG1. + *

+ *

+ * Note that unlike {@link #getDG1()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getDG1All() throws HL7Exception { + return getAllAsList("DG1", DG1.class); + } + + /** + * Inserts a specific repetition of DG1 (Diagnosis) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertDG1(DG1 structure, int rep) throws HL7Exception { + super.insertRepetition("DG1", structure, rep); + } + + /** + * Inserts a specific repetition of DG1 (Diagnosis) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public DG1 insertDG1(int rep) throws HL7Exception { + return (DG1)super.insertRepetition("DG1", rep); + } + + /** + * Removes a specific repetition of DG1 (Diagnosis) + * @see AbstractGroup#removeRepetition(String, int) + */ + public DG1 removeDG1(int rep) throws HL7Exception { + return (DG1)super.removeRepetition("DG1", rep); + } + + /** + * Returns + * the first repetition of + * OBSERVATION (a Group object) - creates it if necessary + */ + public OML_O21_OBSERVATION getOBSERVATION() { + OML_O21_OBSERVATION retVal = getTyped("OBSERVATION", OML_O21_OBSERVATION.class); + return retVal; + } + + /** + * Returns a specific repetition of + * OBSERVATION (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_OBSERVATION getOBSERVATION(int rep) { + OML_O21_OBSERVATION retVal = getTyped("OBSERVATION", rep, OML_O21_OBSERVATION.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of OBSERVATION + */ + public int getOBSERVATIONReps() { + return getReps("OBSERVATION"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of OBSERVATION. + *

+ *

+ * Note that unlike {@link #getOBSERVATION()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getOBSERVATIONAll() throws HL7Exception { + return getAllAsList("OBSERVATION", OML_O21_OBSERVATION.class); + } + + /** + * Inserts a specific repetition of OBSERVATION (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertOBSERVATION(OML_O21_OBSERVATION structure, int rep) throws HL7Exception { + super.insertRepetition("OBSERVATION", structure, rep); + } + + /** + * Inserts a specific repetition of OBSERVATION (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_OBSERVATION insertOBSERVATION(int rep) throws HL7Exception { + return (OML_O21_OBSERVATION)super.insertRepetition("OBSERVATION", rep); + } + + /** + * Removes a specific repetition of OBSERVATION (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_OBSERVATION removeOBSERVATION(int rep) throws HL7Exception { + return (OML_O21_OBSERVATION)super.removeRepetition("OBSERVATION", rep); + } + + /** + * Returns + * the first repetition of + * SPECIMEN (a Group object) - creates it if necessary + */ + public OML_O21_SPECIMEN getSPECIMEN() { + OML_O21_SPECIMEN retVal = getTyped("SPECIMEN", OML_O21_SPECIMEN.class); + return retVal; + } + + /** + * Returns a specific repetition of + * SPECIMEN (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_SPECIMEN getSPECIMEN(int rep) { + OML_O21_SPECIMEN retVal = getTyped("SPECIMEN", rep, OML_O21_SPECIMEN.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of SPECIMEN + */ + public int getSPECIMENReps() { + return getReps("SPECIMEN"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of SPECIMEN. + *

+ *

+ * Note that unlike {@link #getSPECIMEN()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getSPECIMENAll() throws HL7Exception { + return getAllAsList("SPECIMEN", OML_O21_SPECIMEN.class); + } + + /** + * Inserts a specific repetition of SPECIMEN (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertSPECIMEN(OML_O21_SPECIMEN structure, int rep) throws HL7Exception { + super.insertRepetition("SPECIMEN", structure, rep); + } + + /** + * Inserts a specific repetition of SPECIMEN (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_SPECIMEN insertSPECIMEN(int rep) throws HL7Exception { + return (OML_O21_SPECIMEN)super.insertRepetition("SPECIMEN", rep); + } + + /** + * Removes a specific repetition of SPECIMEN (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_SPECIMEN removeSPECIMEN(int rep) throws HL7Exception { + return (OML_O21_SPECIMEN)super.removeRepetition("SPECIMEN", rep); + } + + /** + * Returns + * the first repetition of + * PRIOR_RESULT (a Group object) - creates it if necessary + */ + public OML_O21_PRIOR_RESULT getPRIOR_RESULT() { + OML_O21_PRIOR_RESULT retVal = getTyped("PRIOR_RESULT", OML_O21_PRIOR_RESULT.class); + return retVal; + } + + /** + * Returns a specific repetition of + * PRIOR_RESULT (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_PRIOR_RESULT getPRIOR_RESULT(int rep) { + OML_O21_PRIOR_RESULT retVal = getTyped("PRIOR_RESULT", rep, OML_O21_PRIOR_RESULT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRIOR_RESULT + */ + public int getPRIOR_RESULTReps() { + return getReps("PRIOR_RESULT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRIOR_RESULT. + *

+ *

+ * Note that unlike {@link #getPRIOR_RESULT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRIOR_RESULTAll() throws HL7Exception { + return getAllAsList("PRIOR_RESULT", OML_O21_PRIOR_RESULT.class); + } + + /** + * Inserts a specific repetition of PRIOR_RESULT (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRIOR_RESULT(OML_O21_PRIOR_RESULT structure, int rep) throws HL7Exception { + super.insertRepetition("PRIOR_RESULT", structure, rep); + } + + /** + * Inserts a specific repetition of PRIOR_RESULT (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_PRIOR_RESULT insertPRIOR_RESULT(int rep) throws HL7Exception { + return (OML_O21_PRIOR_RESULT)super.insertRepetition("PRIOR_RESULT", rep); + } + + /** + * Removes a specific repetition of PRIOR_RESULT (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_PRIOR_RESULT removePRIOR_RESULT(int rep) throws HL7Exception { + return (OML_O21_PRIOR_RESULT)super.removeRepetition("PRIOR_RESULT", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java new file mode 100644 index 00000000000..de368e74ff2 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java @@ -0,0 +1,383 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.v27.group.OML_O21_TIMING; +import ca.uhn.hl7v2.model.v27.segment.BLG; +import ca.uhn.hl7v2.model.v27.segment.CTI; +import ca.uhn.hl7v2.model.v27.segment.FT1; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + +/** + *

Represents a OML_O21_ORDER group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: ORC (Common Order)
  • + *
  • 2: PRT (Participation Information) optional repeating
  • + *
  • 3: OML_O21_TIMING (a Group object) optional repeating
  • + *
  • 4: OML_O21_OBSERVATION_REQUEST (a Group object) optional
  • + *
  • 5: FT1 (Financial Transaction) optional repeating
  • + *
  • 6: CTI (Clinical Trial Identification) optional repeating
  • + *
  • 7: BLG (Billing) optional
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_ORDER extends AbstractGroup { + + /** + * Creates a new OML_O21_ORDER group + */ + public OML_O21_ORDER(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(ORC.class, true, false, false); + this.add(PRT.class, false, true, false); + this.add(OML_O21_TIMING.class, false, true, false); // todo add TQ1 java class creation into tq1 ticket + this.add(OML_O21_OBSERVATION_REQUEST.class, false, false, false); + this.add(FT1.class, false, true, false); + this.add(CTI.class, false, true, false); + this.add(BLG.class, false, false, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_ORDER - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * ORC (Common Order) - creates it if necessary + */ + public ORC getORC() { + ORC retVal = getTyped("ORC", ORC.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + /** + * Returns + * the first repetition of + * TIMING (a Group object) - creates it if necessary + */ + public OML_O21_TIMING getTIMING() { + OML_O21_TIMING retVal = getTyped("TIMING", OML_O21_TIMING.class); + return retVal; + } + + /** + * Returns a specific repetition of + * TIMING (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_TIMING getTIMING(int rep) { + OML_O21_TIMING retVal = getTyped("TIMING", rep, OML_O21_TIMING.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of TIMING + */ + public int getTIMINGReps() { + return getReps("TIMING"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of TIMING. + *

+ * Note that unlike {@link #getTIMING()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getTIMINGAll() throws HL7Exception { + return getAllAsList("TIMING", OML_O21_TIMING.class); + } + + /** + * Inserts a specific repetition of TIMING (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertTIMING(OML_O21_TIMING structure, int rep) throws HL7Exception { + super.insertRepetition("TIMING", structure, rep); + } + + /** + * Inserts a specific repetition of TIMING (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_TIMING insertTIMING(int rep) throws HL7Exception { + return (OML_O21_TIMING)super.insertRepetition("TIMING", rep); + } + + /** + * Removes a specific repetition of TIMING (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_TIMING removeTIMING(int rep) throws HL7Exception { + return (OML_O21_TIMING)super.removeRepetition("TIMING", rep); + } + + /** + * Returns + * OBSERVATION_REQUEST (a Group object) - creates it if necessary + */ + public OML_O21_OBSERVATION_REQUEST getOBSERVATION_REQUEST() { + OML_O21_OBSERVATION_REQUEST retVal = getTyped("OBSERVATION_REQUEST", OML_O21_OBSERVATION_REQUEST.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * FT1 (Financial Transaction) - creates it if necessary + */ + public FT1 getFT1() { + FT1 retVal = getTyped("FT1", FT1.class); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1 (Financial Transaction) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public FT1 getFT1(int rep) { + FT1 retVal = getTyped("FT1", rep, FT1.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of FT1 + */ + public int getFT1Reps() { + return getReps("FT1"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of FT1. + *

+ * Note that unlike {@link #getFT1()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getFT1All() throws HL7Exception { + return getAllAsList("FT1", FT1.class); + } + + /** + * Inserts a specific repetition of FT1 (Financial Transaction) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertFT1(FT1 structure, int rep) throws HL7Exception { + super.insertRepetition("FT1", structure, rep); + } + + /** + * Inserts a specific repetition of FT1 (Financial Transaction) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public FT1 insertFT1(int rep) throws HL7Exception { + return (FT1)super.insertRepetition("FT1", rep); + } + + /** + * Removes a specific repetition of FT1 (Financial Transaction) + * @see AbstractGroup#removeRepetition(String, int) + */ + public FT1 removeFT1(int rep) throws HL7Exception { + return (FT1)super.removeRepetition("FT1", rep); + } + + /** + * Returns + * the first repetition of + * CTI (Clinical Trial Identification) - creates it if necessary + */ + public CTI getCTI() { + CTI retVal = getTyped("CTI", CTI.class); + return retVal; + } + + /** + * Returns a specific repetition of + * CTI (Clinical Trial Identification) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public CTI getCTI(int rep) { + CTI retVal = getTyped("CTI", rep, CTI.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of CTI + */ + public int getCTIReps() { + return getReps("CTI"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of CTI. + *

+ * Note that unlike {@link #getCTI()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getCTIAll() throws HL7Exception { + return getAllAsList("CTI", CTI.class); + } + + /** + * Inserts a specific repetition of CTI (Clinical Trial Identification) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertCTI(CTI structure, int rep) throws HL7Exception { + super.insertRepetition("CTI", structure, rep); + } + + /** + * Inserts a specific repetition of CTI (Clinical Trial Identification) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public CTI insertCTI(int rep) throws HL7Exception { + return (CTI)super.insertRepetition("CTI", rep); + } + + /** + * Removes a specific repetition of CTI (Clinical Trial Identification) + * @see AbstractGroup#removeRepetition(String, int) + */ + public CTI removeCTI(int rep) throws HL7Exception { + return (CTI)super.removeRepetition("CTI", rep); + } + + /** + * Returns + * BLG (Billing) - creates it if necessary + */ + public BLG getBLG() { + BLG retVal = getTyped("BLG", BLG.class); + return retVal; + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java new file mode 100644 index 00000000000..ce8a489a776 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java @@ -0,0 +1,469 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.v27.segment.AL1; +import ca.uhn.hl7v2.model.v27.segment.GT1; +import ca.uhn.hl7v2.model.v27.segment.NK1; +import ca.uhn.hl7v2.model.v27.group.OML_O21_INSURANCE; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PID; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + +/** + *

Represents a OML_O21_PATIENT group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: PID (Patient Identification)
  • + *
  • 2: PD1 (Patient Additional Demographic) optional
  • + *
  • 3: PRT (Participation Information) optional repeating
  • + *
  • 4: NTE (Notes and Comments) optional repeating
  • + *
  • 5: NK1 (Next of Kin / Associated Parties) optional repeating
  • + *
  • 6: OML_O21_PATIENT_VISIT (a Group object) optional
  • + *
  • 7: OML_O21_INSURANCE (a Group object) optional repeating
  • + *
  • 8: GT1 (Guarantor) optional
  • + *
  • 9: AL1 (Patient Allergy Information) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_PATIENT extends AbstractGroup { + + /** + * Creates a new OML_O21_PATIENT group + */ + public OML_O21_PATIENT(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(PID.class, true, false, false); + this.add(PD1.class, false, false, false); + this.add(PRT.class, false, true, false); + this.add(NTE.class, false, true, false); + this.add(NK1.class, false, true, false); + this.add(OML_O21_PATIENT_VISIT.class, false, false, false); + this.add(OML_O21_INSURANCE.class, false, true, false); + this.add(GT1.class, false, false, false); + this.add(AL1.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_PATIENT - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * PID (Patient Identification) - creates it if necessary + */ + public PID getPID() { + PID retVal = getTyped("PID", PID.class); + return retVal; + } + + /** + * Returns + * PD1 (Patient Additional Demographic) - creates it if necessary + */ + public PD1 getPD1() { + PD1 retVal = getTyped("PD1", PD1.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + /** + * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + */ + public NTE getNTE() { + NTE retVal = getTyped("NTE", NTE.class); + return retVal; + } + + /** + * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { + NTE retVal = getTyped("NTE", rep, NTE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of NTE + */ + public int getNTEReps() { + return getReps("NTE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition("NTE", structure, rep); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { + return (NTE)super.insertRepetition("NTE", rep); + } + + /** + * Removes a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { + return (NTE)super.removeRepetition("NTE", rep); + } + + /** + * Returns + * the first repetition of + * NK1 (Next of Kin / Associated Parties) - creates it if necessary + */ + public NK1 getNK1() { + NK1 retVal = getTyped("NK1", NK1.class); + return retVal; + } + + /** + * Returns a specific repetition of + * NK1 (Next of Kin / Associated Parties) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NK1 getNK1(int rep) { + NK1 retVal = getTyped("NK1", rep, NK1.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of NK1 + */ + public int getNK1Reps() { + return getReps("NK1"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NK1. + *

+ *

+ * Note that unlike {@link #getNK1()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNK1All() throws HL7Exception { + return getAllAsList("NK1", NK1.class); + } + + /** + * Inserts a specific repetition of NK1 (Next of Kin / Associated Parties) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNK1(NK1 structure, int rep) throws HL7Exception { + super.insertRepetition("NK1", structure, rep); + } + + /** + * Inserts a specific repetition of NK1 (Next of Kin / Associated Parties) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NK1 insertNK1(int rep) throws HL7Exception { + return (NK1)super.insertRepetition("NK1", rep); + } + + /** + * Removes a specific repetition of NK1 (Next of Kin / Associated Parties) + * @see AbstractGroup#removeRepetition(String, int) + */ + public NK1 removeNK1(int rep) throws HL7Exception { + return (NK1)super.removeRepetition("NK1", rep); + } + + /** + * Returns + * PATIENT_VISIT (a Group object) - creates it if necessary + */ + public OML_O21_PATIENT_VISIT getPATIENT_VISIT() { + OML_O21_PATIENT_VISIT retVal = getTyped("PATIENT_VISIT", OML_O21_PATIENT_VISIT.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * INSURANCE (a Group object) - creates it if necessary + */ + public OML_O21_INSURANCE getINSURANCE() { + OML_O21_INSURANCE retVal = getTyped("INSURANCE", OML_O21_INSURANCE.class); + return retVal; + } + + /** + * Returns a specific repetition of + * INSURANCE (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_INSURANCE getINSURANCE(int rep) { + OML_O21_INSURANCE retVal = getTyped("INSURANCE", rep, OML_O21_INSURANCE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of INSURANCE + */ + public int getINSURANCEReps() { + return getReps("INSURANCE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of INSURANCE. + *

+ *

+ * Note that unlike {@link #getINSURANCE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getINSURANCEAll() throws HL7Exception { + return getAllAsList("INSURANCE", OML_O21_INSURANCE.class); + } + + /** + * Inserts a specific repetition of INSURANCE (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertINSURANCE(OML_O21_INSURANCE structure, int rep) throws HL7Exception { + super.insertRepetition("INSURANCE", structure, rep); + } + + /** + * Inserts a specific repetition of INSURANCE (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_INSURANCE insertINSURANCE(int rep) throws HL7Exception { + return (OML_O21_INSURANCE)super.insertRepetition("INSURANCE", rep); + } + + /** + * Removes a specific repetition of INSURANCE (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_INSURANCE removeINSURANCE(int rep) throws HL7Exception { + return (OML_O21_INSURANCE)super.removeRepetition("INSURANCE", rep); + } + + /** + * Returns + * GT1 (Guarantor) - creates it if necessary + */ + public GT1 getGT1() { + GT1 retVal = getTyped("GT1", GT1.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * AL1 (Patient Allergy Information) - creates it if necessary + */ + public AL1 getAL1() { + AL1 retVal = getTyped("AL1", AL1.class); + return retVal; + } + + /** + * Returns a specific repetition of + * AL1 (Patient Allergy Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public AL1 getAL1(int rep) { + AL1 retVal = getTyped("AL1", rep, AL1.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of AL1 + */ + public int getAL1Reps() { + return getReps("AL1"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of AL1. + *

+ *

+ * Note that unlike {@link #getAL1()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getAL1All() throws HL7Exception { + return getAllAsList("AL1", AL1.class); + } + + /** + * Inserts a specific repetition of AL1 (Patient Allergy Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertAL1(AL1 structure, int rep) throws HL7Exception { + super.insertRepetition("AL1", structure, rep); + } + + /** + * Inserts a specific repetition of AL1 (Patient Allergy Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public AL1 insertAL1(int rep) throws HL7Exception { + return (AL1)super.insertRepetition("AL1", rep); + } + + /** + * Removes a specific repetition of AL1 (Patient Allergy Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public AL1 removeAL1(int rep) throws HL7Exception { + return (AL1)super.removeRepetition("AL1", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java new file mode 100644 index 00000000000..877b32c40f5 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java @@ -0,0 +1,166 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.v27.segment.PV1; +import ca.uhn.hl7v2.model.v27.segment.PV2; +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + +/** + *

Represents a OML_O21_PATIENT_VISIT group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: PV1 (Patient Visit)
  • + *
  • 2: PV2 (Patient Visit - Additional Information) optional
  • + *
  • 3: PRT (Participation Information) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_PATIENT_VISIT extends AbstractGroup { + + /** + * Creates a new OML_O21_PATIENT_VISIT group + */ + public OML_O21_PATIENT_VISIT(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(PV1.class, true, false, false); + this.add(PV2.class, false, false, false); + this.add(PRT.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_PATIENT_VISIT - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * PV1 (Patient Visit) - creates it if necessary + */ + public PV1 getPV1() { + PV1 retVal = getTyped("PV1", PV1.class); + return retVal; + } + + /** + * Returns + * PV2 (Patient Visit - Additional Information) - creates it if necessary + */ + public PV2 getPV2() { + PV2 retVal = getTyped("PV2", PV2.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java new file mode 100644 index 00000000000..871f571ba72 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java @@ -0,0 +1,224 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.v27.group.OML_O21_SPECIMEN_OBSERVATION; +import ca.uhn.hl7v2.model.v27.group.OML_O21_CONTAINER; +import ca.uhn.hl7v2.model.v27.segment.SPM; +import ca.uhn.hl7v2.parser.ModelClassFactory; + +/** + *

Represents a OML_O21_SPECIMEN group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: SPM (Specimen)
  • + *
  • 2: OML_O21_SPECIMEN_OBSERVATION (a Group object) optional repeating
  • + *
  • 3: OML_O21_CONTAINER (a Group object) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_SPECIMEN extends AbstractGroup { + + /** + * Creates a new OML_O21_SPECIMEN group + */ + public OML_O21_SPECIMEN(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(SPM.class, true, false, false); + this.add(OML_O21_SPECIMEN_OBSERVATION.class, false, true, false); + this.add(OML_O21_CONTAINER.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_SPECIMEN - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + /** + * Returns + * SPM (Specimen) - creates it if necessary + */ + public SPM getSPM() { + SPM retVal = getTyped("SPM", SPM.class); + return retVal; + } + + /** + * Returns + * the first repetition of + * SPECIMEN_OBSERVATION (a Group object) - creates it if necessary + */ + public OML_O21_SPECIMEN_OBSERVATION getSPECIMEN_OBSERVATION() { + OML_O21_SPECIMEN_OBSERVATION retVal = getTyped("SPECIMEN_OBSERVATION", OML_O21_SPECIMEN_OBSERVATION.class); + return retVal; + } + + /** + * Returns a specific repetition of + * SPECIMEN_OBSERVATION (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_SPECIMEN_OBSERVATION getSPECIMEN_OBSERVATION(int rep) { + OML_O21_SPECIMEN_OBSERVATION retVal = getTyped("SPECIMEN_OBSERVATION", rep, OML_O21_SPECIMEN_OBSERVATION.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of SPECIMEN_OBSERVATION + */ + public int getSPECIMEN_OBSERVATIONReps() { + return getReps("SPECIMEN_OBSERVATION"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of SPECIMEN_OBSERVATION. + *

+ *

+ * Note that unlike {@link #getSPECIMEN_OBSERVATION()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getSPECIMEN_OBSERVATIONAll() throws HL7Exception { + return getAllAsList("SPECIMEN_OBSERVATION", OML_O21_SPECIMEN_OBSERVATION.class); + } + + /** + * Inserts a specific repetition of SPECIMEN_OBSERVATION (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertSPECIMEN_OBSERVATION(OML_O21_SPECIMEN_OBSERVATION structure, int rep) throws HL7Exception { + super.insertRepetition("SPECIMEN_OBSERVATION", structure, rep); + } + + /** + * Inserts a specific repetition of SPECIMEN_OBSERVATION (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_SPECIMEN_OBSERVATION insertSPECIMEN_OBSERVATION(int rep) throws HL7Exception { + return (OML_O21_SPECIMEN_OBSERVATION)super.insertRepetition("SPECIMEN_OBSERVATION", rep); + } + + /** + * Removes a specific repetition of SPECIMEN_OBSERVATION (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_SPECIMEN_OBSERVATION removeSPECIMEN_OBSERVATION(int rep) throws HL7Exception { + return (OML_O21_SPECIMEN_OBSERVATION)super.removeRepetition("SPECIMEN_OBSERVATION", rep); + } + + /** + * Returns + * the first repetition of + * CONTAINER (a Group object) - creates it if necessary + */ + public OML_O21_CONTAINER getCONTAINER() { + OML_O21_CONTAINER retVal = getTyped("CONTAINER", OML_O21_CONTAINER.class); + return retVal; + } + + /** + * Returns a specific repetition of + * CONTAINER (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_CONTAINER getCONTAINER(int rep) { + OML_O21_CONTAINER retVal = getTyped("CONTAINER", rep, OML_O21_CONTAINER.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of CONTAINER + */ + public int getCONTAINERReps() { + return getReps("CONTAINER"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of CONTAINER. + *

+ *

+ * Note that unlike {@link #getCONTAINER()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getCONTAINERAll() throws HL7Exception { + return getAllAsList("CONTAINER", OML_O21_CONTAINER.class); + } + + /** + * Inserts a specific repetition of CONTAINER (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertCONTAINER(OML_O21_CONTAINER structure, int rep) throws HL7Exception { + super.insertRepetition("CONTAINER", structure, rep); + } + + /** + * Inserts a specific repetition of CONTAINER (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_CONTAINER insertCONTAINER(int rep) throws HL7Exception { + return (OML_O21_CONTAINER)super.insertRepetition("CONTAINER", rep); + } + + /** + * Removes a specific repetition of CONTAINER (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_CONTAINER removeCONTAINER(int rep) throws HL7Exception { + return (OML_O21_CONTAINER)super.removeRepetition("CONTAINER", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/OML_O21.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/OML_O21.java new file mode 100644 index 00000000000..93382afef31 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/OML_O21.java @@ -0,0 +1,354 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + +package fhirengine.translation.hl7.structures.fhirinventory.message; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.AbstractMessage; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.model.v27.segment.MSH; +import ca.uhn.hl7v2.model.v27.segment.SFT; +import ca.uhn.hl7v2.model.v27.segment.UAC; +import ca.uhn.hl7v2.parser.DefaultModelClassFactory; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.group.OML_O21_ORDER; +import fhirengine.translation.hl7.structures.fhirinventory.group.OML_O21_PATIENT; +import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; + +/** + *

Represents a OML_O21 message structure (see chapter 4.4.6). This structure contains the + * following elements:

+ *
    + *
  • 1: MSH (Message Header)
  • + *
  • 2: SFT (Software Segment) optional repeating
  • + *
  • 3: UAC (User Authentication Credential Segment) optional
  • + *
  • 4: NTE (Notes and Comments) optional repeating
  • + *
  • 5: OML_O21_PATIENT (a Group object) optional
  • + *
  • 6: OML_O21_ORDER (a Group object) repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21 extends AbstractMessage { + + /** + * Creates a new OML_O21 message with DefaultModelClassFactory. + */ + public OML_O21() { + this(new DefaultModelClassFactory()); + } + + /** + * Creates a new OML_O21 message with custom ModelClassFactory. + */ + public OML_O21(ModelClassFactory factory) { + super(factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(MSH.class, true, false); + this.add(SFT.class, false, true); + this.add(UAC.class, false, false); + this.add(NTE.class, false, true); + this.add(OML_O21_PATIENT.class, false, false); + this.add(OML_O21_ORDER.class, true, true); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21 - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { return "2.7"; } + + /** + *

+ * Returns + * MSH (Message Header) - creates it if necessary + *

+ */ + public MSH getMSH() { return getTyped("MSH", MSH.class); } + + /** + *

+ * Returns + * the first repetition of + * SFT (Software Segment) - creates it if necessary + *

+ */ + public SFT getSFT() { return getTyped("SFT", SFT.class); } + + + /** + *

+ * Returns a specific repetition of + * SFT (Software Segment) - creates it if necessary + *

+ * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public SFT getSFT(int rep) { return getTyped("SFT", rep, SFT.class); } + + /** + *

+ * Returns the number of existing repetitions of SFT + *

+ */ + public int getSFTReps() { return getReps("SFT"); } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of SFT. + *

+ * Note that unlike {@link #getSFT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getSFTAll() throws HL7Exception { + return getAllAsList("SFT", SFT.class); + } + + /** + *

+ * Inserts a specific repetition of SFT (Software Segment) + *

+ * + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertSFT(SFT structure, int rep) throws HL7Exception { + super.insertRepetition( "SFT", structure, rep); + } + + /** + *

+ * Inserts a specific repetition of SFT (Software Segment) + *

+ * + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public SFT insertSFT(int rep) throws HL7Exception { + return (SFT)super.insertRepetition("SFT", rep); + } + + /** + *

+ * Removes a specific repetition of SFT (Software Segment) + *

+ * + * @see AbstractGroup#removeRepetition(String, int) + */ + public SFT removeSFT(int rep) throws HL7Exception { + return (SFT)super.removeRepetition("SFT", rep); + } + + /** + *

+ * Returns + * UAC (User Authentication Credential Segment) - creates it if necessary + *

+ */ + public UAC getUAC() { + return getTyped("UAC", UAC.class); + } + + /** + *

+ * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + *

+ */ + public NTE getNTE() { + return getTyped("NTE", NTE.class); + } + + /** + *

+ * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + *

+ * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { + return getTyped("NTE", rep, NTE.class); + } + + /** + *

+ * Returns the number of existing repetitions of NTE + *

+ */ + public int getNTEReps() { + return getReps("NTE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + *

+ * Inserts a specific repetition of NTE (Notes and Comments) + *

+ * + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition( "NTE", structure, rep); + } + + /** + *

+ * Inserts a specific repetition of NTE (Notes and Comments) + *

+ * + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { + return (NTE)super.insertRepetition("NTE", rep); + } + + /** + *

+ * Removes a specific repetition of NTE (Notes and Comments) + *

+ * + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { + return (NTE)super.removeRepetition("NTE", rep); + } + + /** + *

+ * Returns + * PATIENT (a Group object) - creates it if necessary + *

+ */ + public OML_O21_PATIENT getPATIENT() { + return getTyped("PATIENT", OML_O21_PATIENT.class); + } + + /** + *

+ * Returns + * the first repetition of + * ORDER (a Group object) - creates it if necessary + *

+ */ + public OML_O21_ORDER getORDER() { + return getTyped("ORDER", OML_O21_ORDER.class); + } + + /** + *

+ * Returns a specific repetition of + * ORDER (a Group object) - creates it if necessary + *

+ * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_ORDER getORDER(int rep) { + return getTyped("ORDER", rep, OML_O21_ORDER.class); + } + + /** + *

+ * Returns the number of existing repetitions of ORDER + *

+ */ + public int getORDERReps() { + return getReps("ORDER"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of ORDER. + *

+ * Note that unlike {@link #getORDER()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getORDERAll() throws HL7Exception { + return getAllAsList("ORDER", OML_O21_ORDER.class); + } + + /** + *

+ * Inserts a specific repetition of ORDER (a Group object) + *

+ * + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertORDER(OML_O21_ORDER structure, int rep) throws HL7Exception { + super.insertRepetition( "ORDER", structure, rep); + } + + /** + *

+ * Inserts a specific repetition of ORDER (a Group object) + *

+ * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_ORDER insertORDER(int rep) throws HL7Exception { + return (OML_O21_ORDER)super.insertRepetition("ORDER", rep); + } + + /** + *

+ * Removes a specific repetition of ORDER (a Group object) + *

+ * + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_ORDER removeORDER(int rep) throws HL7Exception { + return (OML_O21_ORDER)super.removeRepetition("ORDER", rep); + } +} \ No newline at end of file diff --git a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt index 037cac9f388..22ea9ceadda 100644 --- a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt +++ b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt @@ -13,6 +13,7 @@ import ca.uhn.hl7v2.util.Hl7InputStreamMessageStringIterator import ca.uhn.hl7v2.util.Terser import ca.uhn.hl7v2.validation.ValidationException import ca.uhn.hl7v2.validation.impl.ValidationContextFactory +import fhirengine.translation.hl7.structures.fhirinventory.message.OML_O21 import fhirengine.translation.hl7.structures.fhirinventory.message.ORM_O01 import fhirengine.translation.hl7.structures.fhirinventory.message.ORU_R01 import fhirengine.utils.ReportStreamCanonicalModelClassFactory @@ -22,10 +23,8 @@ import org.apache.commons.lang3.exception.ExceptionUtils import org.apache.logging.log4j.Level import org.apache.logging.log4j.kotlin.Logging import java.util.Date -import ca.uhn.hl7v2.model.v251.message.OML_O21 as v251_OML_O21 import ca.uhn.hl7v2.model.v251.message.ORU_R01 as v251_ORU_R01 import ca.uhn.hl7v2.model.v251.segment.MSH as v251_MSH -import ca.uhn.hl7v2.model.v27.message.OML_O21 as v27_OML_O21 import ca.uhn.hl7v2.model.v27.message.ORU_R01 as v27_ORU_R01 import ca.uhn.hl7v2.model.v27.segment.MSH as v27_MSH import fhirengine.translation.hl7.structures.nistelr251.message.ORU_R01 as NIST_ELR_ORU_R01 @@ -141,12 +140,6 @@ class HL7Reader(private val actionLogger: ActionLogger) : Logging { ) } } - "OML" -> { - return listOf( - v27_OML_O21::class.java, - v251_OML_O21::class.java - ) - } else -> { logger.warn( "${messageProfile.typeID} did not have any mapped message model classes, " + @@ -308,7 +301,7 @@ class HL7Reader(private val actionLogger: ActionLogger) : Logging { DefaultHapiContext( ParserConfiguration(), ValidationContextFactory.noValidation(), - ReportStreamCanonicalModelClassFactory(v27_OML_O21::class.java), + ReportStreamCanonicalModelClassFactory(OML_O21::class.java), ) } else if (hl7MessageType?.msh93 == "ORM_O01") { DefaultHapiContext( diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml index 8a6f0c4db02..ddc67b83b82 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml @@ -7,6 +7,8 @@ elements: schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml - name: observation-request-observation + resource: '%resource.supportingInfo.resolve().ofType(Observation).where(subject.resolve().id = %resource.subject.resolve().id)' + resourceIndex: observationIndex schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml - name: observation-request-specimen diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml index 73879a89232..52bd72bc31e 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml @@ -8,7 +8,15 @@ elements: constants: obrFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBR' -# - name: observation-request-note -# todo in second pass, for ORU this is mapped through Observation.note; OML maps through ServiceRequest.note -# this is already mapped into fhir via ORC/ServiceRequest... where is fhir -> hl7? -# todo add scearnio in full oml test for an OBSERVATION_REQUEST.NTE \ No newline at end of file + - name: observation-request-specimen + resource: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR")' + schema: classpath:/metadata/hl7_mapping/resources/Specimen/OBR.yml + constants: + obrFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBR' + + - name: observation-request-note + resource: '%resource.note' + resourceIndex: noteIndex + schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml + constants: + hl7NotePath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml index c30cc39c86e..27470c8de9f 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml @@ -1,18 +1,22 @@ # $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json -constants: - observationPath: '%resource.supportingInfo.resolve().ofType(Observation).where(subject.resolve().id = %resource.subject.resolve().id)' - elements: - name: observation-result - resource: '%observationPath' - resourceIndex: resultIndex + resource: '%resource' required: false schema: classpath:/metadata/hl7_mapping/resources/Observation/OBX.yml constants: - hl7OBXField: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{resultIndex})/OBX' - hl7ObservationPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{resultIndex})' + hl7OBXField: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{observationIndex})/OBX' + hl7ObservationPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{observationIndex})' + resultIndex: observationIndex + + - name: observation-result-note + resource: '%resource.note' + resourceIndex: noteIndex + schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml + constants: + hl7NotePath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{observationIndex})' # todo # - name: observation-participation-information diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml index a77522f12f5..a9a3399d765 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml @@ -7,6 +7,7 @@ elements: schema: classpath:/metadata/hl7_mapping/resources/Specimen/SPM.yml constants: hl7SpecimenFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/SPECIMEN(%{specimenIndex})/SPM' + resultIndex: specimenIndex - name: specimen-extension resource: '%resource.extension(%`rsext-spm-specimen`)' diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml index dc0d8064c01..66f367574b7 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml @@ -24,8 +24,8 @@ elements: - name: patient-note resource: '%resource.extension(%`rsext-patient-notes`).value' - schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml resourceIndex: noteIndex + schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml constants: hl7NotePath: '%{hl7SegmentGroup}' diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml index 3aacd09688c..ead6385b7e7 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml @@ -20,6 +20,12 @@ elements: constants: obrFieldPath: '/PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR' + - name: observation-request-specimen + resource: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR")' + schema: classpath:/metadata/hl7_mapping/resources/Specimen/OBR.yml + constants: + obrFieldPath: '/PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR' + - name: observation-request-diagnostic-report resource: '%resource' schema: classpath:/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/specimen.yml b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/specimen.yml index 7a2cf358086..69b62b6981f 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/specimen.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/specimen.yml @@ -7,7 +7,7 @@ elements: - name: specimen resource: '%resource' - resourceIndex: specimenIndex + resourceIndex: resultIndex schema: classpath:/metadata/hl7_mapping/resources/Specimen/SPM.yml # constants: # performerOrganization: '%resource.basedOn.resolve().performer.resolve()' diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml index 8fdab94f0db..115dd498471 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml @@ -29,21 +29,6 @@ elements: value: [ '%resource.occurrence.extension(%`rsext-hl7v2-date-time`).value' ] hl7Spec: [ '%{obrFieldPath}-6' ] - - name: observation-collected-datetime - condition: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.is(dateTime)' - value: [ '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.extension(%`rsext-hl7v2-date-time`).value' ] - hl7Spec: [ '%{obrFieldPath}-7' ] - - - name: observation-collected-datetime-start - condition: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.is(Period)' - value: [ '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.start.extension(%`rsext-hl7v2-date-time`).value' ] - hl7Spec: [ '%{obrFieldPath}-7' ] - - - name: observation-collected-end-datetime - condition: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.is(Period)' - value: [ '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR").collection.collected.end.extension(%`rsext-hl7v2-date-time`).value' ] - hl7Spec: [ '%{obrFieldPath}-8' ] - - name: ordering-provider-from-practitioner condition: '%context.requester.resolve().is(Practitioner) and %context.requester.resolve().extension(%`rsext-hl7v2Field`).value = "OBR.16"' schema: classpath:/metadata/hl7_mapping/resources/Practitioner/XCN.yml diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBRExtension.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBRExtension.yml index e5b361e7939..32279b850ed 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBRExtension.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBRExtension.yml @@ -16,6 +16,20 @@ elements: constants: eiFieldPath: '%{obrFieldPath}-3' + - name: observation-collected-datetime-start + value: [ '%resource.extension.where(url = "OBR.7").value.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-7' ] + + - name: observation-collected-datetime-end + value: [ '%resource.extension.where(url = "OBR.8").value.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-8' ] + + - name: specimen-collection-volume + resource: '%resource.extension.where(url = "OBR.9").value' + schema: classpath:/metadata/hl7_mapping/datatypes/Quantity/CQ.yml + constants: + cqFieldPath: '%{obrFieldPath}-9' + - name: collector-identifier resource: '%resource.extension.where(url = "OBR.10").value.resolve()' schema: classpath:/metadata/hl7_mapping/resources/Practitioner/XCN.yml @@ -39,6 +53,38 @@ elements: constants: cweField: '%{obrFieldPath}-13' + - name: specimen-received-datetime + value: [ '%resource.extension.where(url = "OBR.14").value.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-14' ] + + - name: specimen-source-name + resource: '%resource.extension.where(url = "OBR.15.1").value' + schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml + constants: + cweField: '%{obrFieldPath}-15-1' + + - name: specimen-source-additives + resource: '%resource.extension.where(url = "OBR.15.2").value' + schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml + constants: + cweField: '%{obrFieldPath}-15-2' + + - name: specimen-source-collection-method-freetext + value: [ '%resource.extension.where(url = "OBR.15.3").value' ] + hl7Spec: [ '%{obrFieldPath}-15-3' ] + + - name: specimen-source-body-site + resource: '%resource.extension.where(url = "OBR.15.4").value' + schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml + constants: + cweField: '%{obrFieldPath}-15-4' + + - name: specimen-source-collection-method-code + resource: '%resource.extension.where(url = "OBR.15.6").value' + schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml + constants: + cweField: '%{obrFieldPath}-15-6' + - name: call-back-phone-number-obr-from-extension condition: '%context.requester.where(extension(%`rsext-callback-number`).value.extension(%`rsext-hl7v2Field`).value[%telecomIndex] = "OBR.17").exists().not()' resource: '%resource.extension.where(url = "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number").value' @@ -128,7 +174,6 @@ elements: cneFieldPath: '%{obrFieldPath}-45(%{cweIndex})' resourceIndex: cweIndex - - name: medically-necessary-duplicate-procedure resource: '%resource.extension.where(url = "OBR.48").value' schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/OBR.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/OBR.yml new file mode 100644 index 00000000000..150592ba484 --- /dev/null +++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/OBR.yml @@ -0,0 +1,56 @@ +# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json + +elements: + + - name: observation-collected-datetime + condition: '%resource.collection.collected.is(dateTime)' + value: [ '%resource.collection.collected.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-7' ] + + - name: observation-collected-period-start + condition: '%resource.collection.collected.is(Period)' + value: [ '%resource.collection.collected.start.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-7' ] + + - name: observation-collected-period-end + condition: '%resource.collection.collected.is(Period)' + value: [ '%resource.collection.collected.end.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-8' ] + + - name: specimen-collection-volume + resource: '%resource.collection.quantity' + constants: + cqFieldPath: '%{obrFieldPath}-9' + schema: classpath:/metadata/hl7_mapping/datatypes/Quantity/CQ.yml + + - name: specimen-received-datetime + value: [ '%resource.receivedTime.extension(%`rsext-hl7v2-date-time`).value' ] + hl7Spec: [ '%{obrFieldPath}-14' ] + + - name: specimen-source-name + resource: '%resource.type' + schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml + constants: + cweField: '%{obrFieldPath}-15-1' + + - name: specimen-source-additives + resource: '%resource.container.additive' + schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml + constants: + cweField: '%{obrFieldPath}-15-2' + + - name: specimen-source-collection-method-freetext + value: [ '%resource.note.where(extension(%`rsext-hl7v2Component`).value = "OBR.15.3").text' ] + hl7Spec: [ '%{obrFieldPath}-15-3' ] + + - name: specimen-source-body-site + resource: '%resource.collection.bodySite' + schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml + constants: + cweField: '%{obrFieldPath}-15-4' + + - name: specimen-source-collection-method-code + resource: '%resource.condition' + schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml + constants: + cweField: '%{obrFieldPath}-15-6' \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/SPM.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/SPM.yml index da3436062e2..d15dc6f2226 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/SPM.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/SPM.yml @@ -2,7 +2,7 @@ elements: - name: specimen-set-id - value: [ '"1"' ] + value: [ '%resultIndex + 1' ] hl7Spec: [ '%{hl7SpecimenFieldPath}-1' ] - name: specimen-identifier diff --git a/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt b/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt index d6c338c0d0b..a0d3ae71a8f 100644 --- a/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt +++ b/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt @@ -67,11 +67,11 @@ SPM|1|0cba76f5-35e0-4a28-803a-2f31308aae9b||258500001^Nasopharyngeal swab^SCT||| @Suppress("ktlint:standard:max-line-length") const val cleanHL7RecordConverted = - """{"resourceType":"Bundle","id":"1721779095041066000.8124ea86-afeb-4eb2-8971-312b9fb7acb8","meta":{"lastUpdated":"2024-07-23T16:58:15.045-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6"}}],"sender":{"reference":"Organization/1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7","resource":{"resourceType":"Organization","id":"1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6","resource":{"resourceType":"Organization","id":"1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1721779095325537000.37c25033-9e7b-483a-9ca2-8b553244c297","resource":{"resourceType":"Provenance","id":"1721779095325537000.37c25033-9e7b-483a-9ca2-8b553244c297","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478"}}],"entity":[{"role":"source","what":{"reference":"Device/1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10"}}]}},{"fullUrl":"Organization/1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478","resource":{"resourceType":"Organization","id":"1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f","resource":{"resourceType":"Organization","id":"1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10","resource":{"resourceType":"Device","id":"1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1721779095333009000.bd411d6d-f4cf-4c49-9cae-25b4358d5611","resource":{"resourceType":"Provenance","id":"1721779095333009000.bd411d6d-f4cf-4c49-9cae-25b4358d5611","recorded":"2024-07-23T16:58:15Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117"}}]}},{"fullUrl":"Organization/1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117","resource":{"resourceType":"Organization","id":"1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1","resource":{"resourceType":"Patient","id":"1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b","resource":{"resourceType":"Organization","id":"1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1721779095355228000.9beb413b-8721-4221-8c79-499e20f2fd92","resource":{"resourceType":"Provenance","id":"1721779095355228000.9beb413b-8721-4221-8c79-499e20f2fd92","target":[{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"}],"recorded":"2024-07-23T16:58:15Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c","resource":{"resourceType":"Observation","id":"1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848","resource":{"resourceType":"Organization","id":"1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc","resource":{"resourceType":"Observation","id":"1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62","resource":{"resourceType":"Observation","id":"1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae","resource":{"resourceType":"Observation","id":"1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445","resource":{"resourceType":"Observation","id":"1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba","resource":{"resourceType":"Specimen","id":"1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b","resource":{"resourceType":"Specimen","id":"1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f","resource":{"resourceType":"ServiceRequest","id":"1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19"}}},{"fullUrl":"Practitioner/1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83","resource":{"resourceType":"Practitioner","id":"1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306","resource":{"resourceType":"Organization","id":"1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19","resource":{"resourceType":"PractitionerRole","id":"1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19","practitioner":{"reference":"Practitioner/1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83"},"organization":{"reference":"Organization/1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306"}}},{"fullUrl":"Organization/1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37","resource":{"resourceType":"Organization","id":"1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b","resource":{"resourceType":"Practitioner","id":"1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18","resource":{"resourceType":"Practitioner","id":"1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf","resource":{"resourceType":"DiagnosticReport","id":"1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b"},{"reference":"Specimen/1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba"}],"result":[{"reference":"Observation/1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c"},{"reference":"Observation/1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc"},{"reference":"Observation/1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62"},{"reference":"Observation/1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae"},{"reference":"Observation/1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445"}]}}]}""" + """{"resourceType":"Bundle","id":"1731632467807559000.a6efb49c-5d6e-4b1b-93e4-549807228adf","meta":{"lastUpdated":"2024-11-14T17:01:07.811-08:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/1731632467857979000.21de7b32-4047-4711-8a8d-3eb6d583d5e5","resource":{"resourceType":"MessageHeader","id":"1731632467857979000.21de7b32-4047-4711-8a8d-3eb6d583d5e5","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1731632467857404000.4b17fbe3-f469-4d47-b624-b3a708809232"}}],"sender":{"reference":"Organization/1731632467838107000.a435dcab-9207-4715-8520-982466e8f850"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1731632467838107000.a435dcab-9207-4715-8520-982466e8f850","resource":{"resourceType":"Organization","id":"1731632467838107000.a435dcab-9207-4715-8520-982466e8f850","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1731632467857404000.4b17fbe3-f469-4d47-b624-b3a708809232","resource":{"resourceType":"Organization","id":"1731632467857404000.4b17fbe3-f469-4d47-b624-b3a708809232","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1731632468118479000.3007186c-cf34-4404-85c0-0e6ba392c4d5","resource":{"resourceType":"Provenance","id":"1731632468118479000.3007186c-cf34-4404-85c0-0e6ba392c4d5","target":[{"reference":"MessageHeader/1731632467857979000.21de7b32-4047-4711-8a8d-3eb6d583d5e5"},{"reference":"DiagnosticReport/1731632468291037000.ab9b0907-d6f9-4273-9ec1-e575a9319242"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1731632468117808000.136721c9-da61-4029-8afa-cb1951b419f2"}}],"entity":[{"role":"source","what":{"reference":"Device/1731632468121059000.02954daa-fe7d-416e-a5bc-4379c0525e06"}}]}},{"fullUrl":"Organization/1731632468117808000.136721c9-da61-4029-8afa-cb1951b419f2","resource":{"resourceType":"Organization","id":"1731632468117808000.136721c9-da61-4029-8afa-cb1951b419f2","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1731632468120893000.649ee734-7495-4053-a38b-b6ac88504400","resource":{"resourceType":"Organization","id":"1731632468120893000.649ee734-7495-4053-a38b-b6ac88504400","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1731632468121059000.02954daa-fe7d-416e-a5bc-4379c0525e06","resource":{"resourceType":"Device","id":"1731632468121059000.02954daa-fe7d-416e-a5bc-4379c0525e06","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1731632468120893000.649ee734-7495-4053-a38b-b6ac88504400"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1731632468126028000.89599481-01f2-4262-ac4e-3267eee965f1","resource":{"resourceType":"Provenance","id":"1731632468126028000.89599481-01f2-4262-ac4e-3267eee965f1","recorded":"2024-11-14T17:01:08Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1731632468125740000.a25331bc-c56a-4bfd-bd88-18cbe2f78e2e"}}]}},{"fullUrl":"Organization/1731632468125740000.a25331bc-c56a-4bfd-bd88-18cbe2f78e2e","resource":{"resourceType":"Organization","id":"1731632468125740000.a25331bc-c56a-4bfd-bd88-18cbe2f78e2e","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b","resource":{"resourceType":"Patient","id":"1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1731632468130893000.c443cd1d-44f0-455d-8edf-a68e1d0b1b78"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1731632468130893000.c443cd1d-44f0-455d-8edf-a68e1d0b1b78","resource":{"resourceType":"Organization","id":"1731632468130893000.c443cd1d-44f0-455d-8edf-a68e1d0b1b78","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1731632468147477000.8af92e28-86a3-4d2b-879f-71acbd50f3db","resource":{"resourceType":"Provenance","id":"1731632468147477000.8af92e28-86a3-4d2b-879f-71acbd50f3db","target":[{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"}],"recorded":"2024-11-14T17:01:08Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1731632468150542000.d93d288b-b70f-499d-903b-45282d68d3ea","resource":{"resourceType":"Observation","id":"1731632468150542000.d93d288b-b70f-499d-903b-45282d68d3ea","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1731632468151535000.bf30b951-672a-49c6-877e-aff30f0f5b3c"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1731632468151535000.bf30b951-672a-49c6-877e-aff30f0f5b3c","resource":{"resourceType":"Organization","id":"1731632468151535000.bf30b951-672a-49c6-877e-aff30f0f5b3c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1731632468154016000.821e1185-b345-40bd-8d8b-52626b601a18","resource":{"resourceType":"Observation","id":"1731632468154016000.821e1185-b345-40bd-8d8b-52626b601a18","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1731632468155844000.5cc2e7ac-f8d6-4ac7-a3c9-1cddc0bfff11","resource":{"resourceType":"Observation","id":"1731632468155844000.5cc2e7ac-f8d6-4ac7-a3c9-1cddc0bfff11","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1731632468158038000.6656c78e-0b49-42fe-bd56-cd3fb4540cc2","resource":{"resourceType":"Observation","id":"1731632468158038000.6656c78e-0b49-42fe-bd56-cd3fb4540cc2","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1731632468159900000.5b8cab2a-33d3-44a3-a245-c4fcf55f73f2","resource":{"resourceType":"Observation","id":"1731632468159900000.5b8cab2a-33d3-44a3-a245-c4fcf55f73f2","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1731632468276993000.306feeaf-7a26-4b23-89ab-422174666e87","resource":{"resourceType":"Specimen","id":"1731632468276993000.306feeaf-7a26-4b23-89ab-422174666e87","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1731632468279074000.c8bccee6-1786-4094-83a2-be821a93a949","resource":{"resourceType":"Specimen","id":"1731632468279074000.c8bccee6-1786-4094-83a2-be821a93a949","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1731632468287669000.7175d4f7-1a13-47b2-936f-f25d12cc16ee","resource":{"resourceType":"ServiceRequest","id":"1731632468287669000.7175d4f7-1a13-47b2-936f-f25d12cc16ee","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1731632468283819000.48603099-63c3-4e32-b7e3-cc820ef28494"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1731632468285424000.cd404882-8254-4d07-98a9-12985b3b47b0"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1731632468286195000.d1ff1832-db3f-42db-8576-3b52c428fcc8"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}},{"url":"OBR.7","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.8","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1731632468280007000.2be1a1fc-61fd-40a8-9c29-9af77bac352b"}}},{"fullUrl":"Practitioner/1731632468281195000.9a8de3af-7dcc-4345-bc4d-b58745f66da6","resource":{"resourceType":"Practitioner","id":"1731632468281195000.9a8de3af-7dcc-4345-bc4d-b58745f66da6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1731632468282006000.4647352c-3ee6-46fd-8316-fe824df966c7","resource":{"resourceType":"Organization","id":"1731632468282006000.4647352c-3ee6-46fd-8316-fe824df966c7","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1731632468280007000.2be1a1fc-61fd-40a8-9c29-9af77bac352b","resource":{"resourceType":"PractitionerRole","id":"1731632468280007000.2be1a1fc-61fd-40a8-9c29-9af77bac352b","practitioner":{"reference":"Practitioner/1731632468281195000.9a8de3af-7dcc-4345-bc4d-b58745f66da6"},"organization":{"reference":"Organization/1731632468282006000.4647352c-3ee6-46fd-8316-fe824df966c7"}}},{"fullUrl":"Organization/1731632468283819000.48603099-63c3-4e32-b7e3-cc820ef28494","resource":{"resourceType":"Organization","id":"1731632468283819000.48603099-63c3-4e32-b7e3-cc820ef28494","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1731632468285424000.cd404882-8254-4d07-98a9-12985b3b47b0","resource":{"resourceType":"Practitioner","id":"1731632468285424000.cd404882-8254-4d07-98a9-12985b3b47b0","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1731632468286195000.d1ff1832-db3f-42db-8576-3b52c428fcc8","resource":{"resourceType":"Practitioner","id":"1731632468286195000.d1ff1832-db3f-42db-8576-3b52c428fcc8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1731632468291037000.ab9b0907-d6f9-4273-9ec1-e575a9319242","resource":{"resourceType":"DiagnosticReport","id":"1731632468291037000.ab9b0907-d6f9-4273-9ec1-e575a9319242","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1731632468287669000.7175d4f7-1a13-47b2-936f-f25d12cc16ee"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1731632468279074000.c8bccee6-1786-4094-83a2-be821a93a949"},{"reference":"Specimen/1731632468276993000.306feeaf-7a26-4b23-89ab-422174666e87"}],"result":[{"reference":"Observation/1731632468150542000.d93d288b-b70f-499d-903b-45282d68d3ea"},{"reference":"Observation/1731632468154016000.821e1185-b345-40bd-8d8b-52626b601a18"},{"reference":"Observation/1731632468155844000.5cc2e7ac-f8d6-4ac7-a3c9-1cddc0bfff11"},{"reference":"Observation/1731632468158038000.6656c78e-0b49-42fe-bd56-cd3fb4540cc2"},{"reference":"Observation/1731632468159900000.5b8cab2a-33d3-44a3-a245-c4fcf55f73f2"}]}}]}""" @Suppress("ktlint:standard:max-line-length") const val cleanHL7RecordConvertedAndTransformed = - """{"resourceType":"Bundle","id":"1714075986350543000.8e8b0e71-a366-41cc-acca-041376e7b05e","meta":{"lastUpdated":"2024-04-25T16:13:06.357-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3"}}],"sender":{"reference":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","resource":{"resourceType":"Organization","id":"1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","resource":{"resourceType":"Organization","id":"1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","resource":{"resourceType":"Provenance","id":"1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2"}}],"entity":[{"role":"source","what":{"reference":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc"}}]}},{"fullUrl":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","resource":{"resourceType":"Organization","id":"1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","resource":{"resourceType":"Organization","id":"1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","resource":{"resourceType":"Device","id":"1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","resource":{"resourceType":"Provenance","id":"1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","recorded":"2024-04-25T16:13:06Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6"}}]}},{"fullUrl":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","resource":{"resourceType":"Organization","id":"1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","resource":{"resourceType":"Patient","id":"1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","resource":{"resourceType":"Organization","id":"1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","resource":{"resourceType":"Provenance","id":"1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","target":[{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"}],"recorded":"2024-04-25T16:13:06Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","resource":{"resourceType":"Observation","id":"1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","resource":{"resourceType":"Organization","id":"1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","resource":{"resourceType":"Observation","id":"1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","resource":{"resourceType":"Observation","id":"1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","resource":{"resourceType":"Observation","id":"1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","resource":{"resourceType":"Observation","id":"1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","resource":{"resourceType":"Specimen","id":"1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","resource":{"resourceType":"Specimen","id":"1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","resource":{"resourceType":"ServiceRequest","id":"1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08"}}},{"fullUrl":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","resource":{"resourceType":"Practitioner","id":"1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","resource":{"resourceType":"Organization","id":"1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","resource":{"resourceType":"PractitionerRole","id":"1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","practitioner":{"reference":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7"},"organization":{"reference":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f"}}},{"fullUrl":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","resource":{"resourceType":"Organization","id":"1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","resource":{"resourceType":"Practitioner","id":"1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","resource":{"resourceType":"Practitioner","id":"1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","resource":{"resourceType":"DiagnosticReport","id":"1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b"},{"reference":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed"}],"result":[{"reference":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81"},{"reference":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9"},{"reference":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01"},{"reference":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789"},{"reference":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d"}]}}]}""" + """{"resourceType":"Bundle","id":"1714075986350543000.8e8b0e71-a366-41cc-acca-041376e7b05e","meta":{"lastUpdated":"2024-04-25T16:13:06.357-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3"}}],"sender":{"reference":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","resource":{"resourceType":"Organization","id":"1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","resource":{"resourceType":"Organization","id":"1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","resource":{"resourceType":"Provenance","id":"1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2"}}],"entity":[{"role":"source","what":{"reference":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc"}}]}},{"fullUrl":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","resource":{"resourceType":"Organization","id":"1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","resource":{"resourceType":"Organization","id":"1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","resource":{"resourceType":"Device","id":"1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","resource":{"resourceType":"Provenance","id":"1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","recorded":"2024-04-25T16:13:06Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6"}}]}},{"fullUrl":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","resource":{"resourceType":"Organization","id":"1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","resource":{"resourceType":"Patient","id":"1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","resource":{"resourceType":"Organization","id":"1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","resource":{"resourceType":"Provenance","id":"1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","target":[{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"}],"recorded":"2024-04-25T16:13:06Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","resource":{"resourceType":"Observation","id":"1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","resource":{"resourceType":"Organization","id":"1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","resource":{"resourceType":"Observation","id":"1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","resource":{"resourceType":"Observation","id":"1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","resource":{"resourceType":"Observation","id":"1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","resource":{"resourceType":"Observation","id":"1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","resource":{"resourceType":"Specimen","id":"1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","resource":{"resourceType":"Specimen","id":"1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","resource":{"resourceType":"ServiceRequest","id":"1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.7","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.8","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08"}}},{"fullUrl":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","resource":{"resourceType":"Practitioner","id":"1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","resource":{"resourceType":"Organization","id":"1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","resource":{"resourceType":"PractitionerRole","id":"1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","practitioner":{"reference":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7"},"organization":{"reference":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f"}}},{"fullUrl":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","resource":{"resourceType":"Organization","id":"1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","resource":{"resourceType":"Practitioner","id":"1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","resource":{"resourceType":"Practitioner","id":"1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","resource":{"resourceType":"DiagnosticReport","id":"1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b"},{"reference":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed"}],"result":[{"reference":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81"},{"reference":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9"},{"reference":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01"},{"reference":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789"},{"reference":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d"}]}}]}""" // This message will be parsed and successfully passed through the convert step // despite having a nonexistent NNN segement and an SFT.2 that is not an ST @@ -91,11 +91,11 @@ SPM|1|0cba76f5-35e0-4a28-803a-2f31308aae9b||258500001^Nasopharyngeal swab^SCT||| @Suppress("ktlint:standard:max-line-length") const val invalidHL7RecordConverted = - """{"resourceType":"Bundle","id":"1721777846019696000.250a7183-cf4a-4b93-bc5d-7d584e7f1491","meta":{"lastUpdated":"2024-07-23T16:37:26.024-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2"}}],"sender":{"reference":"Organization/1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67","resource":{"resourceType":"Organization","id":"1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2","resource":{"resourceType":"Organization","id":"1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1721777846291501000.4e6fef75-50f5-4a90-8700-e4c5863d9ba5","resource":{"resourceType":"Provenance","id":"1721777846291501000.4e6fef75-50f5-4a90-8700-e4c5863d9ba5","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073"}}]}},{"fullUrl":"Organization/1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4","resource":{"resourceType":"Organization","id":"1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36","resource":{"resourceType":"Organization","id":"1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073","resource":{"resourceType":"Device","id":"1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1721777846299096000.a563e83f-a551-4782-9f79-0717a607df25","resource":{"resourceType":"Provenance","id":"1721777846299096000.a563e83f-a551-4782-9f79-0717a607df25","recorded":"2024-07-23T16:37:26Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e"}}]}},{"fullUrl":"Organization/1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e","resource":{"resourceType":"Organization","id":"1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63","resource":{"resourceType":"Patient","id":"1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547","resource":{"resourceType":"Organization","id":"1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1721777846319409000.99a988d3-2061-464e-8f1f-45b2343be6c2","resource":{"resourceType":"Provenance","id":"1721777846319409000.99a988d3-2061-464e-8f1f-45b2343be6c2","target":[{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"}],"recorded":"2024-07-23T16:37:26Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b","resource":{"resourceType":"Observation","id":"1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac","resource":{"resourceType":"Organization","id":"1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a","resource":{"resourceType":"Observation","id":"1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba","resource":{"resourceType":"Observation","id":"1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d","resource":{"resourceType":"Observation","id":"1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8","resource":{"resourceType":"Specimen","id":"1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376","resource":{"resourceType":"Specimen","id":"1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3","resource":{"resourceType":"ServiceRequest","id":"1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f"}}},{"fullUrl":"Practitioner/1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02","resource":{"resourceType":"Practitioner","id":"1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d","resource":{"resourceType":"Organization","id":"1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f","resource":{"resourceType":"PractitionerRole","id":"1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f","practitioner":{"reference":"Practitioner/1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02"},"organization":{"reference":"Organization/1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d"}}},{"fullUrl":"Organization/1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd","resource":{"resourceType":"Organization","id":"1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc","resource":{"resourceType":"Practitioner","id":"1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19","resource":{"resourceType":"Practitioner","id":"1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d","resource":{"resourceType":"DiagnosticReport","id":"1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376"},{"reference":"Specimen/1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8"}],"result":[{"reference":"Observation/1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b"},{"reference":"Observation/1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a"},{"reference":"Observation/1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba"},{"reference":"Observation/1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d"}]}}]}""" + """{"resourceType":"Bundle","id":"1731632555566127000.07dd4aa2-fdbf-4f4e-a220-25f878a36e45","meta":{"lastUpdated":"2024-11-14T17:02:35.570-08:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/1731632555616462000.de238934-eaf8-474c-add7-113ac1816922","resource":{"resourceType":"MessageHeader","id":"1731632555616462000.de238934-eaf8-474c-add7-113ac1816922","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1731632555615899000.744ef6d3-ea1e-42a7-8668-bac428c70352"}}],"sender":{"reference":"Organization/1731632555597230000.f5d95875-5c80-44c2-a529-51201c9ecc04"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1731632555597230000.f5d95875-5c80-44c2-a529-51201c9ecc04","resource":{"resourceType":"Organization","id":"1731632555597230000.f5d95875-5c80-44c2-a529-51201c9ecc04","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1731632555615899000.744ef6d3-ea1e-42a7-8668-bac428c70352","resource":{"resourceType":"Organization","id":"1731632555615899000.744ef6d3-ea1e-42a7-8668-bac428c70352","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1731632555844807000.076dd88c-166a-4108-b7db-bb1da99e5a34","resource":{"resourceType":"Provenance","id":"1731632555844807000.076dd88c-166a-4108-b7db-bb1da99e5a34","target":[{"reference":"MessageHeader/1731632555616462000.de238934-eaf8-474c-add7-113ac1816922"},{"reference":"DiagnosticReport/1731632556016258000.d13881e7-bfa4-4436-aa08-e4ffb99c2760"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1731632555844062000.5747e251-00de-4533-aed6-5592f833e869"}}],"entity":[{"role":"source","what":{"reference":"Device/1731632555847769000.ef591561-f00f-44fe-9a7b-cb2a38aa77ad"}}]}},{"fullUrl":"Organization/1731632555844062000.5747e251-00de-4533-aed6-5592f833e869","resource":{"resourceType":"Organization","id":"1731632555844062000.5747e251-00de-4533-aed6-5592f833e869","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1731632555847591000.9026c753-7d1b-4f4e-be23-f3e83960eb85","resource":{"resourceType":"Organization","id":"1731632555847591000.9026c753-7d1b-4f4e-be23-f3e83960eb85","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1731632555847769000.ef591561-f00f-44fe-9a7b-cb2a38aa77ad","resource":{"resourceType":"Device","id":"1731632555847769000.ef591561-f00f-44fe-9a7b-cb2a38aa77ad","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1731632555847591000.9026c753-7d1b-4f4e-be23-f3e83960eb85"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1731632555853506000.6979205f-ec8c-49a4-b1a0-d26f0a7390e7","resource":{"resourceType":"Provenance","id":"1731632555853506000.6979205f-ec8c-49a4-b1a0-d26f0a7390e7","recorded":"2024-11-14T17:02:35Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1731632555853234000.37d4833c-4be8-4fe9-a325-232536eefe20"}}]}},{"fullUrl":"Organization/1731632555853234000.37d4833c-4be8-4fe9-a325-232536eefe20","resource":{"resourceType":"Organization","id":"1731632555853234000.37d4833c-4be8-4fe9-a325-232536eefe20","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298","resource":{"resourceType":"Patient","id":"1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1731632555858437000.02848ffa-05a5-47a8-a5f8-7e0621a989ce"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1731632555858437000.02848ffa-05a5-47a8-a5f8-7e0621a989ce","resource":{"resourceType":"Organization","id":"1731632555858437000.02848ffa-05a5-47a8-a5f8-7e0621a989ce","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1731632555876041000.c5e98c0c-d556-4701-944a-f772f3f8c8c3","resource":{"resourceType":"Provenance","id":"1731632555876041000.c5e98c0c-d556-4701-944a-f772f3f8c8c3","target":[{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"}],"recorded":"2024-11-14T17:02:35Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1731632555879358000.ec90e8a1-fc5b-47ef-893f-d8ea4d7658bd","resource":{"resourceType":"Observation","id":"1731632555879358000.ec90e8a1-fc5b-47ef-893f-d8ea4d7658bd","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1731632555880303000.cd1c7280-1b15-4d08-afc9-066b82462f58"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1731632555880303000.cd1c7280-1b15-4d08-afc9-066b82462f58","resource":{"resourceType":"Organization","id":"1731632555880303000.cd1c7280-1b15-4d08-afc9-066b82462f58","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1731632555883068000.f1a554b9-5bb6-4830-a813-076057f6bdc0","resource":{"resourceType":"Observation","id":"1731632555883068000.f1a554b9-5bb6-4830-a813-076057f6bdc0","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1731632555885257000.8531f6f3-45fe-4194-b160-2c77bc69f0d9","resource":{"resourceType":"Observation","id":"1731632555885257000.8531f6f3-45fe-4194-b160-2c77bc69f0d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1731632555887093000.4e715efa-ad92-4821-9e24-cfcefabbd23a","resource":{"resourceType":"Observation","id":"1731632555887093000.4e715efa-ad92-4821-9e24-cfcefabbd23a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1731632556001589000.4f108eb0-1561-442c-893a-3f2589aa139d","resource":{"resourceType":"Specimen","id":"1731632556001589000.4f108eb0-1561-442c-893a-3f2589aa139d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1731632556003521000.c13f412f-6c4d-49a4-9308-f5a71e748651","resource":{"resourceType":"Specimen","id":"1731632556003521000.c13f412f-6c4d-49a4-9308-f5a71e748651","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1731632556012806000.bb92f923-0bf3-4d1a-a5bb-207ebd70f45e","resource":{"resourceType":"ServiceRequest","id":"1731632556012806000.bb92f923-0bf3-4d1a-a5bb-207ebd70f45e","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1731632556007885000.8485c876-fe7a-4c06-8884-bbc33aa4b74a"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1731632556008903000.ff983c8b-af50-43e5-b88e-3b67b0eb261d"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1731632556009580000.43b752a9-03e1-40f9-b27e-d5cfdf11ec72"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}},{"url":"OBR.7","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.8","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1731632556004678000.92726640-e399-4a10-83b5-20161d9b0afa"}}},{"fullUrl":"Practitioner/1731632556005631000.40dffabe-d86c-4782-96fc-a41e0ab111a3","resource":{"resourceType":"Practitioner","id":"1731632556005631000.40dffabe-d86c-4782-96fc-a41e0ab111a3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1731632556006409000.485fd490-c064-4036-8f81-51c6ba01e305","resource":{"resourceType":"Organization","id":"1731632556006409000.485fd490-c064-4036-8f81-51c6ba01e305","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1731632556004678000.92726640-e399-4a10-83b5-20161d9b0afa","resource":{"resourceType":"PractitionerRole","id":"1731632556004678000.92726640-e399-4a10-83b5-20161d9b0afa","practitioner":{"reference":"Practitioner/1731632556005631000.40dffabe-d86c-4782-96fc-a41e0ab111a3"},"organization":{"reference":"Organization/1731632556006409000.485fd490-c064-4036-8f81-51c6ba01e305"}}},{"fullUrl":"Organization/1731632556007885000.8485c876-fe7a-4c06-8884-bbc33aa4b74a","resource":{"resourceType":"Organization","id":"1731632556007885000.8485c876-fe7a-4c06-8884-bbc33aa4b74a","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1731632556008903000.ff983c8b-af50-43e5-b88e-3b67b0eb261d","resource":{"resourceType":"Practitioner","id":"1731632556008903000.ff983c8b-af50-43e5-b88e-3b67b0eb261d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1731632556009580000.43b752a9-03e1-40f9-b27e-d5cfdf11ec72","resource":{"resourceType":"Practitioner","id":"1731632556009580000.43b752a9-03e1-40f9-b27e-d5cfdf11ec72","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1731632556016258000.d13881e7-bfa4-4436-aa08-e4ffb99c2760","resource":{"resourceType":"DiagnosticReport","id":"1731632556016258000.d13881e7-bfa4-4436-aa08-e4ffb99c2760","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1731632556012806000.bb92f923-0bf3-4d1a-a5bb-207ebd70f45e"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1731632556003521000.c13f412f-6c4d-49a4-9308-f5a71e748651"},{"reference":"Specimen/1731632556001589000.4f108eb0-1561-442c-893a-3f2589aa139d"}],"result":[{"reference":"Observation/1731632555879358000.ec90e8a1-fc5b-47ef-893f-d8ea4d7658bd"},{"reference":"Observation/1731632555883068000.f1a554b9-5bb6-4830-a813-076057f6bdc0"},{"reference":"Observation/1731632555885257000.8531f6f3-45fe-4194-b160-2c77bc69f0d9"},{"reference":"Observation/1731632555887093000.4e715efa-ad92-4821-9e24-cfcefabbd23a"}]}}]}""" @Suppress("ktlint:standard:max-line-length") const val invalidHL7RecordConvertedAndTransformed = - """{"resourceType":"Bundle","id":"1714076050088111000.a4c2ec65-b182-45da-9f14-80db72ebdd42","meta":{"lastUpdated":"2024-04-25T16:14:10.094-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58"}}],"sender":{"reference":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","resource":{"resourceType":"Organization","id":"1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","resource":{"resourceType":"Organization","id":"1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","resource":{"resourceType":"Provenance","id":"1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8"}}],"entity":[{"role":"source","what":{"reference":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb"}}]}},{"fullUrl":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","resource":{"resourceType":"Organization","id":"1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","resource":{"resourceType":"Organization","id":"1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","resource":{"resourceType":"Device","id":"1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","resource":{"resourceType":"Provenance","id":"1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","recorded":"2024-04-25T16:14:10Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6"}}]}},{"fullUrl":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","resource":{"resourceType":"Organization","id":"1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","resource":{"resourceType":"Patient","id":"1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","resource":{"resourceType":"Organization","id":"1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","resource":{"resourceType":"Provenance","id":"1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","target":[{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"}],"recorded":"2024-04-25T16:14:10Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","resource":{"resourceType":"Observation","id":"1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","resource":{"resourceType":"Organization","id":"1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","resource":{"resourceType":"Observation","id":"1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","resource":{"resourceType":"Observation","id":"1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","resource":{"resourceType":"Observation","id":"1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","resource":{"resourceType":"Specimen","id":"1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","resource":{"resourceType":"Specimen","id":"1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","resource":{"resourceType":"ServiceRequest","id":"1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624"}}},{"fullUrl":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","resource":{"resourceType":"Practitioner","id":"1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","resource":{"resourceType":"Organization","id":"1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","resource":{"resourceType":"PractitionerRole","id":"1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","practitioner":{"reference":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14"},"organization":{"reference":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a"}}},{"fullUrl":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","resource":{"resourceType":"Organization","id":"1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","resource":{"resourceType":"Practitioner","id":"1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","resource":{"resourceType":"Practitioner","id":"1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","resource":{"resourceType":"DiagnosticReport","id":"1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924"},{"reference":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5"}],"result":[{"reference":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d"},{"reference":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3"},{"reference":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9"},{"reference":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85"}]}}]}""" + """{"resourceType":"Bundle","id":"1714076050088111000.a4c2ec65-b182-45da-9f14-80db72ebdd42","meta":{"lastUpdated":"2024-04-25T16:14:10.094-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58"}}],"sender":{"reference":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","resource":{"resourceType":"Organization","id":"1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","resource":{"resourceType":"Organization","id":"1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","resource":{"resourceType":"Provenance","id":"1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8"}}],"entity":[{"role":"source","what":{"reference":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb"}}]}},{"fullUrl":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","resource":{"resourceType":"Organization","id":"1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","resource":{"resourceType":"Organization","id":"1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","resource":{"resourceType":"Device","id":"1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","resource":{"resourceType":"Provenance","id":"1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","recorded":"2024-04-25T16:14:10Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6"}}]}},{"fullUrl":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","resource":{"resourceType":"Organization","id":"1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","resource":{"resourceType":"Patient","id":"1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","resource":{"resourceType":"Organization","id":"1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","resource":{"resourceType":"Provenance","id":"1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","target":[{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"}],"recorded":"2024-04-25T16:14:10Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","resource":{"resourceType":"Observation","id":"1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","resource":{"resourceType":"Organization","id":"1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","resource":{"resourceType":"Observation","id":"1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","resource":{"resourceType":"Observation","id":"1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","resource":{"resourceType":"Observation","id":"1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","resource":{"resourceType":"Specimen","id":"1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","resource":{"resourceType":"Specimen","id":"1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","resource":{"resourceType":"ServiceRequest","id":"1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.7","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.8","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624"}}},{"fullUrl":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","resource":{"resourceType":"Practitioner","id":"1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","resource":{"resourceType":"Organization","id":"1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line","extension":[{"url":"SAD.1","valueString":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","resource":{"resourceType":"PractitionerRole","id":"1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","practitioner":{"reference":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14"},"organization":{"reference":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a"}}},{"fullUrl":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","resource":{"resourceType":"Organization","id":"1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","resource":{"resourceType":"Practitioner","id":"1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","resource":{"resourceType":"Practitioner","id":"1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","resource":{"resourceType":"DiagnosticReport","id":"1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924"},{"reference":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5"}],"result":[{"reference":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d"},{"reference":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3"},{"reference":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9"},{"reference":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85"}]}}]}""" // The encoding ^~\&#! make this message not parseable @Suppress("ktlint:standard:max-line-length") @@ -159,7 +159,7 @@ SPM|1|^dba7572cc6334f1ea0744c5f235c823e&MMTC.PROD&2.16.840.1.113883.3.8589.4.2.1 @Suppress("ktlint:standard:max-line-length") const val validRadxMarsHL7MessageConverted = - """{"resourceType":"Bundle","id":"1721777538349722000.36548b19-d5d0-49bf-ad94-aad0220b4d57","meta":{"lastUpdated":"2024-07-23T16:32:18.355-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"20240403205305_dba7572cc6334f1ea0744c5f235c823e"},"type":"message","timestamp":"2024-04-03T13:53:05.000-07:00","entry":[{"fullUrl":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051","resource":{"resourceType":"MessageHeader","id":"df373c48-bfb2-36b0-b63c-5be13bc5d051","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20240403205305+0000"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR251R1_Rcvr_Prof"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.11"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReport-NoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.3.15.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"AIMS.INTEGRATION.PRD","endpoint":"urn:oid:2.16.840.1.114222.4.3.15.1","receiver":{"reference":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6"}}],"sender":{"reference":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"MMTC.PROD","version":"2022","endpoint":"urn:oid:2.16.840.1.113883.3.8589.4.2.106.1"}}},{"fullUrl":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","resource":{"resourceType":"Organization","id":"1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","resource":{"resourceType":"Organization","id":"1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"AIMS.PLATFORM"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"ISO"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.217446"}]}},{"fullUrl":"Provenance/1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","resource":{"resourceType":"Provenance","id":"1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","target":[{"reference":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051"},{"reference":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765"}],"recorded":"2024-04-03T20:53:05Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3"}}]}},{"fullUrl":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","resource":{"resourceType":"Organization","id":"1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","resource":{"resourceType":"Organization","id":"1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","name":"CAREEVOLUTION"}},{"fullUrl":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","resource":{"resourceType":"Device","id":"1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7"}}],"manufacturer":"CAREEVOLUTION","deviceName":[{"name":"MMTC.PROD","type":"manufacturer-name"}],"modelNumber":"16498","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2024-04-02","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240402"}]}}],"value":"2022"}]}},{"fullUrl":"Provenance/1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","resource":{"resourceType":"Provenance","id":"1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","recorded":"2024-07-23T16:32:18Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539"}}]}},{"fullUrl":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","resource":{"resourceType":"Organization","id":"1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","resource":{"resourceType":"Patient","id":"1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"system":"MMTC.PROD","_system":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"}]},"value":"8be6fa3710374dcebe0174e0fd5a1a7c"}],"name":[{},{}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"111"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"1111111"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.7","valueString":"1111111"}]}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"home"}],"address":[{"postalCode":"02139","country":"USA"}]}},{"fullUrl":"Provenance/1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","resource":{"resourceType":"Provenance","id":"1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","target":[{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"}],"recorded":"2024-07-23T16:32:18Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","resource":{"resourceType":"Observation","id":"1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2024-04-03T12:00:00-04:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a"},{"reference":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"260373001","display":"Detected"}]},"note":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation","extension":[{"url":"NTE.2","valueId":"L"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment","valueId":"Note"}],"text":"Note"}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","resource":{"resourceType":"Organization","id":"1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","resource":{"resourceType":"Organization","id":"1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133","resource":{"resourceType":"Observation","id":"1721777538647578000.c2004093-e546-4860-8033-58cba343f133","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"NM"},{"url":"OBX.6","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"UCUM"}],"system":"http://unitsofmeasure.org","version":"2.1","code":"a","display":"year"}]}},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"35659-2","display":"Age at specimen collection"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92"},{"reference":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449"}],"valueQuantity":{"value":24,"unit":"year","system":"UCUM","code":"a"}}},{"fullUrl":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","resource":{"resourceType":"Organization","id":"1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","resource":{"resourceType":"Organization","id":"1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","resource":{"resourceType":"Specimen","id":"1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","resource":{"resourceType":"Specimen","id":"1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FGN"}]},"value":"dba7572cc6334f1ea0744c5f235c823e"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"697989009","display":"Anterior nares swab"}]},"receivedTime":"2024-04-03T12:00:00-04:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","resource":{"resourceType":"ServiceRequest","id":"1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"postalCode":"02139"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.3","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}]}},{"url":"OBR.22","valueString":"20240403120000-0400"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}],"reference":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1"}}},{"fullUrl":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","resource":{"resourceType":"Practitioner","id":"1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}]}},{"fullUrl":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","resource":{"resourceType":"Organization","id":"1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","name":"SA.OTCSelfReport","telecom":[{"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}],"address":[{"postalCode":"02139"}]}},{"fullUrl":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","resource":{"resourceType":"PractitionerRole","id":"1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","practitioner":{"reference":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab"},"organization":{"reference":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091"}}},{"fullUrl":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","resource":{"resourceType":"Organization","id":"1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","name":"SA.OTCSelfReport"}},{"fullUrl":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8","resource":{"resourceType":"Practitioner","id":"1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}},{"fullUrl":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7","resource":{"resourceType":"Practitioner","id":"1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"fullUrl":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","resource":{"resourceType":"DiagnosticReport","id":"1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"basedOn":[{"reference":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"effectiveDateTime":"2024-04-03T12:00:00-04:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"issued":"2024-04-03T12:00:00-04:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"specimen":[{"reference":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08"},{"reference":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b"}],"result":[{"reference":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d"},{"reference":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133"}]}}]}""" + """{"resourceType":"Bundle","id":"1721777538349722000.36548b19-d5d0-49bf-ad94-aad0220b4d57","meta":{"lastUpdated":"2024-07-23T16:32:18.355-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"20240403205305_dba7572cc6334f1ea0744c5f235c823e"},"type":"message","timestamp":"2024-04-03T13:53:05.000-07:00","entry":[{"fullUrl":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051","resource":{"resourceType":"MessageHeader","id":"df373c48-bfb2-36b0-b63c-5be13bc5d051","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20240403205305+0000"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR251R1_Rcvr_Prof"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.11"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReport-NoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.3.15.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"AIMS.INTEGRATION.PRD","endpoint":"urn:oid:2.16.840.1.114222.4.3.15.1","receiver":{"reference":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6"}}],"sender":{"reference":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"MMTC.PROD","version":"2022","endpoint":"urn:oid:2.16.840.1.113883.3.8589.4.2.106.1"}}},{"fullUrl":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","resource":{"resourceType":"Organization","id":"1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","resource":{"resourceType":"Organization","id":"1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"AIMS.PLATFORM"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"ISO"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.217446"}]}},{"fullUrl":"Provenance/1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","resource":{"resourceType":"Provenance","id":"1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","target":[{"reference":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051"},{"reference":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765"}],"recorded":"2024-04-03T20:53:05Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3"}}]}},{"fullUrl":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","resource":{"resourceType":"Organization","id":"1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.2,HD.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301","code":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","resource":{"resourceType":"Organization","id":"1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","name":"CAREEVOLUTION"}},{"fullUrl":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","resource":{"resourceType":"Device","id":"1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7"}}],"manufacturer":"CAREEVOLUTION","deviceName":[{"name":"MMTC.PROD","type":"manufacturer-name"}],"modelNumber":"16498","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2024-04-02","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240402"}]}}],"value":"2022"}]}},{"fullUrl":"Provenance/1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","resource":{"resourceType":"Provenance","id":"1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","recorded":"2024-07-23T16:32:18Z","policy":["http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"],"activity":{"coding":[{"code":"v2-FHIR transformation"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"assembler"}]},"who":{"reference":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539"}}]}},{"fullUrl":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","resource":{"resourceType":"Organization","id":"1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","identifier":[{"value":"CDC PRIME - Atlanta"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0301"}]},"system":"urn:ietf:rfc:3986","value":"2.16.840.1.114222.4.1.237821"}]}},{"fullUrl":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","resource":{"resourceType":"Patient","id":"1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"system":"MMTC.PROD","_system":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"}]},"value":"8be6fa3710374dcebe0174e0fd5a1a7c"}],"name":[{},{}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"111"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"1111111"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.7","valueString":"1111111"}]}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"home"}],"address":[{"postalCode":"02139","country":"USA"}]}},{"fullUrl":"Provenance/1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","resource":{"resourceType":"Provenance","id":"1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","target":[{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"}],"recorded":"2024-07-23T16:32:18Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","resource":{"resourceType":"Observation","id":"1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2024-04-03T12:00:00-04:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a"},{"reference":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba"}],"valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"260373001","display":"Detected"}]},"note":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation","extension":[{"url":"NTE.2","valueId":"L"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment","valueId":"Note"}],"text":"Note"}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","resource":{"resourceType":"Organization","id":"1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","resource":{"resourceType":"Organization","id":"1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133","resource":{"resourceType":"Observation","id":"1721777538647578000.c2004093-e546-4860-8033-58cba343f133","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"NM"},{"url":"OBX.6","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"UCUM"}],"system":"http://unitsofmeasure.org","version":"2.1","code":"a","display":"year"}]}},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"35659-2","display":"Age at specimen collection"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92"},{"reference":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449"}],"valueQuantity":{"value":24,"unit":"year","system":"UCUM","code":"a"}}},{"fullUrl":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","resource":{"resourceType":"Organization","id":"1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","resource":{"resourceType":"Organization","id":"1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","resource":{"resourceType":"Specimen","id":"1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","resource":{"resourceType":"Specimen","id":"1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FGN"}]},"value":"dba7572cc6334f1ea0744c5f235c823e"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"697989009","display":"Anterior nares swab"}]},"receivedTime":"2024-04-03T12:00:00-04:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","resource":{"resourceType":"ServiceRequest","id":"1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"postalCode":"02139"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.3","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}]}},{"url":"OBR.7","valueDateTime":"2024-04-03T12:00:00-04:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}},{"url":"OBR.22","valueString":"20240403120000-0400"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"status":"unknown","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}],"reference":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1"}}},{"fullUrl":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","resource":{"resourceType":"Practitioner","id":"1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}]}},{"fullUrl":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","resource":{"resourceType":"Organization","id":"1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","name":"SA.OTCSelfReport","telecom":[{"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}],"address":[{"postalCode":"02139"}]}},{"fullUrl":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","resource":{"resourceType":"PractitionerRole","id":"1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","practitioner":{"reference":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab"},"organization":{"reference":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091"}}},{"fullUrl":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","resource":{"resourceType":"Organization","id":"1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","name":"SA.OTCSelfReport"}},{"fullUrl":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8","resource":{"resourceType":"Practitioner","id":"1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}},{"fullUrl":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7","resource":{"resourceType":"Practitioner","id":"1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"fullUrl":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","resource":{"resourceType":"DiagnosticReport","id":"1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"basedOn":[{"reference":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3"}],"status":"final","code":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"LN"}],"system":"http://loinc.org","version":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"effectiveDateTime":"2024-04-03T12:00:00-04:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"issued":"2024-04-03T12:00:00-04:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"specimen":[{"reference":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08"},{"reference":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b"}],"result":[{"reference":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d"},{"reference":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133"}]}}]}""" @Suppress("ktlint:standard:max-line-length") const val invalidRadxMarsHL7Message = diff --git a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/OBRToSpecimenTests.kt b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/OBRToSpecimenTests.kt new file mode 100644 index 00000000000..3777a0a0edf --- /dev/null +++ b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/OBRToSpecimenTests.kt @@ -0,0 +1,32 @@ +package gov.cdc.prime.router.datatests.mappinginventory.orcobr + +import gov.cdc.prime.router.datatests.mappinginventory.verifyHL7ToFHIRToHL7Mapping +import org.junit.jupiter.api.Test + +class OBRToSpecimenTests { + + @Test + fun `test OBR Specimen Source fields populated for ORU`() { + assert(verifyHL7ToFHIRToHL7Mapping("catchall/orcobr/oru-obr-to-specimen").passed) + } + + @Test + fun `test OBR Specimen Source fields populated for OML`() { + assert( + verifyHL7ToFHIRToHL7Mapping( + "catchall/orcobr/oml-obr-to-specimen", + outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml" + ).passed + ) + } + + @Test + fun `test OBR Specimen Source fields populated for ORM`() { + assert( + verifyHL7ToFHIRToHL7Mapping( + "catchall/orcobr/orm-obr-to-specimen", + outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml" + ).passed + ) + } +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt index a0a2d7c2747..32a04f44ddb 100644 --- a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt +++ b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt @@ -98,7 +98,7 @@ class ORCOBRToServiceRequestDiagnosticReportTests { } @Test - fun `test populates OML specific fields for OML messages`() { + fun `test links ServiceRequest to Observation through SupportingInfo`() { val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message" assert( verifyHL7ToFHIRToHL7Mapping( diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir index f2b15d87ce9..e5799536c71 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir @@ -1,1988 +1,2018 @@ { - "resourceType" : "Bundle", - "id" : "1726681492187301000.a875f234-ab35-4fae-afd9-5ae70b139c6f", - "meta" : { - "lastUpdated" : "2024-09-18T10:44:52.191-07:00" + "resourceType": "Bundle", + "id": "1731693498943249000.bcc14c48-fa3b-43ff-b58d-cc0e5563bba2", + "meta": { + "lastUpdated": "2024-11-15T09:58:18.947-08:00" }, - "identifier" : { - "system" : "https://reportstream.cdc.gov/prime-router", - "value" : "31808297" + "identifier": { + "system": "https://reportstream.cdc.gov/prime-router", + "value": "31808297" }, - "type" : "message", - "timestamp" : "2023-05-06T03:29:16.000-07:00", - "entry" : [ + "type": "message", + "timestamp": "2023-05-06T03:29:16.000-07:00", + "entry": [ { - "fullUrl" : "MessageHeader/1726681492235526000.3872119a-ff86-4f47-afb6-951b5f38482e", - "resource" : { - "resourceType" : "MessageHeader", - "id" : "1726681492235526000.3872119a-ff86-4f47-afb6-951b5f38482e", - "meta" : { - "tag" : [ + "fullUrl": "MessageHeader/1731693498989754000.651138bb-a4c2-4109-a3fc-1420f86b3b2a", + "resource": { + "resourceType": "MessageHeader", + "id": "1731693498989754000.651138bb-a4c2-4109-a3fc-1420f86b3b2a", + "meta": { + "tag": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" + "system": "http://terminology.hl7.org/CodeSystem/v2-0103", + "code": "P" } ] }, - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension": [ { - "url" : "MSH.7", - "valueString" : "20230506052916-0500" + "url": "MSH.7", + "valueString": "20230506052916-0500" }, { - "url" : "MSH.15", - "valueString" : "AL" + "url": "MSH.15", + "valueString": "AL" }, { - "url" : "MSH.16", - "valueString" : "AL" + "url": "MSH.16", + "valueString": "AL" }, { - "url" : "MSH.21", - "valueIdentifier" : { - "extension" : [ + "url": "MSH.21", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.9.82" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.9.82" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "LAB_PRU_COMPONENT" + "value": "LAB_PRU_COMPONENT" } }, { - "url" : "MSH.21", - "valueIdentifier" : { - "extension" : [ + "url": "MSH.21", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.9.22" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.9.22" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "LAB_TO_COMPONENT" + "value": "LAB_TO_COMPONENT" } }, { - "url" : "MSH.21", - "valueIdentifier" : { - "extension" : [ + "url": "MSH.21", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.9.22" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.9.22" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "LAB_THREE_COMPONENT" + "value": "LAB_THREE_COMPONENT" } } ] } ], - "eventCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "O21", - "display" : "OML^O21^OML_O21" + "eventCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v2-0003", + "code": "O21", + "display": "OML^O21^OML_O21" }, - "destination" : [ + "destination": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "natus.health.state.mn.us" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "natus.health.state.mn.us" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "DNS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "DNS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.5" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.5" } ], - "name" : "NATUS", - "receiver" : { - "reference" : "Organization/1726681492234640000.978cc409-b284-4272-94ad-90e384d3bc22" + "name": "NATUS", + "receiver": { + "reference": "Organization/1731693498988928000.c1078ed0-abdc-4789-8fa6-3e33502992da" } } ], - "sender" : { - "reference" : "Organization/1726681492217092000.99e99c90-e066-41d0-a470-36b00030d11d" + "sender": { + "reference": "Organization/1731693498970927000.863b4ada-b0e4-4ca0-9931-4d533ce07889" }, - "source" : { - "extension" : [ + "source": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Epic" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Epic" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.3" } ], - "endpoint" : "urn:oid:1.2.840.114350.1.13.145.2.7.2.695071" + "endpoint": "urn:oid:1.2.840.114350.1.13.145.2.7.2.695071" } } }, { - "fullUrl" : "Organization/1726681492217092000.99e99c90-e066-41d0-a470-36b00030d11d", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492217092000.99e99c90-e066-41d0-a470-36b00030d11d", - "identifier" : [ + "fullUrl": "Organization/1731693498970927000.863b4ada-b0e4-4ca0-9931-4d533ce07889", + "resource": { + "resourceType": "Organization", + "id": "1731693498970927000.863b4ada-b0e4-4ca0-9931-4d533ce07889", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Centracare" + "value": "Centracare" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "DNS" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "DNS" } ] }, - "value" : "centracare.com" + "value": "centracare.com" } ] } }, { - "fullUrl" : "Organization/1726681492234640000.978cc409-b284-4272-94ad-90e384d3bc22", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492234640000.978cc409-b284-4272-94ad-90e384d3bc22", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.6" + "fullUrl": "Organization/1731693498988928000.c1078ed0-abdc-4789-8fa6-3e33502992da", + "resource": { + "resourceType": "Organization", + "id": "1731693498988928000.c1078ed0-abdc-4789-8fa6-3e33502992da", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.6" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "MN Public Health Lab" + "value": "MN Public Health Lab" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.10080" + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.10080" } ] } }, { - "fullUrl" : "Provenance/1726681492462211000.f88f909e-b256-4878-bb85-e8f12b57006d", - "resource" : { - "resourceType" : "Provenance", - "id" : "1726681492462211000.f88f909e-b256-4878-bb85-e8f12b57006d", - "recorded" : "2023-05-06T05:29:16-05:00", - "activity" : { - "coding" : [ + "fullUrl": "Provenance/1731693499206385000.2a153290-6dc7-4d93-b389-5ec968b6e76f", + "resource": { + "resourceType": "Provenance", + "id": "1731693499206385000.2a153290-6dc7-4d93-b389-5ec968b6e76f", + "recorded": "2023-05-06T05:29:16-05:00", + "activity": { + "coding": [ { - "display" : "OML^O21^OML_O21" + "display": "OML^O21^OML_O21" } ] }, - "agent" : [ + "agent": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "author" + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "author" } ] }, - "who" : { - "reference" : "Organization/1726681492461714000.b6b09a47-7620-4bb8-9769-8bfc72ce8418" + "who": { + "reference": "Organization/1731693499205829000.403dce5e-6ed1-4c35-89c2-f0fef108c1f6" } } ] } }, { - "fullUrl" : "Organization/1726681492461714000.b6b09a47-7620-4bb8-9769-8bfc72ce8418", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492461714000.b6b09a47-7620-4bb8-9769-8bfc72ce8418", - "identifier" : [ + "fullUrl": "Organization/1731693499205829000.403dce5e-6ed1-4c35-89c2-f0fef108c1f6", + "resource": { + "resourceType": "Organization", + "id": "1731693499205829000.403dce5e-6ed1-4c35-89c2-f0fef108c1f6", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Centracare" + "value": "Centracare" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "DNS" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "DNS" } ] }, - "value" : "centracare.com" + "value": "centracare.com" } ] } }, { - "fullUrl" : "Provenance/1726681492472018000.8fe8eb07-0f82-42fd-b2c9-a1129152e100", - "resource" : { - "resourceType" : "Provenance", - "id" : "1726681492472018000.8fe8eb07-0f82-42fd-b2c9-a1129152e100", - "recorded" : "2024-09-18T10:44:52Z", - "policy" : [ + "fullUrl": "Provenance/1731693499214040000.f4850920-1d37-49d3-9dd2-9113be21f741", + "resource": { + "resourceType": "Provenance", + "id": "1731693499214040000.f4850920-1d37-49d3-9dd2-9113be21f741", + "recorded": "2024-11-15T09:58:19Z", + "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], - "activity" : { - "coding" : [ + "activity": { + "coding": [ { - "code" : "v2-FHIR transformation" + "code": "v2-FHIR transformation" } ] }, - "agent" : [ + "agent": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "assembler" + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" } ] }, - "who" : { - "reference" : "Organization/1726681492471750000.f3f9a9c5-71c6-4458-901c-4ebe9bdddd0a" + "who": { + "reference": "Organization/1731693499213692000.2c92c158-2f95-495b-b2b1-ac91f8f28f42" } } ] } }, { - "fullUrl" : "Organization/1726681492471750000.f3f9a9c5-71c6-4458-901c-4ebe9bdddd0a", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492471750000.f3f9a9c5-71c6-4458-901c-4ebe9bdddd0a", - "identifier" : [ + "fullUrl": "Organization/1731693499213692000.2c92c158-2f95-495b-b2b1-ac91f8f28f42", + "resource": { + "resourceType": "Organization", + "id": "1731693499213692000.2c92c158-2f95-495b-b2b1-ac91f8f28f42", + "identifier": [ { - "value" : "CDC PRIME - Atlanta" + "value": "CDC PRIME - Atlanta" }, { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.237821" + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" } ] } }, { - "fullUrl" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c", - "resource" : { - "resourceType" : "Patient", - "id" : "1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", - "extension" : [ - { - "url" : "PID.8", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65", + "resource": { + "resourceType": "Patient", + "id": "1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", + "extension": [ + { + "url": "PID.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "M" + "code": "M" } ] } }, { - "url" : "PID.24", - "valueString" : "Y" + "url": "PID.24", + "valueString": "Y" }, { - "url" : "PID.30", - "valueString" : "N" + "url": "PID.30", + "valueString": "N" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", - "valueHumanName" : { - "extension" : [ + "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", + "valueHumanName": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ { - "url" : "XPN.2", - "valueString" : "BB SARAH" + "url": "XPN.2", + "valueString": "BB SARAH" } ] } ], - "family" : "SMITH", - "given" : [ + "family": "SMITH", + "given": [ "BB SARAH" ] } } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ { - "url" : "CX.5", - "valueString" : "MR" + "url": "CX.5", + "valueString": "MR" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "code" : "MR" + "code": "MR" } ] }, - "value" : "11102779", - "assigner" : { - "reference" : "Organization/1726681492476947000.cf295bf5-9766-4218-b9b0-5a70765c125e" + "value": "11102779", + "assigner": { + "reference": "Organization/1731693499227390000.f9aa3342-d9b6-41fd-b7d7-69e4e1e1d904" } } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ { - "url" : "XPN.2", - "valueString" : "BB SARAH" + "url": "XPN.2", + "valueString": "BB SARAH" }, { - "url" : "XPN.7", - "valueString" : "L" + "url": "XPN.7", + "valueString": "L" } ] } ], - "use" : "official", - "family" : "SMITH", - "given" : [ + "use": "official", + "family": "SMITH", + "given": [ "BB SARAH" ] } ], - "telecom" : [ + "telecom": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "763" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "763" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "555555" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "555555" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.3", - "valueString" : "PH" + "url": "XTN.3", + "valueString": "PH" }, { - "url" : "XTN.7", - "valueString" : "555555" + "url": "XTN.7", + "valueString": "555555" }, { - "url" : "XTN.9", - "valueString" : "(763)555-5555" + "url": "XTN.9", + "valueString": "(763)555-5555" } ] } ], - "system" : "phone", - "use" : "home" + "system": "phone", + "use": "home" } ], - "gender" : "male", - "birthDate" : "2023-05-04", - "_birthDate" : { - "extension" : [ + "gender": "male", + "birthDate": "2023-05-04", + "_birthDate": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230504131023-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230504131023-0500" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-birthTime", - "valueDateTime" : "2023-05-04T13:10:23-05:00" + "url": "http://hl7.org/fhir/StructureDefinition/patient-birthTime", + "valueDateTime": "2023-05-04T13:10:23-05:00" } ] }, - "deceasedBoolean" : false, - "address" : [ + "deceasedBoolean": false, + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "555 STATE HIGHWAY 13" + "url": "SAD.1", + "valueString": "555 STATE HIGHWAY 13" } ] }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "555 STATE HIGHWAY 13" ], - "city" : "DEER CREEK", - "district" : "OTTER TAIL", - "state" : "MN", - "postalCode" : "56527-9657", - "country" : "USA" + "city": "DEER CREEK", + "district": "OTTER TAIL", + "state": "MN", + "postalCode": "56527-9657", + "country": "USA" } ], - "multipleBirthInteger" : 2, - "contact" : [ + "multipleBirthInteger": 2, + "contact": [ { - "extension" : [ + "extension": [ { - "url" : "https://hl7.org/fhir/StructureDefinition/relationship", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70063" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" } ], - "code" : "MTH", - "display" : "Mother" + "code": "MTH", + "display": "Mother" } ], - "text" : "Mother" + "text": "Mother" } } ], - "relationship" : [ + "relationship": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70063" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" } ], - "code" : "MTH", - "display" : "Mother" + "code": "MTH", + "display": "Mother" } ], - "text" : "Mother" + "text": "Mother" } ], - "name" : { - "extension" : [ + "name": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ { - "url" : "XPN.2", - "valueString" : "SADIE" + "url": "XPN.2", + "valueString": "SADIE" }, { - "url" : "XPN.3", - "valueString" : "S" + "url": "XPN.3", + "valueString": "S" }, { - "url" : "XPN.7", - "valueString" : "L" + "url": "XPN.7", + "valueString": "L" } ] } ], - "use" : "official", - "family" : "SMITH", - "given" : [ + "use": "official", + "family": "SMITH", + "given": [ "SADIE", "S" ] }, - "telecom" : [ + "telecom": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "763" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "763" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5555555" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5555555" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.3", - "valueString" : "PH" + "url": "XTN.3", + "valueString": "PH" }, { - "url" : "XTN.7", - "valueString" : "5555555" + "url": "XTN.7", + "valueString": "5555555" }, { - "url" : "XTN.9", - "valueString" : "(763)555-5555" + "url": "XTN.9", + "valueString": "(763)555-5555" } ] } ], - "system" : "phone" + "system": "phone" } ], - "address" : { - "extension" : [ + "address": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "555 STATE HIGHWAY 13" + "url": "SAD.1", + "valueString": "555 STATE HIGHWAY 13" } ] }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "555 STATE HIGHWAY 13" ], - "city" : "DEER CREEK", - "district" : "OTTER TAIL", - "state" : "MN", - "postalCode" : "56527-9657", - "country" : "USA" + "city": "DEER CREEK", + "district": "OTTER TAIL", + "state": "MN", + "postalCode": "56527-9657", + "country": "USA" } } ], - "link" : [ + "link": [ { - "other" : { - "reference" : "RelatedPerson/1726681492484536000.de59b5c4-28e4-4bdc-a9a5-8c8faa1ae0c2" + "other": { + "reference": "RelatedPerson/1731693499236490000.330bdd78-2a10-4dd7-a27f-02ef7bb72162" }, - "type" : "seealso" + "type": "seealso" } ] } }, { - "fullUrl" : "Organization/1726681492476947000.cf295bf5-9766-4218-b9b0-5a70765c125e", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492476947000.cf295bf5-9766-4218-b9b0-5a70765c125e", - "identifier" : [ + "fullUrl": "Organization/1731693499227390000.f9aa3342-d9b6-41fd-b7d7-69e4e1e1d904", + "resource": { + "resourceType": "Organization", + "id": "1731693499227390000.f9aa3342-d9b6-41fd-b7d7-69e4e1e1d904", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "CRPMRN" + "value": "CRPMRN" } ] } }, { - "fullUrl" : "RelatedPerson/1726681492484536000.de59b5c4-28e4-4bdc-a9a5-8c8faa1ae0c2", - "resource" : { - "resourceType" : "RelatedPerson", - "id" : "1726681492484536000.de59b5c4-28e4-4bdc-a9a5-8c8faa1ae0c2", - "identifier" : [ + "fullUrl": "RelatedPerson/1731693499236490000.330bdd78-2a10-4dd7-a27f-02ef7bb72162", + "resource": { + "resourceType": "RelatedPerson", + "id": "1731693499236490000.330bdd78-2a10-4dd7-a27f-02ef7bb72162", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "SADIE" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "SADIE" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueString" : "S" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueString": "S" } ], - "value" : "SMITH" + "value": "SMITH" } ] } }, { - "fullUrl" : "Provenance/1726681492497877000.6eaec073-c8e7-40f3-87ae-930e78673ac5", - "resource" : { - "resourceType" : "Provenance", - "id" : "1726681492497877000.6eaec073-c8e7-40f3-87ae-930e78673ac5", - "target" : [ + "fullUrl": "Provenance/1731693499248984000.8f906f90-f645-46d2-97d8-7acdd6da4cb8", + "resource": { + "resourceType": "Provenance", + "id": "1731693499248984000.8f906f90-f645-46d2-97d8-7acdd6da4cb8", + "target": [ { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" } ], - "recorded" : "2024-09-18T10:44:52Z", - "activity" : { - "coding" : [ + "recorded": "2024-11-15T09:58:19Z", + "activity": { + "coding": [ { - "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", - "code" : "UPDATE" + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" } ] } } }, { - "fullUrl" : "RelatedPerson/1726681492500140000.15180afe-202e-448f-b448-f8cd41fe8e99", - "resource" : { - "resourceType" : "RelatedPerson", - "id" : "1726681492500140000.15180afe-202e-448f-b448-f8cd41fe8e99", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "NK1" + "fullUrl": "RelatedPerson/1731693499251240000.ffc6b949-94a5-4a29-bb8a-6182dedf249d", + "resource": { + "resourceType": "RelatedPerson", + "id": "1731693499251240000.ffc6b949-94a5-4a29-bb8a-6182dedf249d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "NK1" } ], - "patient" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "patient": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "relationship" : [ + "relationship": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70063" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" } ], - "code" : "MTH", - "display" : "Mother" + "code": "MTH", + "display": "Mother" } ], - "text" : "Mother" + "text": "Mother" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ { - "url" : "XPN.2", - "valueString" : "SADIE" + "url": "XPN.2", + "valueString": "SADIE" }, { - "url" : "XPN.3", - "valueString" : "S" + "url": "XPN.3", + "valueString": "S" }, { - "url" : "XPN.7", - "valueString" : "L" + "url": "XPN.7", + "valueString": "L" } ] } ], - "use" : "official", - "family" : "SMITH", - "given" : [ + "use": "official", + "family": "SMITH", + "given": [ "SADIE", "S" ] } ], - "telecom" : [ + "telecom": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "763" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "763" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5555555" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5555555" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.3", - "valueString" : "PH" + "url": "XTN.3", + "valueString": "PH" }, { - "url" : "XTN.7", - "valueString" : "5555555" + "url": "XTN.7", + "valueString": "5555555" }, { - "url" : "XTN.9", - "valueString" : "(763)555-5555" + "url": "XTN.9", + "valueString": "(763)555-5555" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.5" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.5" } ], - "system" : "phone" + "system": "phone" } ], - "address" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.4" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.4" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "555 STATE HIGHWAY 13" + "url": "SAD.1", + "valueString": "555 STATE HIGHWAY 13" } ] }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "555 STATE HIGHWAY 13" ], - "city" : "DEER CREEK", - "district" : "OTTER TAIL", - "state" : "MN", - "postalCode" : "56527-9657", - "country" : "USA" + "city": "DEER CREEK", + "district": "OTTER TAIL", + "state": "MN", + "postalCode": "56527-9657", + "country": "USA" } ] } }, { - "fullUrl" : "Observation/1726681492502864000.c02d636a-6733-4db1-9a05-98f2dbff71fd", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492502864000.c02d636a-6733-4db1-9a05-98f2dbff71fd", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499254154000.dd4e0899-fbb3-4fae-8a44-c25a4a1b1943", + "resource": { + "resourceType": "Observation", + "id": "1731693499254154000.dd4e0899-fbb3-4fae-8a44-c25a4a1b1943", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "NM" + "url": "OBX.2", + "valueId": "NM" }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" } ], - "system" : "http://unitsofmeasure.org", - "code" : "g", - "display" : "gram" + "system": "http://unitsofmeasure.org", + "code": "g", + "display": "gram" } ] } }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "8339-4", - "display" : "BIRTH WEIGHT MEASURED" + "system": "http://loinc.org", + "code": "8339-4", + "display": "BIRTH WEIGHT MEASURED" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueQuantity" : { - "value" : 1769.859285, - "unit" : "gram", - "system" : "UCUM", - "code" : "g" + "valueQuantity": { + "value": 1769.859285, + "unit": "gram", + "system": "UCUM", + "code": "g" } } }, { - "fullUrl" : "Observation/1726681492505294000.25e21bd9-8244-4398-8722-bfaac9a6e875", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492505294000.25e21bd9-8244-4398-8722-bfaac9a6e875", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499256643000.f3d87add-5a46-4983-aad6-dc4937663363", + "resource": { + "resourceType": "Observation", + "id": "1731693499256643000.f3d87add-5a46-4983-aad6-dc4937663363", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "NM" + "url": "OBX.2", + "valueId": "NM" }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" } ], - "system" : "http://unitsofmeasure.org", - "code" : "wk", - "display" : "week" + "system": "http://unitsofmeasure.org", + "code": "wk", + "display": "week" } ] } }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "57714-8", - "display" : "OBSTETRIC ESTIMATION OF GESTATIONAL AGE" + "system": "http://loinc.org", + "code": "57714-8", + "display": "OBSTETRIC ESTIMATION OF GESTATIONAL AGE" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueQuantity" : { - "value" : 32, - "unit" : "week", - "system" : "UCUM", - "code" : "wk" + "valueQuantity": { + "value": 32, + "unit": "week", + "system": "UCUM", + "code": "wk" } } }, { - "fullUrl" : "Observation/1726681492507390000.09f9b155-2775-4212-8670-f5b558ad6389", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492507390000.09f9b155-2775-4212-8670-f5b558ad6389", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499258634000.3dad0e71-dda0-40d4-8fe9-8ab9b08dbad7", + "resource": { + "resourceType": "Observation", + "id": "1731693499258634000.3dad0e71-dda0-40d4-8fe9-8ab9b08dbad7", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "57713-0", - "display" : "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION" + "system": "http://loinc.org", + "code": "57713-0", + "display": "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "LA12419-0", - "display" : "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + "system": "http://loinc.org", + "code": "LA12419-0", + "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" } ] } } }, { - "fullUrl" : "Observation/1726681492509157000.c220f0f1-f17e-4dcc-b483-8384fb764c30", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492509157000.c220f0f1-f17e-4dcc-b483-8384fb764c30", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499260502000.5055910a-809e-4bba-bdab-76843a177460", + "resource": { + "resourceType": "Observation", + "id": "1731693499260502000.5055910a-809e-4bba-bdab-76843a177460", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" } ], - "code" : "MNDSIB", - "display" : "DOES THE BABY HAVE A DECEASED SIBLING?" + "code": "MNDSIB", + "display": "DOES THE BABY HAVE A DECEASED SIBLING?" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" } ], - "code" : "N", - "display" : "No" + "code": "N", + "display": "No" } ] } } }, { - "fullUrl" : "Observation/1726681492510785000.a0cc0b9a-52e3-4410-b1fd-d22aba3b06c0", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492510785000.a0cc0b9a-52e3-4410-b1fd-d22aba3b06c0", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499262109000.997e1625-6c27-4a81-9060-68c36c79910f", + "resource": { + "resourceType": "Observation", + "id": "1731693499262109000.997e1625-6c27-4a81-9060-68c36c79910f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" } ], - "code" : "MNDEFECT", - "display" : "DOES THE BABY HAVE BIRTH DEFECTS?" + "code": "MNDEFECT", + "display": "DOES THE BABY HAVE BIRTH DEFECTS?" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" } ], - "code" : "N", - "display" : "No" + "code": "N", + "display": "No" } ] } } }, { - "fullUrl" : "Observation/1726681492513068000.65109631-48cc-4490-b644-95e448d4e852", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492513068000.65109631-48cc-4490-b644-95e448d4e852", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499263903000.ff9328b6-2aeb-4a06-b5ce-f194c1b4343b", + "resource": { + "resourceType": "Observation", + "id": "1731693499263903000.ff9328b6-2aeb-4a06-b5ce-f194c1b4343b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" } ], - "code" : "MNFAM", - "display" : "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL" + "code": "MNFAM", + "display": "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "99MDH" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" } ], - "code" : "N", - "display" : "No" + "code": "N", + "display": "No" } ] } } }, { - "fullUrl" : "Observation/1726681492514904000.a0b6424a-acc9-4ec8-bac1-eb4d84146150", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492514904000.a0b6424a-acc9-4ec8-bac1-eb4d84146150", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499265894000.4be5c4d9-daca-4249-871b-b5e9b2299e64", + "resource": { + "resourceType": "Observation", + "id": "1731693499265894000.4be5c4d9-daca-4249-871b-b5e9b2299e64", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "67704-7", - "display" : "FEEDING TYPES" + "system": "http://loinc.org", + "code": "67704-7", + "display": "FEEDING TYPES" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "LA12418-2", - "display" : "TPN" + "system": "http://loinc.org", + "code": "LA12418-2", + "display": "TPN" } ] } } }, { - "fullUrl" : "Observation/1726681492516655000.24e44cdd-01f6-495d-81c9-8ca178b20623", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492516655000.24e44cdd-01f6-495d-81c9-8ca178b20623", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2" + "fullUrl": "Observation/1731693499267278000.4f9e6cd4-2d27-4ae0-8a4a-c11557902264", + "resource": { + "resourceType": "Observation", + "id": "1731693499267278000.4f9e6cd4-2d27-4ae0-8a4a-c11557902264", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "67704-7", - "display" : "FEEDING TYPES" + "system": "http://loinc.org", + "code": "67704-7", + "display": "FEEDING TYPES" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "LA16914-6", - "display" : "BREAST MILK" + "system": "http://loinc.org", + "code": "LA16914-6", + "display": "BREAST MILK" } ] } } }, { - "fullUrl" : "Observation/1726681492518122000.34be2e23-9fcb-4841-bb82-21ac92f5e88f", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492518122000.34be2e23-9fcb-4841-bb82-21ac92f5e88f", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499270093000.7eecd56f-a1b0-4342-87af-2236a11d5f06", + "resource": { + "resourceType": "Observation", + "id": "1731693499270093000.7eecd56f-a1b0-4342-87af-2236a11d5f06", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "57723-9", - "display" : "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE" + "system": "http://loinc.org", + "code": "57723-9", + "display": "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "0516199364" + "code": "0516199364" } ] } } }, { - "fullUrl" : "Observation/1726681492519165000.07f0cdb5-071d-4699-9fe1-feeb50d18ee1", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492519165000.07f0cdb5-071d-4699-9fe1-feeb50d18ee1", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499271474000.ccb6c726-3d31-4904-8c4a-b8bb8cab6b7f", + "resource": { + "resourceType": "Observation", + "id": "1731693499271474000.ccb6c726-3d31-4904-8c4a-b8bb8cab6b7f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.2", + "valueId": "ST" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "62328-0", - "display" : "DISCHARGE PROVIDER PRACTICE PHONE NUMBER" + "system": "http://loinc.org", + "code": "62328-0", + "display": "DISCHARGE PROVIDER PRACTICE PHONE NUMBER" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueString" : "Daniel Davis/218-555-1000" + "valueString": "Daniel Davis/218-555-1000" } }, { - "fullUrl" : "Observation/1726681492521073000.e71f7a63-9494-4eb5-9f4c-17e3a584e380", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492521073000.e71f7a63-9494-4eb5-9f4c-17e3a584e380", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499272795000.2ead0280-0219-4455-a28a-52eedd24a781", + "resource": { + "resourceType": "Observation", + "id": "1731693499272795000.2ead0280-0219-4455-a28a-52eedd24a781", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.2", + "valueId": "ST" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "62324-9", - "display" : "POST-DISCHARGE PROVIDER NAME" + "system": "http://loinc.org", + "code": "62324-9", + "display": "POST-DISCHARGE PROVIDER NAME" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueString" : "DAVIS, DANIEL, MD" + "valueString": "DAVIS, DANIEL, MD" } }, { - "fullUrl" : "Observation/1726681492522150000.dffa99af-cf3f-4635-9979-abd7a1b1f4d5", - "resource" : { - "resourceType" : "Observation", - "id" : "1726681492522150000.dffa99af-cf3f-4635-9979-abd7a1b1f4d5", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1731693499274060000.09f106cd-ca67-4226-90a5-f555890d98f0", + "resource": { + "resourceType": "Observation", + "id": "1731693499274060000.09f106cd-ca67-4226-90a5-f555890d98f0", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.2", + "valueId": "ST" }, { - "url" : "OBX.29", - "valueId" : "QST" + "url": "OBX.29", + "valueId": "QST" }, { - "url" : "OBX.11", - "valueString" : "O" + "url": "OBX.11", + "valueString": "O" } ] } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "62326-4", - "display" : "POST-DISCHARGE PROVIDER PRACTICE NAME" + "system": "http://loinc.org", + "code": "62326-4", + "display": "POST-DISCHARGE PROVIDER PRACTICE NAME" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueString" : "Lakeridge Health Revere" + "valueString": "Lakeridge Health Revere" } }, { - "fullUrl" : "Specimen/1727313792886618000.d45f77c7-ecb4-4a11-a10c-ae901a61957a", - "resource" : { - "resourceType" : "Specimen", - "id" : "1727313792886618000.d45f77c7-ecb4-4a11-a10c-ae901a61957a", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" + "fullUrl": "Specimen/1731693499399056000.cb3e6b3e-2c30-44ec-aad9-1d5caaac8e04", + "resource": { + "resourceType": "Specimen", + "id": "1731693499399056000.cb3e6b3e-2c30-44ec-aad9-1d5caaac8e04", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" } ], - "collection" : { - "collectedDateTime" : "2023-05-06T05:00:00Z", - "_collectedDateTime" : { - "extension" : [ + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "440500007" + } + ] + }, + "collection": { + "collectedDateTime": "2023-05-06T05:00:00Z", + "_collectedDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000" } ] } }, - "note" : [ + "container": [ + { + "additiveCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "Blood spot specimen" + } + ] + } + } + ], + "note": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "OBR.15.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "OBR.15.3" } ], - "text" : "440500007" + "text": "SCT" } ] } }, { - "fullUrl" : "Specimen/1727313792888577000.a67f4df4-1f53-4021-9d02-348da64f37b6", - "resource" : { - "resourceType" : "Specimen", - "id" : "1727313792888577000.a67f4df4-1f53-4021-9d02-348da64f37b6", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" + "fullUrl": "Specimen/1731693499401246000.af41b374-d90e-4385-a6cd-34a15a4956c7", + "resource": { + "resourceType": "Specimen", + "id": "1731693499401246000.af41b374-d90e-4385-a6cd-34a15a4956c7", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "SPM" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "EPIC" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.1" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "421832901" + "value": "421832901" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "code" : "440500042", - "display" : "Blood spatter specimen" + "system": "http://snomed.info/sct", + "code": "440500042", + "display": "Blood spatter specimen" } ] }, - "collection" : { - "collectedDateTime" : "2023-05-06T06:00:00-05:00", - "_collectedDateTime" : { - "extension" : [ + "collection": { + "collectedDateTime": "2023-05-06T06:00:00-05:00", + "_collectedDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506060000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506060000-0500" } ] } @@ -1990,275 +2020,323 @@ } }, { - "fullUrl" : "ServiceRequest/1726681492644006000.cba3ce33-4a32-4756-8991-cd4c93e667c9", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1726681492644006000.cba3ce33-4a32-4756-8991-cd4c93e667c9", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "NW" + "fullUrl": "ServiceRequest/1731693499410541000.44604b6d-c242-4fa8-8ae6-9d66a3e6f8f6", + "resource": { + "resourceType": "ServiceRequest", + "id": "1731693499410541000.44604b6d-c242-4fa8-8ae6-9d66a3e6f8f6", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "NW" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "20230506052913-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "20230506052913-0500" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1726681492641945000.9f5a3115-e1c7-4b81-acd0-5ee33ab3af95" + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1731693499407045000.0405b8a0-2641-44bd-bead-9f864439e87c" } }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1726681492642419000.74f305db-5a72-4d9f-b1b1-147bf46fe812" + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1731693499407702000.179c5b71-0abd-4ca5-90f6-39bfddfae2e4" } }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1726681492643096000.0d4b4565-fa10-4992-b4a8-becf558b8dec" + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1731693499408540000.b160605f-1ac2-4c93-a4a2-1701d568b747" } } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ + "url": "OBR.2", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "EPIC" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "421832901" + "value": "421832901" + } + }, + { + "url": "OBR.15.1", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "440500007" + } + ] + } + }, + { + "url": "OBR.15.2", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "Blood spot specimen" + } + ] + } + }, + { + "url": "OBR.15.3", + "valueString": "SCT" + }, + { + "url": "OBR.7", + "valueDateTime": "2023-05-06T05:00:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000" + } + ] } } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "EPIC" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "EPIC" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "421832901" + "value": "421832901" } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "54089-8", - "display" : "Newborn screening panel American Health Information Community (AHIC)" + "system": "http://loinc.org", + "code": "54089-8", + "display": "Newborn screening panel American Health Information Community (AHIC)" } ] }, - "subject" : { - "reference" : "Patient/1726681492493392000.82a9acae-6ab9-467e-b92b-735a808cde8c" + "subject": { + "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" }, - "authoredOn" : "2023-05-06T05:29:13-05:00", - "_authoredOn" : { - "extension" : [ + "authoredOn": "2023-05-06T05:29:13-05:00", + "_authoredOn": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506052913-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506052913-0500" } ] }, - "requester" : { - "reference" : "PractitionerRole/1726681492639136000.d4cb865c-1dbc-458a-aeee-4e353e11c314" + "requester": { + "reference": "PractitionerRole/1731693499401922000.0288ec12-86a2-4087-850a-9b78b3d26b72" }, - "supportingInfo" : [ + "supportingInfo": [ { - "reference" : "Observation/1726681492502864000.c02d636a-6733-4db1-9a05-98f2dbff71fd" + "reference": "Observation/1731693499254154000.dd4e0899-fbb3-4fae-8a44-c25a4a1b1943" }, { - "reference" : "Observation/1726681492505294000.25e21bd9-8244-4398-8722-bfaac9a6e875" + "reference": "Observation/1731693499256643000.f3d87add-5a46-4983-aad6-dc4937663363" }, { - "reference" : "Observation/1726681492507390000.09f9b155-2775-4212-8670-f5b558ad6389" + "reference": "Observation/1731693499258634000.3dad0e71-dda0-40d4-8fe9-8ab9b08dbad7" }, { - "reference" : "Observation/1726681492509157000.c220f0f1-f17e-4dcc-b483-8384fb764c30" + "reference": "Observation/1731693499260502000.5055910a-809e-4bba-bdab-76843a177460" }, { - "reference" : "Observation/1726681492510785000.a0cc0b9a-52e3-4410-b1fd-d22aba3b06c0" + "reference": "Observation/1731693499262109000.997e1625-6c27-4a81-9060-68c36c79910f" }, { - "reference" : "Observation/1726681492513068000.65109631-48cc-4490-b644-95e448d4e852" + "reference": "Observation/1731693499263903000.ff9328b6-2aeb-4a06-b5ce-f194c1b4343b" }, { - "reference" : "Observation/1726681492514904000.a0b6424a-acc9-4ec8-bac1-eb4d84146150" + "reference": "Observation/1731693499265894000.4be5c4d9-daca-4249-871b-b5e9b2299e64" }, { - "reference" : "Observation/1726681492516655000.24e44cdd-01f6-495d-81c9-8ca178b20623" + "reference": "Observation/1731693499267278000.4f9e6cd4-2d27-4ae0-8a4a-c11557902264" }, { - "reference" : "Observation/1726681492518122000.34be2e23-9fcb-4841-bb82-21ac92f5e88f" + "reference": "Observation/1731693499270093000.7eecd56f-a1b0-4342-87af-2236a11d5f06" }, { - "reference" : "Observation/1726681492519165000.07f0cdb5-071d-4699-9fe1-feeb50d18ee1" + "reference": "Observation/1731693499271474000.ccb6c726-3d31-4904-8c4a-b8bb8cab6b7f" }, { - "reference" : "Observation/1726681492521073000.e71f7a63-9494-4eb5-9f4c-17e3a584e380" + "reference": "Observation/1731693499272795000.2ead0280-0219-4455-a28a-52eedd24a781" }, { - "reference" : "Observation/1726681492522150000.dffa99af-cf3f-4635-9979-abd7a1b1f4d5" + "reference": "Observation/1731693499274060000.09f106cd-ca67-4226-90a5-f555890d98f0" } ], - "specimen" : [ + "specimen": [ { - "reference" : "Specimen/1727313792888577000.a67f4df4-1f53-4021-9d02-348da64f37b6" + "reference": "Specimen/1731693499401246000.af41b374-d90e-4385-a6cd-34a15a4956c7" }, { - "reference" : "Specimen/1727313792886618000.d45f77c7-ecb4-4a11-a10c-ae901a61957a" + "reference": "Specimen/1731693499399056000.cb3e6b3e-2c30-44ec-aad9-1d5caaac8e04" } ] } }, { - "fullUrl" : "Organization/1726681492639344000.e2d9306c-68d1-4791-960b-9178e657382d", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492639344000.e2d9306c-68d1-4791-960b-9178e657382d", - "identifier" : [ + "fullUrl": "Organization/1731693499402155000.5e0feb3b-43d1-4413-8114-1f9bb184ce9e", + "resource": { + "resourceType": "Organization", + "id": "1731693499402155000.5e0feb3b-43d1-4413-8114-1f9bb184ce9e", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "NPI" + "value": "NPI" } ] } }, { - "fullUrl" : "Practitioner/1726681492639901000.8cf23e0c-cbbe-439a-8314-ef797620db05", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1726681492639901000.8cf23e0c-cbbe-439a-8314-ef797620db05", - "extension" : [ + "fullUrl": "Practitioner/1731693499403117000.ad293f7d-eb9c-4c41-b727-0a5e50b319de", + "resource": { + "resourceType": "Practitioner", + "id": "1731693499403117000.ad293f7d-eb9c-4c41-b727-0a5e50b319de", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "JANE" + "url": "XCN.3", + "valueString": "JANE" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "NPI" + "code": "NPI" } ] }, - "value" : "1265136360", - "assigner" : { - "reference" : "Organization/1726681492639344000.e2d9306c-68d1-4791-960b-9178e657382d" + "value": "1265136360", + "assigner": { + "reference": "Organization/1731693499402155000.5e0feb3b-43d1-4413-8114-1f9bb184ce9e" } } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "JONES", - "given" : [ + "use": "official", + "family": "JONES", + "given": [ "JANE" ] } @@ -2266,334 +2344,334 @@ } }, { - "fullUrl" : "Organization/1726681492640505000.d15bca18-6c50-4720-8e35-b67d67d378c0", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492640505000.d15bca18-6c50-4720-8e35-b67d67d378c0", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ + "fullUrl": "Organization/1731693499404212000.25916871-3bc5-4803-a2f1-d784fb317b55", + "resource": { + "resourceType": "Organization", + "id": "1731693499404212000.25916871-3bc5-4803-a2f1-d784fb317b55", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "1043269798" + "url": "XON.10", + "valueString": "1043269798" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CMS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CMS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" } ] }, - "value" : "1043269798" + "value": "1043269798" } ], - "name" : "ST. CLOUD HOSPITAL" + "name": "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "PractitionerRole/1726681492639136000.d4cb865c-1dbc-458a-aeee-4e353e11c314", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1726681492639136000.d4cb865c-1dbc-458a-aeee-4e353e11c314", - "practitioner" : { - "reference" : "Practitioner/1726681492639901000.8cf23e0c-cbbe-439a-8314-ef797620db05" + "fullUrl": "PractitionerRole/1731693499401922000.0288ec12-86a2-4087-850a-9b78b3d26b72", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731693499401922000.0288ec12-86a2-4087-850a-9b78b3d26b72", + "practitioner": { + "reference": "Practitioner/1731693499403117000.ad293f7d-eb9c-4c41-b727-0a5e50b319de" }, - "organization" : { - "reference" : "Organization/1726681492640505000.d15bca18-6c50-4720-8e35-b67d67d378c0" + "organization": { + "reference": "Organization/1731693499404212000.25916871-3bc5-4803-a2f1-d784fb317b55" } } }, { - "fullUrl" : "Organization/1726681492641945000.9f5a3115-e1c7-4b81-acd0-5ee33ab3af95", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492641945000.9f5a3115-e1c7-4b81-acd0-5ee33ab3af95", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ + "fullUrl": "Organization/1731693499407045000.0405b8a0-2641-44bd-bead-9f864439e87c", + "resource": { + "resourceType": "Organization", + "id": "1731693499407045000.0405b8a0-2641-44bd-bead-9f864439e87c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "1043269798" + "url": "XON.10", + "valueString": "1043269798" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CMS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CMS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" } ] }, - "value" : "1043269798" + "value": "1043269798" } ], - "name" : "ST. CLOUD HOSPITAL" + "name": "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "Organization/1726681492642419000.74f305db-5a72-4d9f-b1b1-147bf46fe812", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492642419000.74f305db-5a72-4d9f-b1b1-147bf46fe812", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ + "fullUrl": "Organization/1731693499407702000.179c5b71-0abd-4ca5-90f6-39bfddfae2e4", + "resource": { + "resourceType": "Organization", + "id": "1731693499407702000.179c5b71-0abd-4ca5-90f6-39bfddfae2e4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "739" + "url": "XON.10", + "valueString": "739" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MN Public Health Lab" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "MN Public Health Lab" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "NPI" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" } ] }, - "value" : "739" + "value": "739" } ], - "name" : "ST. CLOUD HOSPITAL" + "name": "ST. CLOUD HOSPITAL" } }, { - "fullUrl" : "Organization/1726681492642638000.8e9bb0fe-241b-4847-9373-a1f70572c83b", - "resource" : { - "resourceType" : "Organization", - "id" : "1726681492642638000.8e9bb0fe-241b-4847-9373-a1f70572c83b", - "identifier" : [ + "fullUrl": "Organization/1731693499407971000.145351e1-d9b0-49ce-a7a4-288a71734f66", + "resource": { + "resourceType": "Organization", + "id": "1731693499407971000.145351e1-d9b0-49ce-a7a4-288a71734f66", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "NPI" + "value": "NPI" } ] } }, { - "fullUrl" : "Practitioner/1726681492643096000.0d4b4565-fa10-4992-b4a8-becf558b8dec", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1726681492643096000.0d4b4565-fa10-4992-b4a8-becf558b8dec", - "extension" : [ + "fullUrl": "Practitioner/1731693499408540000.b160605f-1ac2-4c93-a4a2-1701d568b747", + "resource": { + "resourceType": "Practitioner", + "id": "1731693499408540000.b160605f-1ac2-4c93-a4a2-1701d568b747", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "JANE" + "url": "XCN.3", + "valueString": "JANE" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "NPI" + "code": "NPI" } ] }, - "value" : "1265136360", - "assigner" : { - "reference" : "Organization/1726681492642638000.8e9bb0fe-241b-4847-9373-a1f70572c83b" + "value": "1265136360", + "assigner": { + "reference": "Organization/1731693499407971000.145351e1-d9b0-49ce-a7a4-288a71734f66" } } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "JONES", - "given" : [ + "use": "official", + "family": "JONES", + "given": [ "JANE" ] } diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir index 8e4acc4e7c9..26c7651065d 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir @@ -1658,6 +1658,54 @@ ], "value" : "421832901" } + }, + { + "url" : "OBR.15.1", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "440500007" + } + ] + } + }, + { + "url" : "OBR.15.2", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "Blood spot specimen" + } + ] + } + }, + { + "url" : "OBR.15.3", + "valueString" : "SCT" + }, + { + "url" : "OBR.7", + "valueDateTime" : "2023-05-06T05:00:00Z", + "_valueDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000" + } + ] + } } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir index 25b5f7e9975..4e8f816eff7 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir @@ -1656,6 +1656,54 @@ ], "value" : "421832901" } + }, + { + "url" : "OBR.15.1", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "440500007" + } + ] + } + }, + { + "url" : "OBR.15.2", + "valueCodeableConcept" : { + "coding" : [ + { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } + ], + "code" : "Blood spot specimen" + } + ] + } + }, + { + "url" : "OBR.15.3", + "valueString" : "SCT" + }, + { + "url" : "OBR.7", + "valueDateTime" : "2023-05-06T05:00:00Z", + "_valueDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230506050000" + } + ] + } } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oru_20241015-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oru_20241015-001.fhir index 825d26e4e1f..7a867edd798 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oru_20241015-001.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oru_20241015-001.fhir @@ -450,6 +450,22 @@ } } ], + "relationship": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "MTH", + "display": "Mother" + } + ] + } + ], "name": { "family": "CDPHSIX" }, @@ -14207,7 +14223,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14220,7 +14247,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T15:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410151535" + } + ] + } + } } }, { @@ -14233,7 +14271,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T15:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410151535" + } + ] + } + } } }, { @@ -14246,7 +14295,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14259,7 +14319,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14272,7 +14343,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14285,7 +14367,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14298,7 +14391,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14311,7 +14415,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14324,7 +14439,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14337,7 +14463,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14350,7 +14487,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14363,7 +14511,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14376,7 +14535,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14389,7 +14559,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14402,7 +14583,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14415,7 +14607,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14428,7 +14631,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14441,7 +14655,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14454,7 +14679,18 @@ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } - ] + ], + "collection": { + "collectedDateTime": "2024-10-15T03:35:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] + } + } } }, { @@ -14531,6 +14767,12 @@ "value": "55555555" } }, + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602713184000.734a188a-2520-4f05-bf34-6622b15dbab7" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -14540,9 +14782,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865259286197.346a3816-311c-4378-beab-801edd9b75b8" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -14807,10 +15055,10 @@ } }, { - "fullUrl": "Practitioner/1729025865259286197.346a3816-311c-4378-beab-801edd9b75b8", + "fullUrl": "Practitioner/1731693602713184000.734a188a-2520-4f05-bf34-6622b15dbab7", "resource": { "resourceType": "Practitioner", - "id": "1729025865259286197.346a3816-311c-4378-beab-801edd9b75b8", + "id": "1731693602713184000.734a188a-2520-4f05-bf34-6622b15dbab7", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -14841,6 +15089,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602715782000.9b3bc61b-45b4-450e-862b-7b10e639b4db" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -14850,9 +15104,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865274418038.e663574d-f32d-46d5-a9cc-afb5b456037e" + "url": "OBR.7", + "valueDateTime": "2024-10-15T15:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410151535" + } + ] } } ] @@ -14940,10 +15200,10 @@ } }, { - "fullUrl": "Practitioner/1729025865274418038.e663574d-f32d-46d5-a9cc-afb5b456037e", + "fullUrl": "Practitioner/1731693602715782000.9b3bc61b-45b4-450e-862b-7b10e639b4db", "resource": { "resourceType": "Practitioner", - "id": "1729025865274418038.e663574d-f32d-46d5-a9cc-afb5b456037e", + "id": "1731693602715782000.9b3bc61b-45b4-450e-862b-7b10e639b4db", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -14974,6 +15234,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602718412000.51cfb819-c199-4852-a0e7-c0e4f3ad4c8f" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -14983,9 +15249,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865288484220.ff33ae57-9ee3-4143-bbe7-1f571cd5a166" + "url": "OBR.7", + "valueDateTime": "2024-10-15T15:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410151535" + } + ] } } ] @@ -15073,10 +15345,10 @@ } }, { - "fullUrl": "Practitioner/1729025865288484220.ff33ae57-9ee3-4143-bbe7-1f571cd5a166", + "fullUrl": "Practitioner/1731693602718412000.51cfb819-c199-4852-a0e7-c0e4f3ad4c8f", "resource": { "resourceType": "Practitioner", - "id": "1729025865288484220.ff33ae57-9ee3-4143-bbe7-1f571cd5a166", + "id": "1731693602718412000.51cfb819-c199-4852-a0e7-c0e4f3ad4c8f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15107,6 +15379,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602720664000.6053b7ca-d471-40a1-9d44-67d93cafb3af" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -15116,9 +15394,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865302786215.5b5dc9e8-8430-4c2a-80cd-bb5ea867af4c" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -15206,10 +15490,10 @@ } }, { - "fullUrl": "Practitioner/1729025865302786215.5b5dc9e8-8430-4c2a-80cd-bb5ea867af4c", + "fullUrl": "Practitioner/1731693602720664000.6053b7ca-d471-40a1-9d44-67d93cafb3af", "resource": { "resourceType": "Practitioner", - "id": "1729025865302786215.5b5dc9e8-8430-4c2a-80cd-bb5ea867af4c", + "id": "1731693602720664000.6053b7ca-d471-40a1-9d44-67d93cafb3af", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15240,6 +15524,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602722936000.05f7e286-9982-437c-8960-771942e12635" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -15249,9 +15539,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865334206662.6f2a02d3-2252-4ed3-b792-440aef2f0520" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -15339,10 +15635,10 @@ } }, { - "fullUrl": "Practitioner/1729025865334206662.6f2a02d3-2252-4ed3-b792-440aef2f0520", + "fullUrl": "Practitioner/1731693602722936000.05f7e286-9982-437c-8960-771942e12635", "resource": { "resourceType": "Practitioner", - "id": "1729025865334206662.6f2a02d3-2252-4ed3-b792-440aef2f0520", + "id": "1731693602722936000.05f7e286-9982-437c-8960-771942e12635", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15373,6 +15669,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602733178000.4956bd78-e583-4ee8-b665-62d60279f2be" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -15382,9 +15684,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865349254698.75e18fa4-d581-400f-974a-f57ed2eaaa7d" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -15472,10 +15780,10 @@ } }, { - "fullUrl": "Practitioner/1729025865349254698.75e18fa4-d581-400f-974a-f57ed2eaaa7d", + "fullUrl": "Practitioner/1731693602733178000.4956bd78-e583-4ee8-b665-62d60279f2be", "resource": { "resourceType": "Practitioner", - "id": "1729025865349254698.75e18fa4-d581-400f-974a-f57ed2eaaa7d", + "id": "1731693602733178000.4956bd78-e583-4ee8-b665-62d60279f2be", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15506,6 +15814,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602735825000.ca2d0314-066b-4c6a-bca7-fad2712cd68e" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -15515,9 +15829,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865364623153.c29075d3-d3fb-4fcd-95eb-9b541c22a400" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -15605,10 +15925,10 @@ } }, { - "fullUrl": "Practitioner/1729025865364623153.c29075d3-d3fb-4fcd-95eb-9b541c22a400", + "fullUrl": "Practitioner/1731693602735825000.ca2d0314-066b-4c6a-bca7-fad2712cd68e", "resource": { "resourceType": "Practitioner", - "id": "1729025865364623153.c29075d3-d3fb-4fcd-95eb-9b541c22a400", + "id": "1731693602735825000.ca2d0314-066b-4c6a-bca7-fad2712cd68e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15639,6 +15959,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602738103000.6db2d6da-4963-4eca-a9b2-c3f32faa3448" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -15648,9 +15974,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865382820865.a396a3e5-8337-4ba2-8156-55fe16dedbe9" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -15738,10 +16070,10 @@ } }, { - "fullUrl": "Practitioner/1729025865382820865.a396a3e5-8337-4ba2-8156-55fe16dedbe9", + "fullUrl": "Practitioner/1731693602738103000.6db2d6da-4963-4eca-a9b2-c3f32faa3448", "resource": { "resourceType": "Practitioner", - "id": "1729025865382820865.a396a3e5-8337-4ba2-8156-55fe16dedbe9", + "id": "1731693602738103000.6db2d6da-4963-4eca-a9b2-c3f32faa3448", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15772,6 +16104,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602740434000.0f65a61d-eabc-47ec-9a81-4f12f491d04c" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -15781,9 +16119,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865400018421.bbfd232a-a5bd-4ca2-aeaf-92c8b64acbde" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -15871,10 +16215,10 @@ } }, { - "fullUrl": "Practitioner/1729025865400018421.bbfd232a-a5bd-4ca2-aeaf-92c8b64acbde", + "fullUrl": "Practitioner/1731693602740434000.0f65a61d-eabc-47ec-9a81-4f12f491d04c", "resource": { "resourceType": "Practitioner", - "id": "1729025865400018421.bbfd232a-a5bd-4ca2-aeaf-92c8b64acbde", + "id": "1731693602740434000.0f65a61d-eabc-47ec-9a81-4f12f491d04c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15905,6 +16249,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602742639000.75de4f5e-8ff9-420a-89c7-dfc96b021b47" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -15914,9 +16264,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865415003354.518deaef-14ae-47e2-a0e2-f3953f8a42b1" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -16004,10 +16360,10 @@ } }, { - "fullUrl": "Practitioner/1729025865415003354.518deaef-14ae-47e2-a0e2-f3953f8a42b1", + "fullUrl": "Practitioner/1731693602742639000.75de4f5e-8ff9-420a-89c7-dfc96b021b47", "resource": { "resourceType": "Practitioner", - "id": "1729025865415003354.518deaef-14ae-47e2-a0e2-f3953f8a42b1", + "id": "1731693602742639000.75de4f5e-8ff9-420a-89c7-dfc96b021b47", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16038,6 +16394,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602744828000.d18eacd1-7729-4580-bf63-d069b7733864" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -16047,9 +16409,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865429841279.b8ebe18d-2976-470f-8370-cdaa47b5190f" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -16137,10 +16505,10 @@ } }, { - "fullUrl": "Practitioner/1729025865429841279.b8ebe18d-2976-470f-8370-cdaa47b5190f", + "fullUrl": "Practitioner/1731693602744828000.d18eacd1-7729-4580-bf63-d069b7733864", "resource": { "resourceType": "Practitioner", - "id": "1729025865429841279.b8ebe18d-2976-470f-8370-cdaa47b5190f", + "id": "1731693602744828000.d18eacd1-7729-4580-bf63-d069b7733864", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16171,6 +16539,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602747010000.53bd28ca-2e5e-4714-9eeb-113e6cb1404d" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -16180,9 +16554,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865445277037.9fb23c6e-6525-4fa5-8656-ae2f9c93640e" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -16270,10 +16650,10 @@ } }, { - "fullUrl": "Practitioner/1729025865445277037.9fb23c6e-6525-4fa5-8656-ae2f9c93640e", + "fullUrl": "Practitioner/1731693602747010000.53bd28ca-2e5e-4714-9eeb-113e6cb1404d", "resource": { "resourceType": "Practitioner", - "id": "1729025865445277037.9fb23c6e-6525-4fa5-8656-ae2f9c93640e", + "id": "1731693602747010000.53bd28ca-2e5e-4714-9eeb-113e6cb1404d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16304,6 +16684,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602749196000.37010e13-9103-42e2-af39-78d621cd2956" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -16313,9 +16699,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865460259370.b550f180-92c4-4c17-8ed2-14d222e2a005" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -16403,10 +16795,10 @@ } }, { - "fullUrl": "Practitioner/1729025865460259370.b550f180-92c4-4c17-8ed2-14d222e2a005", + "fullUrl": "Practitioner/1731693602749196000.37010e13-9103-42e2-af39-78d621cd2956", "resource": { "resourceType": "Practitioner", - "id": "1729025865460259370.b550f180-92c4-4c17-8ed2-14d222e2a005", + "id": "1731693602749196000.37010e13-9103-42e2-af39-78d621cd2956", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16437,6 +16829,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602751351000.bc2bf032-9522-4e97-9d4e-aebb25c59820" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -16446,9 +16844,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865474539664.110c834b-856b-4af7-a04a-022d97f85860" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -16536,10 +16940,10 @@ } }, { - "fullUrl": "Practitioner/1729025865474539664.110c834b-856b-4af7-a04a-022d97f85860", + "fullUrl": "Practitioner/1731693602751351000.bc2bf032-9522-4e97-9d4e-aebb25c59820", "resource": { "resourceType": "Practitioner", - "id": "1729025865474539664.110c834b-856b-4af7-a04a-022d97f85860", + "id": "1731693602751351000.bc2bf032-9522-4e97-9d4e-aebb25c59820", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16570,6 +16974,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602753548000.d9176daf-bbdb-4940-947d-1c46642767f6" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -16579,9 +16989,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865490316841.6b130d46-d6e4-416f-9703-6e3fcd64b1b7" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -16669,10 +17085,10 @@ } }, { - "fullUrl": "Practitioner/1729025865490316841.6b130d46-d6e4-416f-9703-6e3fcd64b1b7", + "fullUrl": "Practitioner/1731693602753548000.d9176daf-bbdb-4940-947d-1c46642767f6", "resource": { "resourceType": "Practitioner", - "id": "1729025865490316841.6b130d46-d6e4-416f-9703-6e3fcd64b1b7", + "id": "1731693602753548000.d9176daf-bbdb-4940-947d-1c46642767f6", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16703,6 +17119,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602755700000.96bfb6e9-3e3d-4578-a3c5-70073e1b8c04" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -16712,9 +17134,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865505065961.73827d17-696e-41f8-965f-8c0c3178618e" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -16802,10 +17230,10 @@ } }, { - "fullUrl": "Practitioner/1729025865505065961.73827d17-696e-41f8-965f-8c0c3178618e", + "fullUrl": "Practitioner/1731693602755700000.96bfb6e9-3e3d-4578-a3c5-70073e1b8c04", "resource": { "resourceType": "Practitioner", - "id": "1729025865505065961.73827d17-696e-41f8-965f-8c0c3178618e", + "id": "1731693602755700000.96bfb6e9-3e3d-4578-a3c5-70073e1b8c04", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16836,6 +17264,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602757880000.b29654c1-31a2-4351-bdd5-5ad765a6592d" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -16845,9 +17279,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865522358322.6e8d8944-8783-4d5f-ad00-57357e087549" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -16935,10 +17375,10 @@ } }, { - "fullUrl": "Practitioner/1729025865522358322.6e8d8944-8783-4d5f-ad00-57357e087549", + "fullUrl": "Practitioner/1731693602757880000.b29654c1-31a2-4351-bdd5-5ad765a6592d", "resource": { "resourceType": "Practitioner", - "id": "1729025865522358322.6e8d8944-8783-4d5f-ad00-57357e087549", + "id": "1731693602757880000.b29654c1-31a2-4351-bdd5-5ad765a6592d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16969,6 +17409,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602760044000.7f91a118-c072-4838-ae1a-e0dbfa446021" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -16978,9 +17424,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865535416648.acae9afe-d587-455b-9247-069d6ec4643b" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -17068,10 +17520,10 @@ } }, { - "fullUrl": "Practitioner/1729025865535416648.acae9afe-d587-455b-9247-069d6ec4643b", + "fullUrl": "Practitioner/1731693602760044000.7f91a118-c072-4838-ae1a-e0dbfa446021", "resource": { "resourceType": "Practitioner", - "id": "1729025865535416648.acae9afe-d587-455b-9247-069d6ec4643b", + "id": "1731693602760044000.7f91a118-c072-4838-ae1a-e0dbfa446021", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -17102,6 +17554,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602762176000.415e4af4-0caa-467f-bda2-575d0efb347f" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -17111,9 +17569,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865593660086.c3a3d3c1-400b-44e4-91b7-b43294c56b7d" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -17206,10 +17670,10 @@ } }, { - "fullUrl": "Practitioner/1729025865593660086.c3a3d3c1-400b-44e4-91b7-b43294c56b7d", + "fullUrl": "Practitioner/1731693602762176000.415e4af4-0caa-467f-bda2-575d0efb347f", "resource": { "resourceType": "Practitioner", - "id": "1729025865593660086.c3a3d3c1-400b-44e4-91b7-b43294c56b7d", + "id": "1731693602762176000.415e4af4-0caa-467f-bda2-575d0efb347f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -17240,6 +17704,12 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731693602764326000.bb30014c-0830-4cc1-a234-aa3573ce7a81" + } + }, { "url": "OBR.22", "valueString": "20241015034304" @@ -17249,9 +17719,15 @@ "valueId": "F" }, { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1729025865680272601.0c1682e6-d771-497d-94a0-7ee2fa153165" + "url": "OBR.7", + "valueDateTime": "2024-10-15T03:35:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202410150335" + } + ] } } ] @@ -17344,10 +17820,10 @@ } }, { - "fullUrl": "Practitioner/1729025865680272601.0c1682e6-d771-497d-94a0-7ee2fa153165", + "fullUrl": "Practitioner/1731693602764326000.bb30014c-0830-4cc1-a234-aa3573ce7a81", "resource": { "resourceType": "Practitioner", - "id": "1729025865680272601.0c1682e6-d771-497d-94a0-7ee2fa153165", + "id": "1731693602764326000.bb30014c-0830-4cc1-a234-aa3573ce7a81", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir index 7ab709265ae..c703f63d597 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir @@ -138,15 +138,24 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension" : [ { + "url" : "OBR.16", + "valueReference" : { + "reference" : "Practitioner/1731634783563452000.70fb569b-0b26-4b24-88e5-9e3b5130b495" + } + }, { "url" : "OBR.22", "valueString" : "20230405133600-0400" }, { "url" : "OBR.25", "valueId" : "F" }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1710882479459596000.dea2fa3a-c4d5-42c1-a425-7756c8c633fd" + "url" : "OBR.7", + "valueDateTime" : "2023-02-27", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230227" + } ] } } ] } ], @@ -300,10 +309,10 @@ } ] } }, { - "fullUrl" : "Practitioner/1710882479459596000.dea2fa3a-c4d5-42c1-a425-7756c8c633fd", + "fullUrl" : "Practitioner/1731634783563452000.70fb569b-0b26-4b24-88e5-9e3b5130b495", "resource" : { "resourceType" : "Practitioner", - "id" : "1710882479459596000.dea2fa3a-c4d5-42c1-a425-7756c8c633fd", + "id" : "1731634783563452000.70fb569b-0b26-4b24-88e5-9e3b5130b495", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension" : [ { diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir index b7e5323de62..2b970b74ffd 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir @@ -1,2735 +1,16604 @@ { - "resourceType" : "Bundle", - "id" : "1727135930591193000.aedbf3aa-865a-4f68-9d9e-00f73bdbac4a", - "meta" : { - "lastUpdated" : "2024-09-23T16:58:50.595-07:00" + "resourceType": "Bundle", + "id": "1731704146603489000.6dc269cd-cd37-4587-89c1-e32656e91044", + "meta": { + "lastUpdated": "2024-11-15T12:55:46.608-08:00" }, - "identifier" : { - "system" : "https://reportstream.cdc.gov/prime-router", - "value" : "0123" + "identifier": { + "system": "https://reportstream.cdc.gov/prime-router", + "value": "0123" }, - "type" : "message", - "timestamp" : "2019-07-20T09:12:29.000-07:00", - "entry" : [ { - "fullUrl" : "MessageHeader/1727135930639052000.f02e1c18-0688-4280-b49b-df24eee02cdf", - "resource" : { - "resourceType" : "MessageHeader", - "id" : "1727135930639052000.f02e1c18-0688-4280-b49b-df24eee02cdf", - "meta" : { - "security" : [ { - "code" : "msh8placeholder" - } ], - "tag" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - }, { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0207", - "code" : "A" - } ] - }, - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/character-set", - "valueString" : "UNICODE UTF-8" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", - "extension" : [ { - "url" : "MSH.7", - "valueString" : "20190720091229" - }, { - "url" : "MSH.13", - "valueString" : "42" - }, { - "url" : "MSH.14", - "valueString" : "msh14placeholder" - }, { - "url" : "MSH.15", - "valueString" : "AL" - }, { - "url" : "MSH.16", - "valueString" : "AL" - }, { - "url" : "MSH.20", - "valueString" : "UNICODE UTF-16" - }, { - "url" : "MSH.21", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "PHIN" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.9.11" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "PHLabReport-NoAck" - } - } ] - } ], - "eventCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "O21", - "display" : "OML^O21^OML_O21" - }, - "destination" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.181960.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.5" - } ], - "name" : "txdshslabNBS", - "endpoint" : "urn:oid:2.16.840.1.114222.4.1.181960.2", - "receiver" : { - "reference" : "Organization/1727135930638288000.038501ce-626b-4f0d-8a9a-7a46cdb420ce" + "type": "message", + "timestamp": "2019-07-20T09:12:29.000-07:00", + "entry": [ + { + "fullUrl": "MessageHeader/1731704146658361000.51de3625-346e-48b2-a54a-3bf44e5ee904", + "resource": { + "resourceType": "MessageHeader", + "id": "1731704146658361000.51de3625-346e-48b2-a54a-3bf44e5ee904", + "meta": { + "security": [ + { + "code": "msh8placeholder" + } + ], + "tag": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0103", + "code": "P" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0207", + "code": "A" + } + ] + }, + "language": "ENG", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/character-set", + "valueString": "UNICODE UTF-8" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension": [ + { + "url": "MSH.7", + "valueString": "20190720091229" + }, + { + "url": "MSH.13", + "valueString": "42" + }, + { + "url": "MSH.14", + "valueString": "msh14placeholder" + }, + { + "url": "MSH.15", + "valueString": "AL" + }, + { + "url": "MSH.16", + "valueString": "AL" + }, + { + "url": "MSH.19", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "ISO" + } + ], + "version": "131", + "code": "ENG", + "display": "English" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + } + ], + "code": "2ndalt", + "display": "Second Alt" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "altISO" + } + ], + "version": "313", + "code": "altE", + "display": "altEnglish" + } + ], + "text": "originaltext" + } + }, + { + "url": "MSH.20", + "valueString": "UNICODE UTF-16" + }, + { + "url": "MSH.21", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "PHIN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.9.11" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "PHLabReport-NoAck" + } + }, + { + "url": "MSH.21", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "PHIN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.9.11" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "PHLabReport2x" + } + }, + { + "url": "MSH.24", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SendingNetworkAddress" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.23.987.1.114222.XXX" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + } + ] + } + ], + "eventCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v2-0003", + "code": "O21", + "display": "OML^O21^OML_O21" + }, + "destination": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.181960.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.5" + } + ], + "name": "txdshslabNBS", + "endpoint": "urn:oid:2.16.840.1.114222.4.1.181960.2", + "receiver": { + "reference": "Organization/1731704146654900000.5f694f3c-0cf8-44d3-8ead-cef521e630f5" + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "9.87.123.1.114222.XXX" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.25" + } + ], + "name": "ReceivingNetworkAddress", + "endpoint": "urn:oid:9.87.123.1.114222.XXX", + "receiver": { + "reference": "Organization/1731704146655763000.dafb2e41-9f17-44f1-8f96-fb4500d2f684" + } + }, + { + "receiver": { + "reference": "Organization/1731704146658169000.27382a02-0245-4593-8863-e8123707fa5d" + } + } + ], + "sender": { + "reference": "Organization/1731704146634292000.932f8e2e-9c80-4c19-98c4-124f82549151" + }, + "source": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "OrderingFacilityApplicationName" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.XXX" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.3" + } + ], + "software": "STARLIMS", + "version": "ELIMS V11", + "endpoint": "urn:oid:2.16.840.1.114222.XXX" + }, + "responsible": { + "reference": "Organization/1731704146654227000.858e1290-25c4-40be-88d9-32ad45703fd8" + } + } + }, + { + "fullUrl": "Organization/1731704146634292000.932f8e2e-9c80-4c19-98c4-124f82549151", + "resource": { + "resourceType": "Organization", + "id": "1731704146634292000.932f8e2e-9c80-4c19-98c4-124f82549151", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "OrderingFacilityName" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.XXX" + } + ], + "address": [ + { + "country": "FR" + } + ] + } + }, + { + "fullUrl": "Location/1731704146650434000.d54342e1-28a9-4b3e-bdba-c6baf982c54d", + "resource": { + "resourceType": "Location", + "id": "1731704146650434000.d54342e1-28a9-4b3e-bdba-c6baf982c54d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "1.8.440.1.1138.9.22" + } + ], + "name": "Clinic A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146654227000.858e1290-25c4-40be-88d9-32ad45703fd8", + "resource": { + "resourceType": "Organization", + "id": "1731704146654227000.858e1290-25c4-40be-88d9-32ad45703fd8", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1357-9", + "display": "SomeText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "2468-5", + "display": "SomeAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1357-9", + "display": "SomeText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "1111" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier2" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "9" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "The Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "4.2.8.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "BCV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146650434000.d54342e1-28a9-4b3e-bdba-c6baf982c54d" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "BC" + } + ] + }, + "value": "OrgIdentifier2" + } + ], + "name": "Sending Responsible Org" + } + }, + { + "fullUrl": "Organization/1731704146654900000.5f694f3c-0cf8-44d3-8ead-cef521e630f5", + "resource": { + "resourceType": "Organization", + "id": "1731704146654900000.5f694f3c-0cf8-44d3-8ead-cef521e630f5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.6" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "txdshslab" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.181960" + } + ] + } + }, + { + "fullUrl": "Organization/1731704146655763000.dafb2e41-9f17-44f1-8f96-fb4500d2f684", + "resource": { + "resourceType": "Organization", + "id": "1731704146655763000.dafb2e41-9f17-44f1-8f96-fb4500d2f684", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.6" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "txdshslab" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.181960" + } + ] + } + }, + { + "fullUrl": "Location/1731704146656889000.18772fbb-6bd4-42bb-bc6d-8cec0c48e04a", + "resource": { + "resourceType": "Location", + "id": "1731704146656889000.18772fbb-6bd4-42bb-bc6d-8cec0c48e04a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "10.10.40.10.11380.90.22" + } + ], + "name": "Clinic B", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146658169000.27382a02-0245-4593-8863-e8123707fa5d", + "resource": { + "resourceType": "Organization", + "id": "1731704146658169000.27382a02-0245-4593-8863-e8123707fa5d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1133-5", + "display": "SomeOtherText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1298-7", + "display": "SomeOtherAltText" + } + ], + "text": "TheOriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1133-5", + "display": "SomeOtherText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "5555" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier3" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.23" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "8" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "An Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "45.24.167.43" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "CCTV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146656889000.18772fbb-6bd4-42bb-bc6d-8cec0c48e04a" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "BCVan" + } + ] + }, + "value": "OrgIdentifier3" + } + ], + "name": "Receiving Responsible Org" + } + }, + { + "fullUrl": "Provenance/1731704146896883000.34cecadb-8889-4f9f-baf4-fa266af5ee22", + "resource": { + "resourceType": "Provenance", + "id": "1731704146896883000.34cecadb-8889-4f9f-baf4-fa266af5ee22", + "recorded": "2019-07-20T09:12:29Z", + "activity": { + "coding": [ + { + "display": "OML^O21^OML_O21" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "author" + } + ] + }, + "who": { + "reference": "Organization/1731704146896693000.a3da0f78-b1ba-49c8-b103-a70844a76af9" + } + } + ], + "entity": [ + { + "role": "source", + "what": { + "reference": "Device/1731704146900321000.3d449c36-c488-4a11-af71-71aa976c412b" + } + } + ] + } + }, + { + "fullUrl": "Location/1731704146895606000.3ffcf0a6-aa29-479e-997e-86bb0cebb53d", + "resource": { + "resourceType": "Location", + "id": "1731704146895606000.3ffcf0a6-aa29-479e-997e-86bb0cebb53d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "1.8.440.1.1138.9.22" + } + ], + "name": "Clinic A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146896693000.a3da0f78-b1ba-49c8-b103-a70844a76af9", + "resource": { + "resourceType": "Organization", + "id": "1731704146896693000.a3da0f78-b1ba-49c8-b103-a70844a76af9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1357-9", + "display": "SomeText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "2468-5", + "display": "SomeAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1357-9", + "display": "SomeText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "1111" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier2" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "9" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "The Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "4.2.8.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "BCV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146895606000.3ffcf0a6-aa29-479e-997e-86bb0cebb53d" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "BC" + } + ] + }, + "value": "OrgIdentifier2" + } + ], + "name": "Sending Responsible Org" + } + }, + { + "fullUrl": "Location/1731704146899300000.d1cde637-92ec-4b05-8f02-6da945f1fa63", + "resource": { + "resourceType": "Location", + "id": "1731704146899300000.d1cde637-92ec-4b05-8f02-6da945f1fa63", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.8121.1.113883.9.11" + } + ], + "name": "Hospital C", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146900192000.d8047bd9-ef38-4850-8bf0-61981eddac70", + "resource": { + "resourceType": "Organization", + "id": "1731704146900192000.d8047bd9-ef38-4850-8bf0-61981eddac70", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70204" + } + ], + "code": "A", + "display": "Alias Name" + } + ] + } + } + ], + "system": "HL70204", + "code": "A", + "display": "Alias Name" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "A" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "789" + }, + { + "url": "XON.10", + "valueString": "CDC CLIA" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CDC OML SFT" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.9.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146899300000.d1cde637-92ec-4b05-8f02-6da945f1fa63" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "CDC CLIA" + } + ], + "name": "CDC" + } + }, + { + "fullUrl": "Device/1731704146900321000.3d449c36-c488-4a11-af71-71aa976c412b", + "resource": { + "resourceType": "Device", + "id": "1731704146900321000.3d449c36-c488-4a11-af71-71aa976c412b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", + "valueReference": { + "reference": "Organization/1731704146900192000.d8047bd9-ef38-4850-8bf0-61981eddac70" + } + } + ], + "manufacturer": "CDC", + "deviceName": [ + { + "name": "STARLIMS", + "type": "manufacturer-name" + } + ], + "modelNumber": "Binary ID unknown", + "version": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date", + "valueDateTime": "2023-08-02T18:08:02-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230802180802-0400" + } + ] + } + } + ], + "value": "ELIMS V11" + } + ], + "note": [ + { + "text": "testsft5data" + } + ] + } + }, + { + "fullUrl": "Provenance/1731704146910244000.055bc370-83de-4258-913d-059566394128", + "resource": { + "resourceType": "Provenance", + "id": "1731704146910244000.055bc370-83de-4258-913d-059566394128", + "recorded": "2024-11-15T12:55:46Z", + "policy": [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity": { + "coding": [ + { + "code": "v2-FHIR transformation" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" + } + ] + }, + "who": { + "reference": "Organization/1731704146909991000.783d5f84-f8e0-4dd7-ad77-c2717a521256" + } + } + ] + } + }, + { + "fullUrl": "Organization/1731704146909991000.783d5f84-f8e0-4dd7-ad77-c2717a521256", + "resource": { + "resourceType": "Organization", + "id": "1731704146909991000.783d5f84-f8e0-4dd7-ad77-c2717a521256", + "identifier": [ + { + "value": "CDC PRIME - Atlanta" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea", + "resource": { + "resourceType": "Patient", + "id": "1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea", + "meta": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", + "valueReference": { + "reference": "Organization/1731704146941745000.ffe8c316-611f-479f-9ca6-6f164199da81" + } + } + ], + "lastUpdated": "2024-08-21T11:38:00Z", + "_lastUpdated": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202408211138" + } + ] + } + }, + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", + "valueAnnotation": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20210207" + }, + { + "url": "NTE.8", + "valueString": "20210208" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "Coded Patient note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Just a little note on the patient" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "another little comment" + } + ], + "time": "2021-02-06", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210206" + } + ] + }, + "text": "Just a little note on the patient" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", + "valueAnnotation": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230601" + }, + { + "url": "NTE.8", + "valueString": "20350201" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "Coded comment for patient note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Accession level coment." + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "y" + } + ], + "version": "a", + "code": "z", + "display": "x" + } + ], + "text": "b" + } + } + ], + "authorReference": { + "reference": "Practitioner/1731704146922768000.83da4f80-28fe-43ab-a268-80aef1a36f14" + }, + "time": "2023-05-31", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230531" + } + ] + }, + "text": "Accession level coment." + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", + "extension": [ + { + "url": "PID.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70001" + } + ], + "code": "F", + "display": "Female" + } + ] + } + }, + { + "url": "PID.18", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.18" + } + ], + "value": "32" + } + }, + { + "url": "PID.24", + "valueString": "Y" + }, + { + "url": "PID.30", + "valueString": "Y" + }, + { + "url": "PID.32", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70445" + } + ], + "code": "AL", + "display": "Alias" + } + ] + } + }, + { + "url": "PID.32", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70445" + } + ], + "code": "UA", + "display": "Unknown" + } + ] + } + }, + { + "url": "PID.38", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70429" + } + ], + "code": "RA", + "display": "Racing" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/veteran-military-status", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70172" + } + ], + "code": "NA", + "display": "Not Applicable" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-nationality", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.28" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70212" + } + ], + "code": "A", + "display": "American" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identity-unknown", + "valueString": "N" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-animal", + "extension": [ + { + "url": "species", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.35" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70446" + } + ], + "code": "D", + "display": "Dog" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/studentStatus", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Full-time student" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" + } + ], + "version": "2.5.1", + "code": "N", + "display": "Not a student" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" + } + ], + "version": "4", + "code": "N", + "display": "Not a student" + } + ], + "text": "TEST" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-disability", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" + } + ], + "version": "2.5.1", + "code": "T", + "display": "TEST" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" + } + ], + "version": "2.5.1", + "code": "D", + "display": "Debug" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" + } + ], + "version": "4", + "code": "P", + "display": "Prod" + } + ], + "text": "TEST" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/livingWill", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Yes, patient has a living will but it is not on file" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" + } + ], + "version": "2.5.1", + "code": "U", + "display": "Unknown" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" + } + ], + "version": "4", + "code": "I", + "display": "No, patient does not have a living will but information was provided" + } + ], + "text": "TEST" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString": "1st Ordering Facility" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString": "2nd Ordering Facility" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic", + "extension": [ + { + "url": "PD1.1", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "C", + "display": "Small Children Dependent" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "M", + "display": "Medical Supervision Required" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "4", + "code": "M", + "display": "Medical Supervision Required" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.1", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "O", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "M", + "display": "Medical Supervision Required" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "4", + "code": "U", + "display": "Unknown" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.2", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" + } + ], + "version": "2.5.1", + "code": "A", + "display": "Alone" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Family" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" + } + ], + "version": "4", + "code": "F", + "display": "Family" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.16", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" + } + ], + "version": "2.5.1", + "code": "A", + "display": "Active" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" + } + ], + "version": "2.5.1", + "code": "O", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" + } + ], + "version": "4", + "code": "I", + "display": "Inactive" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.17", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.18", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.19", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" + } + ], + "version": "2.5.1", + "code": "AUSA", + "display": "Australian Army" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" + } + ], + "version": "2.5.1", + "code": "AUSN", + "display": "Australian Navy" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" + } + ], + "version": "4", + "code": "AUSFA", + "display": "Australian Air Force" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.20", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" + } + ], + "version": "2.5.1", + "code": "E1... E9", + "display": "Enlisted" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" + } + ], + "version": "2.5.1", + "code": "W1 ... W4", + "display": "Warrent Officers" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" + } + ], + "version": "4", + "code": "O1 ... O9", + "display": "Officers" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.21", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" + } + ], + "version": "2.5.1", + "code": "ACT", + "display": "Active duty" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" + } + ], + "version": "2.5.1", + "code": "RET", + "display": "Retired" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" + } + ], + "version": "4", + "code": "DEC", + "display": "Deceased" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.22", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.8", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Yes, patient is a documented donor, but documentation is not on file" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" + } + ], + "version": "2.5.1", + "code": "U", + "display": "Unknown" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" + } + ], + "version": "4", + "code": "I", + "display": "No, patient is not a documented donor, but information was provided" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.9", + "valueString": "N" + }, + { + "url": "PD1.10", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1731704146929298000.ad9b0bbd-9d3e-4381-805d-4f928f2a2cd3" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "MR" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PD1.10" + } + ], + "type": { + "coding": [ + { + "code": "MR" + } + ] + }, + "system": "NIST MPI", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NIST MPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.3.72.5.30.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "18547545" + } + }, + { + "url": "PD1.10", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1731704146929916000.c6490dae-76fb-4ca5-a86e-6d6b54f8c34e" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "SS" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PD1.10" + } + ], + "type": { + "coding": [ + { + "code": "SS" + } + ] + }, + "system": "SSN", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SSN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "111111111" + } + }, + { + "url": "PD1.11", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Family only" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" + } + ], + "version": "2.5.1", + "code": "U", + "display": "Unknown" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" + } + ], + "version": "4", + "code": "N", + "display": "No Publicity" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.12", + "valueString": "N" + }, + { + "url": "PD1.13", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.14", + "valueReference": { + "reference": "Organization/1731704146931548000.98da17fb-025a-4dc1-8b64-4718591ee4d4" + } + }, + { + "url": "PD1.14", + "valueReference": { + "reference": "Organization/1731704146932460000.8991f1f5-0d86-4aa6-8014-4070f7e57e01" + } + }, + { + "url": "PD1.15", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "DNR", + "display": "Do not resuscitate" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "N", + "display": "No directive" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "4", + "code": "N", + "display": "No directive" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.15", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "DNR", + "display": "Do not resuscitate" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "N", + "display": "No directive" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "4", + "code": "N", + "display": "No directive" + } + ], + "text": "TEST" + } + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", + "valueHumanName": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "FHIR" + }, + { + "url": "XPN.3", + "valueString": "WI" + }, + { + "url": "XPN.7", + "valueString": "L" + } + ] + } + ], + "use": "official", + "family": "Mind", + "given": [ + "FHIR", + "WI" + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", + "valueHumanName": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "FHIR" + }, + { + "url": "XPN.3", + "valueString": "WI" + }, + { + "url": "XPN.7", + "valueString": "L" + } + ] + } + ], + "use": "official", + "family": "Mind2x", + "given": [ + "FHIR", + "WI" + ] + } + }, + { + "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70005" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v3-Race", + "code": "2106-3", + "display": "White" + } + ] + } + }, + { + "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70005" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v3-Race", + "code": "2131-1", + "display": "Other Race" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-religion", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70006" + } + ], + "code": "AGN", + "display": "Agnostic" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70189" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0189", + "code": "U", + "display": "Uknown" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70189" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0189", + "code": "AU", + "display": "Also Uknown" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", + "valueAddress": { + "text": "Bayou" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-citizenship", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.26" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70171" + } + ], + "code": "USA", + "display": "United States" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.26" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70171" + } + ], + "code": "CAN", + "display": "Canada" + } + ] + } + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-citizenship", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.39" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70171" + } + ], + "code": "N", + "display": "None" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.39" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70171" + } + ], + "code": "SN", + "display": "Still None" + } + ] + } + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "forty" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueString": "123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1731704146915669000.3b7f4209-0077-4d5b-b1cf-96f63f111890" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "PI" + }, + { + "url": "CX.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7123" + } + ], + "code": "IX", + "display": "Ninth" + } + ] + } + }, + { + "url": "CX.10", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7123" + } + ], + "code": "X", + "display": "Tenth" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "PI" + } + ] + }, + "system": "STARLIMS.CDC.Stag", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "Patidlist", + "period": { + "start": "2021-01-13", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210113" + } + ] + }, + "end": "2021-12-30", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20211230" + } + ] + } + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "PI" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "PI" + } + ] + }, + "system": "SPHL-000048", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "PID123" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1731704146917336000.2a051cf6-00d8-4256-a1cc-5a55d39e0eb2" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "PI" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "PI" + } + ] + }, + "system": "STARLIMS.CDC.Stag", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "test" + } + ], + "name": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "HL7" + }, + { + "url": "XPN.3", + "valueString": "MI" + }, + { + "url": "XPN.14", + "valueString": "Prof" + }, + { + "url": "XPN.4", + "valueString": "V" + }, + { + "url": "XPN.6", + "valueString": "BCN" + }, + { + "url": "XPN.7", + "valueString": "L" + }, + { + "url": "XPN.8", + "valueString": "Naaame" + }, + { + "url": "XPN.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7444" + } + ], + "code": "C", + "display": "Name Context" + } + ] + } + }, + { + "url": "XPN.10", + "extension": [ + { + "url": "XPN.10.2" + }, + { + "url": "XPN.10.1", + "valueString": "Yes" + } + ] + }, + { + "url": "XPN.12", + "valueString": "19900503" + }, + { + "url": "XPN.13", + "valueString": "20030503" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "Mega", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "Mr" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "MrOwnMega" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "Mrs" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "MrsOwn" + } + ] + }, + "given": [ + "HL7", + "MI" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "V", + "BCN", + "Prof" + ], + "period": { + "start": "1990-05-03", + "end": "2003-05-03" + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "HL7" + }, + { + "url": "XPN.3", + "valueString": "MI" + }, + { + "url": "XPN.14", + "valueString": "Prof" + }, + { + "url": "XPN.4", + "valueString": "V" + }, + { + "url": "XPN.6", + "valueString": "BCN" + }, + { + "url": "XPN.7", + "valueString": "L" + }, + { + "url": "XPN.8", + "valueString": "Naaame" + }, + { + "url": "XPN.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7444" + } + ], + "code": "C", + "display": "Name Context" + } + ] + } + }, + { + "url": "XPN.10", + "extension": [ + { + "url": "XPN.10.2" + }, + { + "url": "XPN.10.1", + "valueString": "Yes" + } + ] + }, + { + "url": "XPN.12", + "valueString": "19900503" + }, + { + "url": "XPN.13", + "valueString": "20030503" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "Mega", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "Mr" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "MrOwnMega" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "Mrs" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "MrsOwn" + } + ] + }, + "given": [ + "HL7", + "MI" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "V", + "BCN", + "Prof" + ], + "period": { + "start": "1990-05-03", + "end": "2003-05-03" + } + } + ], + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "713" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553861" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "12345" + }, + { + "url": "XTN.2", + "valueString": "PRS" + }, + { + "url": "XTN.3", + "valueString": "CP" + }, + { + "url": "XTN.4", + "valueString": "real@example.com" + }, + { + "url": "XTN.7", + "valueString": "5553861" + }, + { + "url": "XTN.9", + "valueString": "himom" + }, + { + "url": "XTN.11", + "valueString": "4" + }, + { + "url": "XTN.12", + "valueString": "17145553862" + } + ] + } + ], + "system": "phone", + "value": "17145553862", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "714" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553861" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "12345" + }, + { + "url": "XTN.2", + "valueString": "PRS" + }, + { + "url": "XTN.3", + "valueString": "CP" + }, + { + "url": "XTN.4", + "valueString": "notreal@example.com" + }, + { + "url": "XTN.7", + "valueString": "5553861" + }, + { + "url": "XTN.9", + "valueString": "himom" + }, + { + "url": "XTN.11", + "valueString": "4" + }, + { + "url": "XTN.12", + "valueString": "17135553862" + } + ] + } + ], + "system": "phone", + "value": "17135553862", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "281" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553861" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "9865" + }, + { + "url": "XTN.2", + "valueString": "EMR" + }, + { + "url": "XTN.3", + "valueString": "SAT" + }, + { + "url": "XTN.4", + "valueString": "alsoreal@exmaple.com" + }, + { + "url": "XTN.7", + "valueString": "5553861" + } + ] + } + ], + "system": "other", + "use": "work" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "40" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.40" + } + ], + "_system": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCode": "unknown" + } + ] + }, + "value": "40" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "41" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.40" + } + ], + "_system": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCode": "unknown" + } + ] + }, + "value": "41" + } + ], + "gender": "female", + "birthDate": "1640", + "_birthDate": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "1640" + } + ] + }, + "deceasedDateTime": "2031", + "_deceasedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2031" + } + ] + }, + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "123 Main St" + } + ] + }, + { + "url": "XAD.2", + "valueString": "Altxad" + }, + { + "url": "XAD.7", + "valueCode": "H" + }, + { + "url": "XAD.12", + "extension": [ + { + "url": "XAD.12.1", + "valueString": "2020" + }, + { + "url": "XAD.12.2", + "valueString": "2024" + } + ] + } + ] + } + ], + "use": "home", + "line": [ + "123 Main St", + "Altxad" + ], + "city": "AnyTown", + "district": "Thurston County", + "state": "IG", + "postalCode": "95802", + "country": "USA", + "period": { + "start": "2020", + "end": "2024" + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1234 Main St" + } + ] + }, + { + "url": "XAD.2", + "valueString": "Address 2x" + }, + { + "url": "XAD.7", + "valueCode": "H" + }, + { + "url": "XAD.12", + "extension": [ + { + "url": "XAD.12.1", + "valueString": "2020" + }, + { + "url": "XAD.12.2", + "valueString": "2024" + } + ] + } + ] + } + ], + "use": "home", + "line": [ + "1234 Main St", + "Address 2x" + ], + "city": "AnyTown", + "district": "Thurston County", + "state": "IG", + "postalCode": "95802", + "country": "USA", + "period": { + "start": "2020", + "end": "2024" + } + } + ], + "maritalStatus": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70002" + } + ], + "code": "P", + "display": "Domestic Partnet" + } + ] + }, + "multipleBirthInteger": 11, + "contact": [ + { + "extension": [ + { + "url": "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "code": "OTH", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "OT", + "display": "OTHER RELATIONSHIP" + } + ] + } + }, + { + "url": "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "code": "OTH", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "OT", + "display": "OTHER RELATIONSHIP" + } + ] + } + } + ], + "relationship": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "code": "OTH", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "OT", + "display": "OTHER RELATIONSHIP" + } + ] + }, + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70131" + } + ], + "code": "F", + "display": "Federal Agency" + } + ] + } + ], + "name": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "GENARO" + }, + { + "url": "XPN.3", + "valueString": "GR" + }, + { + "url": "XPN.14", + "valueString": "Dr" + }, + { + "url": "XPN.4", + "valueString": "JR" + }, + { + "url": "XPN.6", + "valueString": "Md" + }, + { + "url": "XPN.7", + "valueString": "L" + }, + { + "url": "XPN.8", + "valueString": "I" + }, + { + "url": "XPN.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70448" + } + ], + "code": "CON", + "display": "Context of the name" + } + ] + } + }, + { + "url": "XPN.10", + "extension": [ + { + "url": "XPN.10.2", + "valueString": "2030" + }, + { + "url": "XPN.10.1", + "valueString": "2000" + } + ] + }, + { + "url": "XPN.12", + "valueString": "20000501102531" + }, + { + "url": "XPN.13", + "valueString": "2030501102531" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "SURYAN", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "Prefix" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Own" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "SpousePrefix" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "Spouse" + } + ] + }, + "given": [ + "GENARO", + "GR" + ], + "prefix": [ + "Sir" + ], + "suffix": [ + "JR", + "Md", + "Dr" + ], + "period": { + "start": "2000-05-01T10:25:31Z" + } + }, + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "PRN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.4", + "valueString": "example@exmaple.com" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.9", + "valueString": "any" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3954" + } + ] + } + ], + "system": "phone", + "value": "+1 720 555 3954", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "PRN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.4", + "valueString": "example2@exmaple.com" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.9", + "valueString": "any" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3954" + } + ] + } + ], + "system": "phone", + "value": "+1 720 555 3954", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "PRN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.4", + "valueString": "example2@exmaple.com" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.9", + "valueString": "any" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3955" + } + ] + } + ], + "system": "phone", + "value": "+1 720 555 3955", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "555" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4672293" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4672293" + }, + { + "url": "XTN.12", + "valueString": "+1 555 467 2293" + } + ] + } + ], + "system": "phone", + "value": "+1 555 467 2293", + "use": "work" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "666" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4672293" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4672293" + }, + { + "url": "XTN.12", + "valueString": "+1 666 467 2293" + } + ] + } + ], + "system": "phone", + "value": "+1 666 467 2293", + "use": "work" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "555" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4672293" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4672293" + }, + { + "url": "XTN.12", + "valueString": "+1 555 467 2294" + } + ] + } + ], + "system": "phone", + "value": "+1 555 467 2294", + "use": "work" + } + ], + "address": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE" + ], + "city": "THUNDER MOUNTAIN", + "state": "IG", + "postalCode": "99999", + "country": "USA" + }, + "gender": "unknown", + "organization": { + "reference": "Organization/1731704146944899000.78ca289d-8d36-4e56-9da8-df11b7f379d2" + }, + "period": { + "start": "2022-05-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20220501102531-0400" + } + ] + }, + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" + } + ] + } + } + } + ], + "communication": [ + { + "language": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70296" + } + ], + "code": "E", + "display": "English" + } + ] + } + } + ], + "generalPractitioner": [ + { + "reference": "Organization/1731704146919601000.ac31960c-dd2c-4153-873c-52f4a3f695e3" + }, + { + "reference": "Organization/1731704146920799000.6f432a5c-4b14-4b7f-b3a4-4e78a506d59f" + } + ], + "link": [ + { + "other": { + "reference": "RelatedPerson/1731704146938119000.4596e280-4938-4a99-8b51-eeaafd2790e3" + }, + "type": "seealso" + }, + { + "other": { + "reference": "RelatedPerson/1731704146938336000.71ee8bcb-1663-458a-85f8-987f2ce45f07" + }, + "type": "seealso" + } + ] + } + }, + { + "fullUrl": "Organization/1731704146915669000.3b7f4209-0077-4d5b-b1cf-96f63f111890", + "resource": { + "resourceType": "Organization", + "id": "1731704146915669000.3b7f4209-0077-4d5b-b1cf-96f63f111890", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "STARLINKED.CDC.Stag" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.9.8.7.6.3.2" + } + ] + } + }, + { + "fullUrl": "Organization/1731704146917336000.2a051cf6-00d8-4256-a1cc-5a55d39e0eb2", + "resource": { + "resourceType": "Organization", + "id": "1731704146917336000.2a051cf6-00d8-4256-a1cc-5a55d39e0eb2", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "STARLINKED.CDC.Stag" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.9.8.7.6.3.2" + } + ] + } + }, + { + "fullUrl": "Location/1731704146918148000.059eeb1c-e701-4aee-ae11-cf9c26b46bd6", + "resource": { + "resourceType": "Location", + "id": "1731704146918148000.059eeb1c-e701-4aee-ae11-cf9c26b46bd6", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146919601000.ac31960c-dd2c-4153-873c-52f4a3f695e3", + "resource": { + "resourceType": "Organization", + "id": "1731704146919601000.ac31960c-dd2c-4153-873c-52f4a3f695e3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146918148000.059eeb1c-e701-4aee-ae11-cf9c26b46bd6" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "OrgIdentifier" + } + ], + "name": "Ordering Facility" + } + }, + { + "fullUrl": "Location/1731704146920075000.1742204b-97be-4e11-baf6-ca56697e5fb1", + "resource": { + "resourceType": "Location", + "id": "1731704146920075000.1742204b-97be-4e11-baf6-ca56697e5fb1", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146920799000.6f432a5c-4b14-4b7f-b3a4-4e78a506d59f", + "resource": { + "resourceType": "Organization", + "id": "1731704146920799000.6f432a5c-4b14-4b7f-b3a4-4e78a506d59f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146920075000.1742204b-97be-4e11-baf6-ca56697e5fb1" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "OrgIdentifier" + } + ], + "name": "Ordering Facility" + } + }, + { + "fullUrl": "Practitioner/1731704146922768000.83da4f80-28fe-43ab-a268-80aef1a36f14", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146922768000.83da4f80-28fe-43ab-a268-80aef1a36f14", + "identifier": [ + { + "value": "Bob R.N." + } + ] + } + }, + { + "fullUrl": "Organization/1731704146929298000.ad9b0bbd-9d3e-4381-805d-4f928f2a2cd3", + "resource": { + "resourceType": "Organization", + "id": "1731704146929298000.ad9b0bbd-9d3e-4381-805d-4f928f2a2cd3", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "University H" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.0" + } + ] + } + }, + { + "fullUrl": "Organization/1731704146929916000.c6490dae-76fb-4ca5-a86e-6d6b54f8c34e", + "resource": { + "resourceType": "Organization", + "id": "1731704146929916000.c6490dae-76fb-4ca5-a86e-6d6b54f8c34e", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "SSA" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.184" + } + ] + } + }, + { + "fullUrl": "Location/1731704146930937000.1cb5e6dc-b477-451b-8e67-57e57eb12873", + "resource": { + "resourceType": "Location", + "id": "1731704146930937000.1cb5e6dc-b477-451b-8e67-57e57eb12873", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146931548000.98da17fb-025a-4dc1-8b64-4718591ee4d4", + "resource": { + "resourceType": "Organization", + "id": "1731704146931548000.98da17fb-025a-4dc1-8b64-4718591ee4d4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "1st OrgIdentifier" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146930937000.1cb5e6dc-b477-451b-8e67-57e57eb12873" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "1st OrgIdentifier" + } + ], + "name": "1st Ordering Facility" + } + }, + { + "fullUrl": "Location/1731704146931934000.428aa378-04d8-46ce-b6e8-8bbc97d118bc", + "resource": { + "resourceType": "Location", + "id": "1731704146931934000.428aa378-04d8-46ce-b6e8-8bbc97d118bc", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146932460000.8991f1f5-0d86-4aa6-8014-4070f7e57e01", + "resource": { + "resourceType": "Organization", + "id": "1731704146932460000.8991f1f5-0d86-4aa6-8014-4070f7e57e01", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "2nd OrgIdentifier" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146931934000.428aa378-04d8-46ce-b6e8-8bbc97d118bc" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "2nd OrgIdentifier" + } + ], + "name": "2nd Ordering Facility" + } + }, + { + "fullUrl": "RelatedPerson/1731704146938119000.4596e280-4938-4a99-8b51-eeaafd2790e3", + "resource": { + "resourceType": "RelatedPerson", + "id": "1731704146938119000.4596e280-4938-4a99-8b51-eeaafd2790e3", + "identifier": [ + { + "value": "maybe" + } + ] + } + }, + { + "fullUrl": "RelatedPerson/1731704146938336000.71ee8bcb-1663-458a-85f8-987f2ce45f07", + "resource": { + "resourceType": "RelatedPerson", + "id": "1731704146938336000.71ee8bcb-1663-458a-85f8-987f2ce45f07", + "identifier": [ + { + "value": "maybe not" + } + ] + } + }, + { + "fullUrl": "Organization/1731704146941745000.ffe8c316-611f-479f-9ca6-6f164199da81", + "resource": { + "resourceType": "Organization", + "id": "1731704146941745000.ffe8c316-611f-479f-9ca6-6f164199da81", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "RSDT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "0.0.0.1.1138" + } + ] + } + }, + { + "fullUrl": "Organization/1731704146944899000.78ca289d-8d36-4e56-9da8-df11b7f379d2", + "resource": { + "resourceType": "Organization", + "id": "1731704146944899000.78ca289d-8d36-4e56-9da8-df11b7f379d2", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "112233" + }, + { + "url": "XON.10", + "valueString": "HRU" + } + ] + } + ], + "identifier": [ + { + "value": "HRU" + } + ], + "name": "HospitalsRUs", + "contact": [ + { + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3954" + } + ] + } + ], + "system": "phone", + "value": "+1 720 555 3954", + "use": "work" + } + ], + "address": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "12" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.2", + "valueString": "#B" + }, + { + "url": "XAD.7", + "valueCode": "H" + }, + { + "url": "XAD.8", + "valueString": "World" + }, + { + "url": "XAD.11", + "valueCode": "8" + }, + { + "url": "XAD.12", + "extension": [ + { + "url": "XAD.12.1", + "valueString": "2017" + }, + { + "url": "XAD.12.2", + "valueString": "2025" + } + ] + }, + { + "url": "XAD.13", + "valueString": "2020" + }, + { + "url": "XAD.14", + "valueString": "2021" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE", + "#B" + ], + "city": "AURORA", + "district": "King", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2020", + "end": "2021" + } + } + } + ] + } + }, + { + "fullUrl": "Provenance/1731704146966322000.547ef142-b081-40c7-99d8-a94d1968631b", + "resource": { + "resourceType": "Provenance", + "id": "1731704146966322000.547ef142-b081-40c7-99d8-a94d1968631b", + "target": [ + { + "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + } + ], + "occurredDateTime": "2024-08-21T11:38:00Z", + "recorded": "2024-11-15T12:55:46Z", + "activity": { + "coding": [ + { + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "performer" + } + ] + }, + "who": { + "reference": "Organization/1731704146966079000.2e38dd42-265c-4639-b701-7e741520ef3f" + } + } + ] + } + }, + { + "fullUrl": "Organization/1731704146966079000.2e38dd42-265c-4639-b701-7e741520ef3f", + "resource": { + "resourceType": "Organization", + "id": "1731704146966079000.2e38dd42-265c-4639-b701-7e741520ef3f", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "RSDT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "0.0.0.1.1138" + } + ] + } + }, + { + "fullUrl": "RelatedPerson/1731704146972699000.d8d98dea-04a5-4cd5-ad74-d5e214de51cb", + "resource": { + "resourceType": "RelatedPerson", + "id": "1731704146972699000.d8d98dea-04a5-4cd5-ad74-d5e214de51cb", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "NK1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nk1-related-person", + "extension": [ + { + "url": "NK1.13", + "valueReference": { + "reference": "Organization/1731704146968032000.f35624e9-ca32-4edf-8739-0d37189ed087" + } + }, + { + "url": "NK1.13", + "valueReference": { + "reference": "Organization/1731704146968235000.2fcdb900-9cc3-448d-aebf-4f25eb8c5cd8" + } + }, + { + "url": "NK1.16", + "valueString": "19860505" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.12" + } + ], + "value": "052479", + "period": { + "start": "2016-08-22", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20160822" + } + ] + } + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.33" + } + ], + "value": "052479", + "period": { + "end": "2021-04-28", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210428" + } + ] + } + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.33" + } + ], + "value": "052470", + "period": { + "end": "2021-04-29", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210429" + } + ] + } + } + } + ], + "patient": { + "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + }, + "relationship": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "code": "OTH", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "OT", + "display": "OTHER RELATIONSHIP" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.7" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70131" + } + ], + "code": "F", + "display": "Federal Agency" + } + ] + } + ], + "name": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "GENARO" + }, + { + "url": "XPN.3", + "valueString": "GR" + }, + { + "url": "XPN.14", + "valueString": "Dr" + }, + { + "url": "XPN.4", + "valueString": "JR" + }, + { + "url": "XPN.6", + "valueString": "Md" + }, + { + "url": "XPN.7", + "valueString": "L" + }, + { + "url": "XPN.8", + "valueString": "I" + }, + { + "url": "XPN.9", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70448" + } + ], + "code": "CON", + "display": "Context of the name" + } + ] + } + }, + { + "url": "XPN.10", + "extension": [ + { + "url": "XPN.10.2", + "valueString": "2030" + }, + { + "url": "XPN.10.1", + "valueString": "2000" + } + ] + }, + { + "url": "XPN.12", + "valueString": "20000501102531" + }, + { + "url": "XPN.13", + "valueString": "2030501102531" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "SURYAN", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "Prefix" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Own" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "SpousePrefix" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "Spouse" + } + ] + }, + "given": [ + "GENARO", + "GR" + ], + "prefix": [ + "Sir" + ], + "suffix": [ + "JR", + "Md", + "Dr" + ], + "period": { + "start": "2000-05-01T10:25:31Z" + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "GENARO" + }, + { + "url": "XPN.3", + "valueString": "GR" + }, + { + "url": "XPN.14", + "valueString": "Dr" + }, + { + "url": "XPN.4", + "valueString": "JR" + }, + { + "url": "XPN.6", + "valueString": "Md" + }, + { + "url": "XPN.7", + "valueString": "L" + }, + { + "url": "XPN.8", + "valueString": "I" + }, + { + "url": "XPN.9", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70448" + } + ], + "code": "CON", + "display": "Context of the name" + } + ] + } + }, + { + "url": "XPN.10", + "extension": [ + { + "url": "XPN.10.2", + "valueString": "2030" + }, + { + "url": "XPN.10.1", + "valueString": "2000" + } + ] + }, + { + "url": "XPN.12", + "valueString": "20000501102531" + }, + { + "url": "XPN.13", + "valueString": "2030501102531" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "SURYANS", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "Prefix" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Own" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "SpousePrefix" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "Spouse" + } + ] + }, + "given": [ + "GENARO", + "GR" + ], + "prefix": [ + "Sir" + ], + "suffix": [ + "JR", + "Md", + "Dr" + ], + "period": { + "start": "2000-05-01T10:25:31Z" + } + } + ], + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "PRN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.4", + "valueString": "example@exmaple.com" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.9", + "valueString": "any" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3954" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.5" + } + ], + "system": "phone", + "value": "+1 720 555 3954", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "PRN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.4", + "valueString": "example2@exmaple.com" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.9", + "valueString": "any" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3954" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.5" + } + ], + "system": "phone", + "value": "+1 720 555 3954", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "555" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4672293" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4672293" + }, + { + "url": "XTN.12", + "valueString": "+1 555 467 2293" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.6" + } + ], + "system": "phone", + "value": "+1 555 467 2293", + "use": "work" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "666" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4672293" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4672293" + }, + { + "url": "XTN.12", + "valueString": "+1 666 467 2293" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.6" + } + ], + "system": "phone", + "value": "+1 666 467 2293", + "use": "work" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3954" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.31" + } + ], + "system": "phone", + "value": "+1 720 555 3954", + "use": "work" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "666" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.12", + "valueString": "+1 666 555 3954" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.31" + } + ], + "system": "phone", + "value": "+1 666 555 3954", + "use": "work" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "314" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553131" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "VHN" + }, + { + "url": "XTN.3", + "valueString": "SAT" + }, + { + "url": "XTN.7", + "valueString": "5553131" + }, + { + "url": "XTN.12", + "valueString": "+1 314 555 3131" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.40" + } + ], + "system": "other", + "value": "+1 314 555 3131" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "281" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5558181" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "AWN" + }, + { + "url": "XTN.3", + "valueString": "FX" + }, + { + "url": "XTN.7", + "valueString": "5558181" + }, + { + "url": "XTN.12", + "valueString": "+1 281 555 8181" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.41" + } + ], + "system": "fax", + "value": "+1 281 555 8181" + } + ], + "gender": "unknown", + "_gender": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nk1-15-administrative-sex", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70001" + } + ], + "code": "N", + "display": "Not Applicable" + } + ] + } + } + ] + }, + "birthDate": "1986-05-05", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE" + ], + "city": "THUNDER MOUNTAIN", + "state": "IG", + "postalCode": "99999", + "country": "USA" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4860 21ST AVE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "4860 21ST AVE" + ], + "city": "THUNDER MOUNTAIN", + "state": "IG", + "postalCode": "99999", + "country": "USA" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "12" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.32" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.2", + "valueString": "#B" + }, + { + "url": "XAD.7", + "valueCode": "H" + }, + { + "url": "XAD.8", + "valueString": "World" + }, + { + "url": "XAD.11", + "valueCode": "8" + }, + { + "url": "XAD.12", + "extension": [ + { + "url": "XAD.12.1", + "valueString": "2017" + }, + { + "url": "XAD.12.2", + "valueString": "2025" + } + ] + }, + { + "url": "XAD.13", + "valueString": "2020" + }, + { + "url": "XAD.14", + "valueString": "2021" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE", + "#B" + ], + "city": "AURORA", + "district": "King", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2020", + "end": "2021" + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "12" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.32" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 24TH AVE" + } + ] + }, + { + "url": "XAD.2", + "valueString": "#B" + }, + { + "url": "XAD.7", + "valueCode": "H" + }, + { + "url": "XAD.8", + "valueString": "World" + }, + { + "url": "XAD.11", + "valueCode": "8" + }, + { + "url": "XAD.12", + "extension": [ + { + "url": "XAD.12.1", + "valueString": "2017" + }, + { + "url": "XAD.12.2", + "valueString": "2025" + } + ] + }, + { + "url": "XAD.13", + "valueString": "2020" + }, + { + "url": "XAD.14", + "valueString": "2021" + } + ] + } + ], + "use": "home", + "line": [ + "4861 24TH AVE", + "#B" + ], + "city": "AURORA", + "district": "King", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2020", + "end": "2021" + } + } + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20220501102531-0400" + } + ] + }, + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" + } + ] + } + }, + "communication": [ + { + "language": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70296" + } + ], + "code": "E", + "display": "English" + } + ] + } + } + ] + } + }, + { + "fullUrl": "Organization/1731704146968032000.f35624e9-ca32-4edf-8739-0d37189ed087", + "resource": { + "resourceType": "Organization", + "id": "1731704146968032000.f35624e9-ca32-4edf-8739-0d37189ed087", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "112233" + }, + { + "url": "XON.10", + "valueString": "HRU" + } + ] + } + ], + "identifier": [ + { + "value": "HRU" + } + ], + "name": "HospitalsRUs" + } + }, + { + "fullUrl": "Organization/1731704146968235000.2fcdb900-9cc3-448d-aebf-4f25eb8c5cd8", + "resource": { + "resourceType": "Organization", + "id": "1731704146968235000.2fcdb900-9cc3-448d-aebf-4f25eb8c5cd8", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "112233" + }, + { + "url": "XON.10", + "valueString": "H20" + } + ] + } + ], + "identifier": [ + { + "value": "H20" + } + ], + "name": "Hospitals 2.0" + } + }, + { + "fullUrl": "RelatedPerson/1731704146976466000.4d08c9ea-2fdb-497f-99b0-1f5fdba9b904", + "resource": { + "resourceType": "RelatedPerson", + "id": "1731704146976466000.4d08c9ea-2fdb-497f-99b0-1f5fdba9b904", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "NK1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nk1-related-person", + "extension": [ + { + "url": "NK1.13", + "valueReference": { + "reference": "Organization/1731704146973915000.7d915b7e-b1c4-4fa5-9afe-5883e02bd48c" + } + }, + { + "url": "NK1.16", + "valueString": "19860505" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.12" + } + ], + "value": "052479", + "period": { + "start": "2016-08-22", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20160822" + } + ] + } + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.33" + } + ], + "value": "052479", + "period": { + "end": "2021-04-28", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210428" + } + ] + } + } + } + ], + "patient": { + "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + }, + "relationship": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "code": "OTH", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "OT", + "display": "OTHER RELATIONSHIP" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.7" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70131" + } + ], + "code": "F", + "display": "Federal Agency" + } + ] + } + ], + "name": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "GENARO" + }, + { + "url": "XPN.3", + "valueString": "GR" + }, + { + "url": "XPN.14", + "valueString": "Dr" + }, + { + "url": "XPN.4", + "valueString": "JR" + }, + { + "url": "XPN.6", + "valueString": "Md" + }, + { + "url": "XPN.7", + "valueString": "L" + }, + { + "url": "XPN.8", + "valueString": "I" + }, + { + "url": "XPN.9", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70448" + } + ], + "code": "CON", + "display": "Context the namee" + } + ] + } + }, + { + "url": "XPN.10", + "extension": [ + { + "url": "XPN.10.2", + "valueString": "2030" + }, + { + "url": "XPN.10.1", + "valueString": "2000" + } + ] + }, + { + "url": "XPN.12", + "valueString": "20000501102531" + }, + { + "url": "XPN.13", + "valueString": "2030501102531" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "SUPERMAN", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "Prefix" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Own" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "SpousePrefix" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "Spouse" + } + ] + }, + "given": [ + "GENARO", + "GR" + ], + "prefix": [ + "Sir" + ], + "suffix": [ + "JR", + "Md", + "Dr" + ], + "period": { + "start": "2000-05-01T10:25:31Z" + } + } + ], + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "PRN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.4", + "valueString": "example2@exmaple.com" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.9", + "valueString": "any" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3955" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.5" + } + ], + "system": "phone", + "value": "+1 720 555 3955", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "555" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4672293" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4672293" + }, + { + "url": "XTN.12", + "valueString": "+1 555 467 2294" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.6" + } + ], + "system": "phone", + "value": "+1 555 467 2294", + "use": "work" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3955" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.31" + } + ], + "system": "phone", + "value": "+1 720 555 3955", + "use": "work" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "314" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553131" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "VHN" + }, + { + "url": "XTN.3", + "valueString": "SAT" + }, + { + "url": "XTN.7", + "valueString": "5553131" + }, + { + "url": "XTN.12", + "valueString": "+1 314 555 3132" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.40" + } + ], + "system": "other", + "value": "+1 314 555 3132" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "281" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5558181" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "AWN" + }, + { + "url": "XTN.3", + "valueString": "FX" + }, + { + "url": "XTN.7", + "valueString": "5558181" + }, + { + "url": "XTN.12", + "valueString": "+1 281 555 8182" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.41" + } + ], + "system": "fax", + "value": "+1 281 555 8182" + } + ], + "gender": "unknown", + "_gender": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nk1-15-administrative-sex", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70001" + } + ], + "code": "N", + "display": "Not Applicable" + } + ] + } + } + ] + }, + "birthDate": "1986-05-05", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE" + ], + "city": "THUNDER MOUNTAIN", + "state": "IG", + "postalCode": "99999", + "country": "USA" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "12" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.32" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.2", + "valueString": "#B" + }, + { + "url": "XAD.7", + "valueCode": "H" + }, + { + "url": "XAD.8", + "valueString": "World" + }, + { + "url": "XAD.11", + "valueCode": "8" + }, + { + "url": "XAD.12", + "extension": [ + { + "url": "XAD.12.1", + "valueString": "2017" + }, + { + "url": "XAD.12.2", + "valueString": "2025" + } + ] + }, + { + "url": "XAD.13", + "valueString": "2020" + }, + { + "url": "XAD.14", + "valueString": "2021" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE", + "#B" + ], + "city": "AURORA", + "district": "King", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2020", + "end": "2021" + } + } + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20220501102531-0400" + } + ] + }, + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" + } + ] + } + }, + "communication": [ + { + "language": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70296" + } + ], + "code": "E", + "display": "English" + } + ] + } + } + ] + } + }, + { + "fullUrl": "Organization/1731704146973915000.7d915b7e-b1c4-4fa5-9afe-5883e02bd48c", + "resource": { + "resourceType": "Organization", + "id": "1731704146973915000.7d915b7e-b1c4-4fa5-9afe-5883e02bd48c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "112233" + }, + { + "url": "XON.10", + "valueString": "HRU" + } + ] + } + ], + "identifier": [ + { + "value": "HRU" + } + ], + "name": "HospitalsRUs" + } + }, + { + "fullUrl": "Encounter/1731704146993830000.c7fb2291-5b17-4035-a2d1-7ccc15e57a65", + "resource": { + "resourceType": "Encounter", + "id": "1731704146993830000.c7fb2291-5b17-4035-a2d1-7ccc15e57a65", + "meta": { + "security": [ + { + "code": "SEC" + } + ] + }, + "text": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-visit-description", + "valueString": "Description" + } + ], + "div": "\u003cdiv xmlns\u003d\"http://www.w3.org/1999/xhtml\"\u003eDescription\u003c/div\u003e" + }, + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "413", + "display": "V" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "423", + "display": "X" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-start-date", + "valueDateTime": "2023-06-01T10:25:31-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230601102531-0400" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-discharge-date", + "valueDateTime": "2023-07-01T10:25:31-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230701102531-0400" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/estimated-length", + "valueQuantity": { + "value": 5, + "unit": "days", + "system": "http://unitsofmeasure.org/", + "code": "d" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/publicity-code", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "100", + "display": "PublicCode" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "444", + "display": "MODE" + } + ] + } + } + ], + "code": "444", + "display": "MODE" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/admission-level-of-care", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "123", + "display": "CARELEVEL1" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit", + "extension": [ + { + "url": "PV1.12", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70087" + } + ], + "code": "P", + "display": "Passed" + } + ] + } + }, + { + "url": "PV1.18", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70018" + } + ], + "code": "H", + "display": "Human Patient" + } + ] + } + }, + { + "url": "PV1.46", + "valueDecimal": 100 + }, + { + "url": "PV1.47", + "valueDecimal": 199 + }, + { + "url": "PV1.48", + "valueDecimal": 142 + }, + { + "url": "PV1.49", + "valueDecimal": 130 + }, + { + "url": "PV1.51", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70326" + } + ], + "code": "A", + "display": "Account Level" + } + ] + } + }, + { + "url": "PV1.30", + "valueString": "20020101" + }, + { + "url": "PV1.31", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70021" + } + ], + "code": "C", + "display": "Collectors" + } + ] + } + }, + { + "url": "PV1.32", + "valueDecimal": 1 + }, + { + "url": "PV1.33", + "valueDecimal": 0 + }, + { + "url": "PV1.34", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70111" + } + ], + "code": "Y", + "display": "Yes" + } + ] + } + }, + { + "url": "PV1.35", + "valueString": "20080101" + }, + { + "url": "PV1.39", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70115" + } + ], + "code": "H", + "display": "A Hospital Of Course" + } + ] + } + }, + { + "url": "PV1.41", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70117" + } + ], + "code": "A", + "display": "Active" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-patient-visit-additional-information", + "extension": [ + { + "url": "PV2.15", + "valueString": "EMP_ILL" + }, + { + "url": "PV2.23", + "valueReference": { + "reference": "Organization/1731704146983846000.c2a5c6c0-1a3d-4e95-8df5-3100d4c9b5a4" + } + }, + { + "url": "PV2.23", + "valueReference": { + "reference": "Organization/1731704146984398000.728534c3-842b-4bc8-980d-3805d84563a1" + } + }, + { + "url": "PV2.26", + "valueString": "20230501102531-0400" + }, + { + "url": "PV2.29", + "valueString": "20220501102531-0400" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.19" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "VN" + } + ], + "text": "visit number" + }, + "value": "22" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.50" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203" + } + ] + }, + "value": "alternate visit" + } + ], + "status": "finished", + "class": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "O" + } + ] + } + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70007" + } + ], + "code": "R", + "display": "Routine" + } + ] + } + ], + "serviceType": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70069" + } + ], + "code": "URO", + "display": "Urology Service" + } + ] + }, + "priority": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70217" + } + ], + "code": "3", + "display": "Elective" + } + ] + }, + "subject": { + "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + }, + "episodeOfCare": [ + { + "reference": "EpisodeOfCare/1731704146994097000.c66a4598-85ee-4708-855d-2e8e1f36b8b6" + } + ], + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ATND", + "display": "attender" + } + ] + } + ], + "individual": { + "reference": "Practitioner/1731704146986032000.712990c4-6b7d-4da8-ad40-d5a3389e5344" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ATND", + "display": "attender" + } + ] + } + ], + "individual": { + "reference": "Practitioner/1731704146986497000.32ae08ba-45d9-416d-a001-b21d0d2f7c15" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "REF" + } + ], + "text": "referrer" + } + ], + "individual": { + "reference": "Practitioner/1731704146986852000.8d34afbe-1dd5-4274-9005-0ce0d548b629" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "REF" + } + ], + "text": "referrer" + } + ], + "individual": { + "reference": "Practitioner/1731704146987129000.6523929d-ca09-4ff9-ac05-cc461311a41d" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "CON" + } + ], + "text": "consultant" + } + ], + "individual": { + "reference": "Practitioner/1731704146987422000.11a78c59-598d-4c7f-bad6-994df2df91b7" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "CON" + } + ], + "text": "consultant" + } + ], + "individual": { + "reference": "Practitioner/1731704146987702000.2df77fa7-838f-4862-bbd0-51bb49ad0ce9" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ADM" + } + ], + "text": "admitter" + } + ], + "individual": { + "reference": "Practitioner/1731704146987996000.d21f4d5f-7b4a-4c44-b887-1ddefa68fcc0" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ADM" + } + ], + "text": "admitter" + } + ], + "individual": { + "reference": "Practitioner/1731704146988282000.3359adbc-591c-48a0-879e-8cd18d87a47d" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "REF" + } + ], + "text": "referrer" + } + ], + "individual": { + "reference": "Practitioner/1731704146989589000.75a59674-da55-4d0c-a14f-d64db9d2a35c" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "REF" + } + ], + "text": "referrer" + } + ], + "individual": { + "reference": "Practitioner/1731704146990909000.97e56863-8c1a-48dd-a0cf-080d99ffdbb8" + } + } + ], + "period": { + "start": "2024-08-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20240801102531-0400" + } + ] + }, + "end": "2024-08-01T10:25:31-04:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20240801102531-0400" + } + ] + } + }, + "length": { + "value": 12, + "unit": "days", + "system": "http://unitsofmeasure.org/", + "code": "d" + }, + "reasonCode": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV2.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "1", + "display": "AD" + } + ] + } + ], + "hospitalization": { + "preAdmissionIdentifier": { + "value": "232323" + }, + "admitSource": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70023" + } + ], + "code": "RL", + "display": "Real Life" + } + ] + }, + "reAdmission": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70092" + } + ], + "code": "R", + "display": "Re-admission" + } + ] + }, + "dietPreference": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70114" + } + ], + "code": "F", + "display": "Fed" + } + ] + } + ], + "specialCourtesy": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70099" + } + ], + "code": "VIP", + "display": "Very Interesting Person" + } + ] + } + ], + "destination": { + "reference": "Location/1731704146984679000.0fd65c20-79a6-42bc-bbe3-5b1f7789a735" + }, + "dischargeDisposition": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70112" + } + ], + "code": "H", + "display": "Happy" + } + ] + } + }, + "location": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.3" + } + ], + "location": { + "reference": "Location/1731704146992320000.d4e4b37a-aebe-46cc-ae39-bc5a9ddaa7a3" + }, + "status": "active" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.6" + } + ], + "location": { + "reference": "Location/1731704146992812000.2af3d22d-3579-43c7-ad5a-5129c6df48c4" + }, + "status": "completed" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.11" + }, + { + "url": "https://hl7.org/fhir/StructureDefinition/temporary-location", + "valueBoolean": true + } + ], + "location": { + "reference": "Location/1731704146992983000.1ea5db9f-19ad-42a0-85f3-88de0164a0bb" + }, + "status": "active" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.42" + } + ], + "location": { + "reference": "Location/1731704146993131000.13e8d471-a874-48b2-866f-f797b0a42832" + }, + "status": "planned" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.43" + }, + { + "url": "https://hl7.org/fhir/StructureDefinition/temporary-location", + "valueBoolean": true + } + ], + "location": { + "reference": "Location/1731704146993297000.d48f5551-9c09-444e-b13c-7877b91e1751" + }, + "status": "completed" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV2.1" + }, + { + "url": "https://hl7.org/fhir/StructureDefinition/temporary-location", + "valueBoolean": false + } + ], + "location": { + "reference": "Location/1731704146993768000.ec3b7add-0155-4c09-aa68-59e53e8987d5" + }, + "status": "planned" + } + ] + } + }, + { + "fullUrl": "Location/1731704146983456000.3e0dcf7b-7ed0-4a2e-a4a1-5fe26f22d7f5", + "resource": { + "resourceType": "Location", + "id": "1731704146983456000.3e0dcf7b-7ed0-4a2e-a4a1-5fe26f22d7f5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146983846000.c2a5c6c0-1a3d-4e95-8df5-3100d4c9b5a4", + "resource": { + "resourceType": "Organization", + "id": "1731704146983846000.c2a5c6c0-1a3d-4e95-8df5-3100d4c9b5a4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146983456000.3e0dcf7b-7ed0-4a2e-a4a1-5fe26f22d7f5" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "123" + } + ], + "name": "Org1" + } + }, + { + "fullUrl": "Location/1731704146984077000.340e3d9e-bc18-4705-a666-edbdaabdc170", + "resource": { + "resourceType": "Location", + "id": "1731704146984077000.340e3d9e-bc18-4705-a666-edbdaabdc170", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731704146984398000.728534c3-842b-4bc8-980d-3805d84563a1", + "resource": { + "resourceType": "Organization", + "id": "1731704146984398000.728534c3-842b-4bc8-980d-3805d84563a1", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704146984077000.340e3d9e-bc18-4705-a666-edbdaabdc170" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "123" + } + ], + "name": "Org2" + } + }, + { + "fullUrl": "Location/1731704146984679000.0fd65c20-79a6-42bc-bbe3-5b1f7789a735", + "resource": { + "resourceType": "Location", + "id": "1731704146984679000.0fd65c20-79a6-42bc-bbe3-5b1f7789a735", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date", + "valueString": "202305061200" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146986032000.712990c4-6b7d-4da8-ad40-d5a3389e5344", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146986032000.712990c4-6b7d-4da8-ad40-d5a3389e5344", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "B" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.7" + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "Namespace", + "value": "1" + } + ], + "name": [ + { + "use": "official", + "family": "BEETHOVEN", + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146986497000.32ae08ba-45d9-416d-a001-b21d0d2f7c15", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146986497000.32ae08ba-45d9-416d-a001-b21d0d2f7c15", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "B" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.7" + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "Namespace", + "value": "1" + } + ], + "name": [ + { + "use": "official", + "family": "BEETHOVEN2", + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146986852000.8d34afbe-1dd5-4274-9005-0ce0d548b629", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146986852000.8d34afbe-1dd5-4274-9005-0ce0d548b629", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.8" + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "MOZART" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146987129000.6523929d-ca09-4ff9-ac05-cc461311a41d", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146987129000.6523929d-ca09-4ff9-ac05-cc461311a41d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.8" + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "MOZARTJR" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146987422000.11a78c59-598d-4c7f-bad6-994df2df91b7", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146987422000.11a78c59-598d-4c7f-bad6-994df2df91b7", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.9" + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "CHOPIN" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146987702000.2df77fa7-838f-4862-bbd0-51bb49ad0ce9", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146987702000.2df77fa7-838f-4862-bbd0-51bb49ad0ce9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.9" + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "CHOPINSR" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146987996000.d21f4d5f-7b4a-4c44-b887-1ddefa68fcc0", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146987996000.d21f4d5f-7b4a-4c44-b887-1ddefa68fcc0", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.17" + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "BACH" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146988282000.3359adbc-591c-48a0-879e-8cd18d87a47d", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146988282000.3359adbc-591c-48a0-879e-8cd18d87a47d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.17" + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "BACHtheSecond" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146989589000.75a59674-da55-4d0c-a14f-d64db9d2a35c", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146989589000.75a59674-da55-4d0c-a14f-d64db9d2a35c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.20", + "valueString": "20230501102531-0400" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignJ" + } + ] + } + }, + { + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignA" + } + ] + } + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + }, + { + "url": "XCN.19", + "valueString": "20220501102531-0400" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV2.13" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "BEETHOVEN", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Referral Source Code1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704146990909000.97e56863-8c1a-48dd-a0cf-080d99ffdbb8", + "resource": { + "resourceType": "Practitioner", + "id": "1731704146990909000.97e56863-8c1a-48dd-a0cf-080d99ffdbb8", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.20", + "valueString": "20230501102531-0400" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignJ" + } + ] + } + }, + { + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignA" + } + ] + } + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + }, + { + "url": "XCN.19", + "valueString": "20220501102531-0400" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV2.13" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "BEETHOVEN", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Referral Source Code2" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" + } + } + ] + } + }, + { + "fullUrl": "Organization/1731704146991148000.518f3c57-8c13-44f3-9904-6825cfa52e0d", + "resource": { + "resourceType": "Organization", + "id": "1731704146991148000.518f3c57-8c13-44f3-9904-6825cfa52e0d", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "AA" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "AssigningAUTH" + } + ] + } + }, + { + "fullUrl": "Location/1731704146991919000.5f9680ec-7d3d-4b74-98ba-b01ef9c1b2fa", + "resource": { + "resourceType": "Location", + "id": "1731704146991919000.5f9680ec-7d3d-4b74-98ba-b01ef9c1b2fa", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Hospital Assigned" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "ISO" + } + ] + }, + "value": "2.4.4.4" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Location/1731704146991986000.cf5aa076-c86f-4001-819d-fa0057ed2af1", + "resource": { + "resourceType": "Location", + "id": "1731704146991986000.cf5aa076-c86f-4001-819d-fa0057ed2af1", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "value": "Building" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" + } + ] + }, + "partOf": { + "reference": "Location/1731704146991919000.5f9680ec-7d3d-4b74-98ba-b01ef9c1b2fa" + } + } + }, + { + "fullUrl": "Location/1731704146992052000.e73267b5-4a21-4ef2-85db-e02027dbe7d5", + "resource": { + "resourceType": "Location", + "id": "1731704146992052000.e73267b5-4a21-4ef2-85db-e02027dbe7d5", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "value": "Floor" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" + } + ] + }, + "partOf": { + "reference": "Location/1731704146991986000.cf5aa076-c86f-4001-819d-fa0057ed2af1" + } + } + }, + { + "fullUrl": "Location/1731704146992126000.90701bc6-6771-4cb1-97fd-921dd16eb890", + "resource": { + "resourceType": "Location", + "id": "1731704146992126000.90701bc6-6771-4cb1-97fd-921dd16eb890", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "A" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "C" + } + ] + }, + "value": "Point OF Care" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] + }, + "partOf": { + "reference": "Location/1731704146992052000.e73267b5-4a21-4ef2-85db-e02027dbe7d5" + } + } + }, + { + "fullUrl": "Location/1731704146992190000.9e41dae0-39cf-4a64-a617-f8fe5c73f015", + "resource": { + "resourceType": "Location", + "id": "1731704146992190000.9e41dae0-39cf-4a64-a617-f8fe5c73f015", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "1" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "3" + } + ] + }, + "value": "Room" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" + } + ] + }, + "partOf": { + "reference": "Location/1731704146992126000.90701bc6-6771-4cb1-97fd-921dd16eb890" + } + } + }, + { + "fullUrl": "Location/1731704146992320000.d4e4b37a-aebe-46cc-ae39-bc5a9ddaa7a3", + "resource": { + "resourceType": "Location", + "id": "1731704146992320000.d4e4b37a-aebe-46cc-ae39-bc5a9ddaa7a3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString": "R" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "B" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "A" + } + ] + }, + "value": "Bed" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "UID4This" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString": "organization" + } + ], + "value": "Comprehensive", + "assigner": { + "reference": "Organization/1731704146991148000.518f3c57-8c13-44f3-9904-6825cfa52e0d" + } + } + ], + "description": "Totally A Real Location", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" + } + ] + }, + "partOf": { + "reference": "Location/1731704146992190000.9e41dae0-39cf-4a64-a617-f8fe5c73f015" + } + } + }, + { + "fullUrl": "Organization/1731704146992571000.0b07af73-5d6a-44ff-8b77-535af69d2510", + "resource": { + "resourceType": "Organization", + "id": "1731704146992571000.0b07af73-5d6a-44ff-8b77-535af69d2510", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "ASSIGNEE" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "UUID" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "222.1111.22222" + } + ] + } + }, + { + "fullUrl": "Location/1731704146992812000.2af3d22d-3579-43c7-ad5a-5129c6df48c4", + "resource": { + "resourceType": "Location", + "id": "1731704146992812000.2af3d22d-3579-43c7-ad5a-5129c6df48c4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString": "location type" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Hospital Prio" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "ISO" + } + ] + }, + "value": "2.4.4.4" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NAME" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "UNI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString": "organization" + } + ], + "value": "Entity ID", + "assigner": { + "reference": "Organization/1731704146992571000.0b07af73-5d6a-44ff-8b77-535af69d2510" + } + } + ], + "status": "active", + "description": "Description", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Location/1731704146992983000.1ea5db9f-19ad-42a0-85f3-88de0164a0bb", + "resource": { + "resourceType": "Location", + "id": "1731704146992983000.1ea5db9f-19ad-42a0-85f3-88de0164a0bb", + "description": "Its Temporary", + "mode": "instance" + } + }, + { + "fullUrl": "Location/1731704146993131000.13e8d471-a874-48b2-866f-f797b0a42832", + "resource": { + "resourceType": "Location", + "id": "1731704146993131000.13e8d471-a874-48b2-866f-f797b0a42832", + "description": "Pending Location", + "mode": "instance" + } + }, + { + "fullUrl": "Location/1731704146993297000.d48f5551-9c09-444e-b13c-7877b91e1751", + "resource": { + "resourceType": "Location", + "id": "1731704146993297000.d48f5551-9c09-444e-b13c-7877b91e1751", + "description": "Prior Location", + "mode": "instance" + } + }, + { + "fullUrl": "Organization/1731704146993531000.674ed08e-da69-442c-86a5-23e0cab6ab84", + "resource": { + "resourceType": "Organization", + "id": "1731704146993531000.674ed08e-da69-442c-86a5-23e0cab6ab84", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "ASSIGNEE" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "UUID" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "222.1111.22222" + } + ] + } + }, + { + "fullUrl": "Location/1731704146993768000.ec3b7add-0155-4c09-aa68-59e53e8987d5", + "resource": { + "resourceType": "Location", + "id": "1731704146993768000.ec3b7add-0155-4c09-aa68-59e53e8987d5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString": "location type" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Hospital PriorPending" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "ISO" + } + ] + }, + "value": "2.4.4.4" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NAME" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "UNI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString": "organization" + } + ], + "value": "Entity ID", + "assigner": { + "reference": "Organization/1731704146993531000.674ed08e-da69-442c-86a5-23e0cab6ab84" + } + } + ], + "status": "active", + "description": "Description", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] } - } ], - "sender" : { - "reference" : "Organization/1727135930620601000.05235529-b10d-4f85-bbe9-06217bcf4426" - }, - "source" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "OrderingFacilityApplicationName" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.XXX" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.3" - } ], - "software" : "STARLIMS", - "version" : "ELIMS V11", - "endpoint" : "urn:oid:2.16.840.1.114222.XXX" } - } - }, { - "fullUrl" : "Organization/1727135930620601000.05235529-b10d-4f85-bbe9-06217bcf4426", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930620601000.05235529-b10d-4f85-bbe9-06217bcf4426", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "OrderingFacilityName" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.XXX" - } ], - "address" : [ { - "country" : "FR" - } ] - } - }, { - "fullUrl" : "Organization/1727135930638288000.038501ce-626b-4f0d-8a9a-7a46cdb420ce", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930638288000.038501ce-626b-4f0d-8a9a-7a46cdb420ce", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.6" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "txdshslab" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.181960" - } ] - } - }, { - "fullUrl" : "Provenance/1727135930871635000.471524a6-276e-48aa-aa33-efe75f8a5f6d", - "resource" : { - "resourceType" : "Provenance", - "id" : "1727135930871635000.471524a6-276e-48aa-aa33-efe75f8a5f6d", - "recorded" : "2019-07-20T09:12:29Z", - "activity" : { - "coding" : [ { - "display" : "OML^O21^OML_O21" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "author" - } ] - }, - "who" : { - "reference" : "Organization/1727135930871009000.25aba881-d8f0-4f2b-8d12-9f1030b2534b" - } - } ], - "entity" : [ { - "role" : "source", - "what" : { - "reference" : "Device/1727135930875182000.363e2287-9747-47e9-85c9-0878a8db1129" - } - } ] - } - }, { - "fullUrl" : "Organization/1727135930871009000.25aba881-d8f0-4f2b-8d12-9f1030b2534b", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930871009000.25aba881-d8f0-4f2b-8d12-9f1030b2534b", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "OrderingFacilityName" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.XXX" - } ] - } - }, { - "fullUrl" : "Location/1727135930874477000.36e5b40e-9225-40c5-bc29-9bce5a381526", - "resource" : { - "resourceType" : "Location", - "id" : "1727135930874477000.36e5b40e-9225-40c5-bc29-9bce5a381526", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.8121.1.113883.9.11" - } ], - "name" : "Hospital C", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "fullUrl": "EpisodeOfCare/1731704146994097000.c66a4598-85ee-4708-855d-2e8e1f36b8b6", + "resource": { + "resourceType": "EpisodeOfCare", + "id": "1731704146994097000.c66a4598-85ee-4708-855d-2e8e1f36b8b6", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.54" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/episode-of-care-name", + "valueString": "Service Description" + } + ], + "identifier": [ + { + "value": "episode identifier" + } + ] + } + }, + { + "fullUrl": "Observation/1731704147162570000.349f1ee4-3af5-4488-a631-4a1051f73265", + "resource": { + "resourceType": "Observation", + "id": "1731704147162570000.349f1ee4-3af5-4488-a631-4a1051f73265", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "subid" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test", + "valueId": "ST" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2023-09-12T18:08:02-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230912180802-0400" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "30" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "g", + "display": "gram" + } + ] + } + }, + { + "url": "OBX.27", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79900" + } + ], + "code": "RC", + "display": "root cause" + } + ] + } + }, + { + "url": "OBX.28", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79900" + } + ], + "code": "LPC", + "display": "Local Process" + } + ] + } + }, + { + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.31", + "valueId": "31" + }, + { + "url": "OBX.32", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "32", + "display": "value absent reason" + } + ] + } + }, + { + "url": "OBX.33", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "eip" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "33" + } + }, + { + "url": "OBX.9", + "valueString": "99" + }, + { + "url": "OBX.11", + "valueString": "F" + }, + { + "url": "OBX.12", + "valueString": "20000101" + }, + { + "url": "OBX.13", + "valueString": "user defined" + }, + { + "url": "OBX.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2" + } + ] + } + }, + { + "url": "OBX.18", + "valueReference": { + "reference": "Device/1731704147160990000.405e2064-9f17-44e3-8ab8-5b256cd640d5" + } + }, + { + "url": "OBX.20", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "BE", + "display": "Bilateral Ears" + } + ] + } + }, + { + "url": "OBX.26", + "valueId": "26" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.21" + } + ], + "type": { + "coding": [ + { + "code": "FILL" + } + ] + }, + "value": "entity id" + } + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "80383-2", + "display": "Flu A" + } + ] + }, + "subject": { + "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + }, + "encounter": { + "reference": "Encounter/1731704146993830000.c7fb2291-5b17-4035-a2d1-7ccc15e57a65" + }, + "effectiveDateTime": "2023-01-01T00:00:00Z", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230101000000" + } + ] + }, + "performer": [ + { + "reference": "Organization/1731704147162875000.6908a5eb-d000-4541-92b1-e3f85320dfc2" + }, + { + "reference": "PractitionerRole/1731704147162992000.018f7b75-4ec6-4227-a3ff-7d874c6e5e3c" + }, + { + "reference": "PractitionerRole/1731704147163384000.fe838dae-1a49-4c35-9cd4-4e9acc0d6954" + } + ], + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "code": "260415000", + "display": "Not detected" + } + ] + }, + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "UP", + "display": "Up to you" + } + ] + } + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230212" + }, + { + "url": "NTE.8", + "valueString": "20230213" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "This is a coded comment for an observation note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "OBX Note" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "RE", + "display": "Remark" + } + ] + } + } + ], + "authorReference": { + "reference": "Practitioner/1731704147164734000.6e86960d-7ce5-46ce-b232-32e1f2d869cb" + }, + "time": "2023-02-11", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230211" + } + ] + }, + "text": "OBX Note" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230212" + }, + { + "url": "NTE.8", + "valueString": "20230213" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "This is a coded comment for an observation note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "OBX Note 2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "RE", + "display": "Remark" + } + ] + } + } + ], + "authorReference": { + "reference": "Practitioner/1731704147165326000.bd6acfa1-61d9-409f-9230-2a78641a0f72" + }, + "time": "2023-02-11", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230211" + } + ] + }, + "text": "OBX Note 2" + } + ], + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "BE", + "display": "Bilateral Ears" + } + ] + }, + "method": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2" + } + ] + }, + "device": { + "reference": "Device/1731704147166017000.d896f77b-dd98-422d-a712-7a4836543c2d" + }, + "referenceRange": [ + { + "text": "range of a few" + } + ] + } + }, + { + "fullUrl": "Device/1731704147160990000.405e2064-9f17-44e3-8ab8-5b256cd640d5", + "resource": { + "resourceType": "Device", + "id": "1731704147160990000.405e2064-9f17-44e3-8ab8-5b256cd640d5", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPTRDEV-001" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.17.840" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Device 001" + } + ] + } + }, + { + "fullUrl": "Organization/1731704147162875000.6908a5eb-d000-4541-92b1-e3f85320dfc2", + "resource": { + "resourceType": "Organization", + "id": "1731704147162875000.6908a5eb-d000-4541-92b1-e3f85320dfc2", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "CLIA" + } + ], + "code": "11D1111111", + "display": "CSV uploads" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "CLIA", + "value": "11D1111111" + } + ], + "name": "CSV uploads" + } + }, + { + "fullUrl": "Practitioner/1731704147163259000.658fcd14-05f8-4ce9-b2e3-02892a4090ad", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147163259000.658fcd14-05f8-4ce9-b2e3-02892a4090ad", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Quinlen" + } + ] + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Frances", + "given": [ + "Quinlen" + ] + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731704147162992000.018f7b75-4ec6-4227-a3ff-7d874c6e5e3c", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731704147162992000.018f7b75-4ec6-4227-a3ff-7d874c6e5e3c", + "practitioner": { + "reference": "Practitioner/1731704147163259000.658fcd14-05f8-4ce9-b2e3-02892a4090ad" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/practitioner-role", + "code": "responsibleObserver" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147163668000.6fb4c171-b74f-416b-a184-d07bfa5d26d9", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147163668000.6fb4c171-b74f-416b-a184-d07bfa5d26d9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Quinlen" + } + ] + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Mark", + "given": [ + "Quinlen" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1731704147164107000.590658fa-0dd1-4426-ad4e-f0feb03c6839", + "resource": { + "resourceType": "Organization", + "id": "1731704147164107000.590658fa-0dd1-4426-ad4e-f0feb03c6839", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "11D1111111" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CLIA" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.7" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "11D1111111" + } + ], + "name": "CSV uploads-11D1111111", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "2 Second Dr" + } + ] + } + ] + } + ], + "line": [ + "2 Second Dr" + ], + "state": "IG", + "postalCode": "94553", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731704147163384000.fe838dae-1a49-4c35-9cd4-4e9acc0d6954", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731704147163384000.fe838dae-1a49-4c35-9cd4-4e9acc0d6954", + "practitioner": { + "reference": "Practitioner/1731704147163668000.6fb4c171-b74f-416b-a184-d07bfa5d26d9" + }, + "organization": { + "reference": "Organization/1731704147164107000.590658fa-0dd1-4426-ad4e-f0feb03c6839" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147164734000.6e86960d-7ce5-46ce-b232-32e1f2d869cb", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147164734000.6e86960d-7ce5-46ce-b232-32e1f2d869cb", + "identifier": [ + { + "value": "Bob R.N.A." + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147165326000.bd6acfa1-61d9-409f-9230-2a78641a0f72", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147165326000.bd6acfa1-61d9-409f-9230-2a78641a0f72", + "identifier": [ + { + "value": "Bob R.N.A." + } + ] + } + }, + { + "fullUrl": "Device/1731704147166017000.d896f77b-dd98-422d-a712-7a4836543c2d", + "resource": { + "resourceType": "Device", + "id": "1731704147166017000.d896f77b-dd98-422d-a712-7a4836543c2d", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPTRDEV-001" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.17.840" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Device 001" + } + ] + } + }, + { + "fullUrl": "Observation/1731704147168198000.1c632d99-c9e4-4105-929e-424341cb702f", + "resource": { + "resourceType": "Observation", + "id": "1731704147168198000.1c632d99-c9e4-4105-929e-424341cb702f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "subid" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test", + "valueId": "ST" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test", + "valueId": "SP" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2023-09-12T18:08:02-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230912180802-0400" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "30" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "g", + "display": "gram" + } + ] + } + }, + { + "url": "OBX.27", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79900" + } + ], + "code": "RC", + "display": "root cause" + } + ] + } + }, + { + "url": "OBX.28", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79900" + } + ], + "code": "LPC", + "display": "Local Process" + } + ] + } + }, + { + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.31", + "valueId": "31" + }, + { + "url": "OBX.32", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "32", + "display": "value absent reason" + } + ] + } + }, + { + "url": "OBX.33", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "eip" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "33" + } + }, + { + "url": "OBX.9", + "valueString": "99" + }, + { + "url": "OBX.11", + "valueString": "F" + }, + { + "url": "OBX.12", + "valueString": "20000101" + }, + { + "url": "OBX.13", + "valueString": "user defined" + }, + { + "url": "OBX.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2" + } + ] + } + }, + { + "url": "OBX.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "display": "Eye Test" + } + ] + } + }, + { + "url": "OBX.18", + "valueReference": { + "reference": "Device/1731704147167337000.9174c4a7-c8f4-450c-b6dd-cafc1b371187" + } + }, + { + "url": "OBX.18", + "valueReference": { + "reference": "Device/1731704147167467000.42323ac3-be59-4bce-a1b6-4d4140e7e0b8" + } + }, + { + "url": "OBX.20", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "BE", + "display": "Bilateral Ears" + } + ] + } + }, + { + "url": "OBX.20", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "SE", + "display": "Single Ears" + } + ] + } + }, + { + "url": "OBX.26", + "valueId": "26" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.21" + } + ], + "type": { + "coding": [ + { + "code": "FILL" + } + ] + }, + "value": "entity id" + } + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", + "valueCoding": { + "system": "SNOMEDCT", + "code": "6142004", + "display": "Influenza (disorder)" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", + "valueCoding": { + "system": "SNOMEDCT", + "code": "6142004", + "display": "Influenza (disorder)" + } + } + ], + "system": "http://loinc.org", + "code": "80383-3", + "display": "Flu B" + } + ] + }, + "subject": { + "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + }, + "encounter": { + "reference": "Encounter/1731704146993830000.c7fb2291-5b17-4035-a2d1-7ccc15e57a65" + }, + "effectiveDateTime": "2023-01-01T00:00:00Z", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230101000000" + } + ] + }, + "performer": [ + { + "reference": "Organization/1731704147168467000.9f1395e7-3391-4559-a9b6-a421a5906d9f" + }, + { + "reference": "PractitionerRole/1731704147168573000.4eb05911-8ff2-4204-aca7-72f82783ce5e" + }, + { + "reference": "PractitionerRole/1731704147168960000.ab9f6b8d-685e-40f8-926e-f7ca864ad9c2" + }, + { + "reference": "PractitionerRole/1731704147169334000.416da949-98e9-4c53-a37a-8877d65dc889" + } + ], + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "code": "260415000", + "display": "Not detected" + } + ] + }, + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "UP", + "display": "Up to you" + } + ] + }, + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "UP", + "display": "Up to you too" + } + ] + } + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230222" + }, + { + "url": "NTE.8", + "valueString": "20230223" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "Th1is is a coded comment for an observation note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "OBX Note 3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "RE", + "display": "Remark" + } + ] + } + } + ], + "authorReference": { + "reference": "Practitioner/1731704147170643000.aa0d8682-8f0b-4e83-ac00-3ea13bb9a10b" + }, + "time": "2023-02-21", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230221" + } + ] + }, + "text": "OBX Note 3" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230222" + }, + { + "url": "NTE.8", + "valueString": "20230223" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "This is a coded comment for an observation note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "OBX Note 4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "RE", + "display": "Remark" + } + ] + } + } + ], + "authorReference": { + "reference": "Practitioner/1731704147171234000.932d85c8-4a1c-4f5b-857d-86b61535f2d8" + }, + "time": "2023-02-21", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230221" + } + ] + }, + "text": "OBX Note 4" + } + ], + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "BE", + "display": "Bilateral Ears" + } + ] + }, + "method": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2" + } + ] + }, + "device": { + "reference": "Device/1731704147171938000.cb4532b3-e006-4f9e-8d37-45a5d613f4f2" + }, + "referenceRange": [ + { + "text": "range of a few" + } + ] + } + }, + { + "fullUrl": "Device/1731704147167337000.9174c4a7-c8f4-450c-b6dd-cafc1b371187", + "resource": { + "resourceType": "Device", + "id": "1731704147167337000.9174c4a7-c8f4-450c-b6dd-cafc1b371187", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPTRDEV-001" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.17.840" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Device 001" + } + ] + } + }, + { + "fullUrl": "Device/1731704147167467000.42323ac3-be59-4bce-a1b6-4d4140e7e0b8", + "resource": { + "resourceType": "Device", + "id": "1731704147167467000.42323ac3-be59-4bce-a1b6-4d4140e7e0b8", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPTRDEV-001" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.17.840" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Device 002" + } + ] + } + }, + { + "fullUrl": "Organization/1731704147168467000.9f1395e7-3391-4559-a9b6-a421a5906d9f", + "resource": { + "resourceType": "Organization", + "id": "1731704147168467000.9f1395e7-3391-4559-a9b6-a421a5906d9f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "CLIA" + } + ], + "code": "11D1111111", + "display": "CSV uploads" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "CLIA", + "value": "11D1111111" + } + ], + "name": "CSV uploads" + } + }, + { + "fullUrl": "Practitioner/1731704147168839000.d2b649f5-d25a-4cd3-ac11-b5b19683e132", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147168839000.d2b649f5-d25a-4cd3-ac11-b5b19683e132", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Quinlen" + } + ] + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Frances", + "given": [ + "Quinlen" + ] + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731704147168573000.4eb05911-8ff2-4204-aca7-72f82783ce5e", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731704147168573000.4eb05911-8ff2-4204-aca7-72f82783ce5e", + "practitioner": { + "reference": "Practitioner/1731704147168839000.d2b649f5-d25a-4cd3-ac11-b5b19683e132" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/practitioner-role", + "code": "responsibleObserver" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147169216000.06ff7b28-3a7e-4247-98e1-6c1abd6a4bf3", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147169216000.06ff7b28-3a7e-4247-98e1-6c1abd6a4bf3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Quinlen" + } + ] + } + ], + "identifier": [ + { + "value": "2" + } + ], + "name": [ + { + "family": "France", + "given": [ + "Quinlen" + ] + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731704147168960000.ab9f6b8d-685e-40f8-926e-f7ca864ad9c2", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731704147168960000.ab9f6b8d-685e-40f8-926e-f7ca864ad9c2", + "practitioner": { + "reference": "Practitioner/1731704147169216000.06ff7b28-3a7e-4247-98e1-6c1abd6a4bf3" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/practitioner-role", + "code": "responsibleObserver" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147169615000.990b559d-6154-4c36-9689-478b7edd9443", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147169615000.990b559d-6154-4c36-9689-478b7edd9443", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Quinlen" + } + ] + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Mark", + "given": [ + "Quinlen" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1731704147170054000.c546001a-ecb4-4f54-95b9-da3cfe09e583", + "resource": { + "resourceType": "Organization", + "id": "1731704147170054000.c546001a-ecb4-4f54-95b9-da3cfe09e583", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "11D1111111" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CLIA" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.7" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "11D1111111" + } + ], + "name": "CSV uploads-11D1111111", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "2 Second Dr" + } + ] + } + ] + } + ], + "line": [ + "2 Second Dr" + ], + "state": "IG", + "postalCode": "94553", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731704147169334000.416da949-98e9-4c53-a37a-8877d65dc889", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731704147169334000.416da949-98e9-4c53-a37a-8877d65dc889", + "practitioner": { + "reference": "Practitioner/1731704147169615000.990b559d-6154-4c36-9689-478b7edd9443" + }, + "organization": { + "reference": "Organization/1731704147170054000.c546001a-ecb4-4f54-95b9-da3cfe09e583" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147170643000.aa0d8682-8f0b-4e83-ac00-3ea13bb9a10b", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147170643000.aa0d8682-8f0b-4e83-ac00-3ea13bb9a10b", + "identifier": [ + { + "value": "Bob R.N.A." + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147171234000.932d85c8-4a1c-4f5b-857d-86b61535f2d8", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147171234000.932d85c8-4a1c-4f5b-857d-86b61535f2d8", + "identifier": [ + { + "value": "Bob R.N.A." + } + ] + } + }, + { + "fullUrl": "Device/1731704147171938000.cb4532b3-e006-4f9e-8d37-45a5d613f4f2", + "resource": { + "resourceType": "Device", + "id": "1731704147171938000.cb4532b3-e006-4f9e-8d37-45a5d613f4f2", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPTRDEV-001" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.17.840" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Device 001" + } + ] + } + }, + { + "fullUrl": "Specimen/1731704147177705000.f3963125-8b94-45a0-9230-a03c2ded1897", + "resource": { + "resourceType": "Specimen", + "id": "1731704147177705000.f3963125-8b94-45a0-9230-a03c2ded1897", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "ID" + } + ] + }, + "receivedTime": "2021-02-02T10:00:00Z", + "_receivedTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202102021000" + } + ] + }, + "collection": { + "collector": { + "reference": "Practitioner/1731704147178849000.28c590b5-b762-4d6a-8f5d-c4d69b256760" + }, + "collectedPeriod": { + "end": "2024-02-20", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20240220" + } + ] + } + }, + "quantity": { + "value": 1771 + }, + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "LN", + "display": "Left Naris" + } + ] + } + }, + "container": [ + { + "additiveCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70371" + } + ], + "code": "BOUIN", + "display": "Bouin\u0027s solution" + } + ] + } + } + ], + "condition": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7" + } + ], + "code": "CMMC", + "display": "Collection Method Modifer Code" + } + ] + } + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "OBR.15.3" + } + ], + "text": "Collection Method" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "4438", + "display": "Collectors Comment" + } + ] + } + } + ], + "text": "4438, Collectors Comment" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "4438", + "display": "Collectors Comment2" + } + ] + } + } + ], + "text": "4438, Collectors Comment2" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147178849000.28c590b5-b762-4d6a-8f5d-c4d69b256760", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147178849000.28c590b5-b762-4d6a-8f5d-c4d69b256760", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "use": "official", + "family": "Collector", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Identifier" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD" + ] + } + ] } - } - }, { - "fullUrl" : "Organization/1727135930875033000.81c92245-69f4-473c-9271-b7d7ce39d086", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930875033000.81c92245-69f4-473c-9271-b7d7ce39d086", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "A" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "789" - }, { - "url" : "XON.10", - "valueString" : "CDC CLIA" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CDC OML SFT" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.9.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1727135930874477000.36e5b40e-9225-40c5-bc29-9bce5a381526" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" - } ] - }, - "value" : "CDC CLIA" - } ], - "name" : "CDC" - } - }, { - "fullUrl" : "Device/1727135930875182000.363e2287-9747-47e9-85c9-0878a8db1129", - "resource" : { - "resourceType" : "Device", - "id" : "1727135930875182000.363e2287-9747-47e9-85c9-0878a8db1129", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", - "valueReference" : { - "reference" : "Organization/1727135930875033000.81c92245-69f4-473c-9271-b7d7ce39d086" - } - } ], - "manufacturer" : "CDC", - "deviceName" : [ { - "name" : "STARLIMS", - "type" : "manufacturer-name" - } ], - "modelNumber" : "Binary ID unknown", - "version" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date", - "valueDateTime" : "2023-08-02T18:08:02-04:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230802180802-0400" - } ] - } - } ], - "value" : "ELIMS V11" - } ], - "note" : [ { - "text" : "testsft5data" - } ] - } - }, { - "fullUrl" : "Provenance/1727135930883545000.b5bd1843-fccb-43b8-b879-694fa02475f5", - "resource" : { - "resourceType" : "Provenance", - "id" : "1727135930883545000.b5bd1843-fccb-43b8-b879-694fa02475f5", - "recorded" : "2024-09-23T16:58:50Z", - "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], - "activity" : { - "coding" : [ { - "code" : "v2-FHIR transformation" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "assembler" - } ] - }, - "who" : { - "reference" : "Organization/1727135930883315000.6b7ca347-919a-470a-90b8-05f237f14e92" - } - } ] - } - }, { - "fullUrl" : "Organization/1727135930883315000.6b7ca347-919a-470a-90b8-05f237f14e92", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930883315000.6b7ca347-919a-470a-90b8-05f237f14e92", - "identifier" : [ { - "value" : "CDC PRIME - Atlanta" - }, { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.237821" - } ] - } - }, { - "fullUrl" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1", - "resource" : { - "resourceType" : "Patient", - "id" : "1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1", - "meta" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", - "valueReference" : { - "reference" : "Organization/1727135930899193000.70e8c785-84fe-49a5-b282-dad0a7e9a77b" - } - } ], - "lastUpdated" : "2024-08-21T11:38:00Z", - "_lastUpdated" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202408211138" - } ] - } - }, - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", - "extension" : [ { - "url" : "PID.8", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "F" - } ] - } - }, { - "url" : "PID.24", - "valueString" : "Y" - }, { - "url" : "PID.30", - "valueString" : "Y" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", - "valueHumanName" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ { - "url" : "XPN.2", - "valueString" : "FHIR" - }, { - "url" : "XPN.3", - "valueString" : "WI" - }, { - "url" : "XPN.7", - "valueString" : "L" - } ] - } ], - "use" : "official", - "family" : "Mind", - "given" : [ "FHIR", "WI" ] - } - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1727135930888864000.e1e5bb89-81ad-4c17-9e52-232d5522088d" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "PI" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" - } ], - "type" : { - "coding" : [ { - "code" : "PI" - } ] - }, - "system" : "STARLIMS.CDC.Stag", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, - "value" : "test" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "PI" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" - } ], - "type" : { - "coding" : [ { - "code" : "PI" - } ] - }, - "system" : "SPHL-000048", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, - "value" : "PID123" - } ], - "name" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ { - "url" : "XPN.2", - "valueString" : "HL7" - }, { - "url" : "XPN.3", - "valueString" : "MI" - }, { - "url" : "XPN.7", - "valueString" : "L" - } ] - } ], - "use" : "official", - "family" : "Mega", - "given" : [ "HL7", "MI" ] - } ], - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "713" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5553861" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.1", - "valueString" : "12345" - }, { - "url" : "XTN.2", - "valueString" : "PRS" - }, { - "url" : "XTN.3", - "valueString" : "CP" - }, { - "url" : "XTN.4", - "valueString" : "real@example.com" - }, { - "url" : "XTN.7", - "valueString" : "5553861" - }, { - "url" : "XTN.9", - "valueString" : "himom" - }, { - "url" : "XTN.11", - "valueString" : "4" - }, { - "url" : "XTN.12", - "valueString" : "17135553862" - } ] - } ], - "system" : "phone", - "value" : "17135553862", - "use" : "home" - }, { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "281" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5553861" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.1", - "valueString" : "9865" - }, { - "url" : "XTN.2", - "valueString" : "EMR" - }, { - "url" : "XTN.3", - "valueString" : "SAT" - }, { - "url" : "XTN.4", - "valueString" : "alsoreal@exmaple.com" - }, { - "url" : "XTN.7", - "valueString" : "5553861" - } ] - } ], - "system" : "other", - "use" : "work" - } ], - "gender" : "female", - "birthDate" : "1640", - "_birthDate" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "1640" - } ] - }, - "deceasedDateTime" : "2031", - "_deceasedDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "2031" - } ] - }, - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "123 Main St" - } ] - }, { - "url" : "XAD.2", - "valueString" : "Altxad" - }, { - "url" : "XAD.7", - "valueCode" : "H" - }, { - "url" : "XAD.12", - "extension" : [ { - "url" : "XAD.12.1", - "valueString" : "2020" - }, { - "url" : "XAD.12.2", - "valueString" : "2024" - } ] - } ] - } ], - "use" : "home", - "line" : [ "123 Main St", "Altxad" ], - "city" : "AnyTown", - "district" : "Thurston County", - "state" : "IG", - "postalCode" : "95802", - "country" : "USA", - "period" : { - "start" : "2020", - "end" : "2024" - } - } ], - "multipleBirthInteger" : 11, - "contact" : [ { - "extension" : [ { - "url" : "https://hl7.org/fhir/StructureDefinition/relationship", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70063" - } ], - "code" : "OTH", - "display" : "Other" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "OT", - "display" : "OTHER RELATIONSHIP" - } ] - } - } ], - "relationship" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70063" - } ], - "code" : "OTH", - "display" : "Other" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "OT", - "display" : "OTHER RELATIONSHIP" - } ] - } ], - "name" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ { - "url" : "XPN.2", - "valueString" : "GENARO" - }, { - "url" : "XPN.3", - "valueString" : "GR" - }, { - "url" : "XPN.14", - "valueString" : "Dr" - }, { - "url" : "XPN.4", - "valueString" : "JR" - }, { - "url" : "XPN.6", - "valueString" : "Md" - }, { - "url" : "XPN.7", - "valueString" : "L" - }, { - "url" : "XPN.8", - "valueString" : "I" - }, { - "url" : "XPN.10", - "extension" : [ { - "url" : "XPN.10.2", - "valueString" : "2030" - }, { - "url" : "XPN.10.1", - "valueString" : "2000" - } ] - }, { - "url" : "XPN.12", - "valueString" : "20000501102531" - }, { - "url" : "XPN.13", - "valueString" : "2030501102531" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" - } ], - "use" : "official", - "family" : "SURYAN", - "_family" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "Prefix" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Own" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "SpousePrefix" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "Spouse" - } ] - }, - "given" : [ "GENARO", "GR" ], - "prefix" : [ "Sir" ], - "suffix" : [ "JR", "Md", "Dr" ], - "period" : { - "start" : "2000-05-01T10:25:31Z" - } - }, - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "720" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5553954" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", - "valueString" : "2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "PRN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.4", - "valueString" : "example@exmaple.com" - }, { - "url" : "XTN.7", - "valueString" : "5553954" - }, { - "url" : "XTN.9", - "valueString" : "any" - }, { - "url" : "XTN.12", - "valueString" : "+1 720 555 3954" - } ] - } ], - "system" : "phone", - "value" : "+1 720 555 3954", - "use" : "home" - }, { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "555" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4672293" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4672293" - }, { - "url" : "XTN.12", - "valueString" : "+1 555 467 2293" - } ] - } ], - "system" : "phone", - "value" : "+1 555 467 2293", - "use" : "work" - } ], - "address" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4861 20TH AVE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "H" - } ] - } ], - "use" : "home", - "line" : [ "4861 20TH AVE" ], - "city" : "THUNDER MOUNTAIN", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA" - }, - "organization" : { - "reference" : "Organization/1727135930902326000.03c13a1f-072c-46a7-bb4b-370118853113" - }, - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20220501102531-0400" - } ] - }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" - } ] + }, + { + "fullUrl": "Specimen/1731704147185921000.569f0698-a5ed-4f92-8ece-4ef418c289db", + "resource": { + "resourceType": "Specimen", + "id": "1731704147185921000.569f0698-a5ed-4f92-8ece-4ef418c289db", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "SPM" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", + "extension": [ + { + "url": "SPM.26", + "valueString": "2" + }, + { + "url": "SPM.5", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "SPM.5", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500022", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "SPM.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500111", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12311-1", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "SPM.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "SPM.11", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "SPM.11", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500022", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/reject-reason", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "440500007", + "display": "SNOMEDTEXT" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/reject-reason", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "440500022", + "display": "SNOMEDTEXT2" + } + ] + } + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Any lab USA-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "36D1332559-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "380604-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Any lab USA-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "36D1332559-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA-s" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.1" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "380604-p" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Any lab USA-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "36D1332559-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "380604-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Any lab USA-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "36D1332559-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA-p" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.2" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "380604-s" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500555", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12333-0", + "display": "LOINCTEXT" + } + ] + }, + "receivedTime": "2021-06-04T11:25:06Z", + "_receivedTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210604112506+0000" + } + ] + }, + "collection": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + } + ], + "collectedPeriod": { + "start": "2021-06-04T11:25:00Z", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210604112500+0000" + } + ] + }, + "end": "2021-06-04T11:25:01Z", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210604112501+0000" + } + ] + } + }, + "quantity": { + "value": 1 + }, + "method": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + }, + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2020-09-01", + "code": "71836000", + "display": "Nasopharyngeal structure (body structure)" + } + ] + } + }, + "container": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500777", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "1235-9", + "display": "LOINCTEXT" + } + ] + }, + "additiveCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500111", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12311-1", + "display": "LOINCTEXT" + } + ] + } + } + ], + "condition": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + }, + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "SPM.14" + } + ], + "text": "TEST" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "SPM.14" + } + ], + "text": "TEST2" + } + ] + } + }, + { + "fullUrl": "Specimen/1731704147188542000.3061406c-a576-41c2-82e3-000fc013e70a", + "resource": { + "resourceType": "Specimen", + "id": "1731704147188542000.3061406c-a576-41c2-82e3-000fc013e70a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "SPM" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", + "extension": [ + { + "url": "SPM.26", + "valueString": "2" + }, + { + "url": "SPM.5", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "SPM.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "SPM.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "SPM.11", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/reject-reason", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "440500007", + "display": "SNOMEDTEXT" + } + ] + } + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Another Lab USA-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "36D1332559-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "380604-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Any lab USA-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "36D1332559-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA-s" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.1" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "380614-p" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Any lab USA-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "36D1332559-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA-s" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "380614-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Another Lab USA-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "36D1332559-p" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA-p" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.2" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "380604-s" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + }, + "receivedTime": "2021-06-04T11:25:06Z", + "_receivedTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210604112506+0000" + } + ] + }, + "collection": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + } + ], + "collectedPeriod": { + "start": "2021-06-04T11:25:00Z", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210604112500+0000" + } + ] + }, + "end": "2021-06-04T11:25:01Z", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210604112501+0000" + } + ] + } + }, + "quantity": { + "value": 1 + }, + "method": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + }, + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2020-09-01", + "code": "71836000", + "display": "Nasopharyngeal structure (body structure)" + } + ] + } + }, + "container": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + }, + "additiveCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + } + ], + "condition": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "2.67", + "code": "440500007", + "display": "SNOMEDTEXT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "12345-6", + "display": "LOINCTEXT" + } + ] + } + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "SPM.14" + } + ], + "text": "TEST" + } + ] + } + }, + { + "fullUrl": "ServiceRequest/1731704147218039000.4208df27-660d-47c2-acff-6836118704a4", + "resource": { + "resourceType": "ServiceRequest", + "id": "1731704147218039000.4208df27-660d-47c2-acff-6836118704a4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "RE" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "20230725" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "OS", + "display": "order status" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ + { + "url": "ORC.5", + "valueString": "CM" + }, + { + "url": "ORC.6", + "valueString": "E" + }, + { + "url": "ORC.19", + "valueReference": { + "reference": "Practitioner/1731704147195237000.cb331cc0-ac8b-4eea-b321-b8920ce71cb7" + } + }, + { + "url": "ORC.19", + "valueReference": { + "reference": "Practitioner/1731704147195562000.dd9d759c-dc2e-4d35-86bc-1bc003fc9aeb" + } + }, + { + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1731704147196014000.1df675bf-6e36-40e6-9ea8-79c5fed7b315" + } + }, + { + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1731704147196245000.dd0d299d-5ad3-4fc6-a831-3115cd4ac18a" + } + }, + { + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "111 Street St" + } + ] + } + ] + } + ], + "line": [ + "111 Street St" + ], + "city": "Streetsville", + "state": "ST" + } + }, + { + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "112 Street St" + } + ] + } + ] + } + ], + "line": [ + "112 Street St" + ], + "city": "Streetsville", + "state": "ST" + } + }, + { + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "111 Road Rd" + } + ] + } + ] + } + ], + "line": [ + "111 Road Rd" + ], + "city": "Roadsville", + "state": "RD" + } + }, + { + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "112 Road Rd" + } + ] + } + ] + } + ], + "line": [ + "112 Road Rd" + ], + "city": "Roadsville", + "state": "RD" + } + }, + { + "url": "ORC.27", + "valueString": "20260404" + }, + { + "url": "ORC.28", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70177" + } + ], + "code": "EMP", + "display": "Employee" + } + ] + } + }, + { + "url": "ORC.30", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding-system", + "valueString": "HL70483" + } + ], + "code": "EL", + "display": "Electronic" + } + ] + } + }, + { + "url": "ORC.31", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70000" + } + ], + "code": "UMM", + "display": "Universal Modifier" + } + ] + } + }, + { + "url": "ORC.32", + "valueString": "20250403" + }, + { + "url": "ORC.8", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "Specimen12333454" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "Specimen12333" + } + }, + { + "url": "ORC.10", + "valueReference": { + "reference": "Practitioner/1731704147197900000.b64fec6c-cfc6-434a-b92a-f6cf2764b06c" + } + }, + { + "url": "ORC.10", + "valueReference": { + "reference": "Practitioner/1731704147198178000.868c0d5c-23b4-4fa9-8928-8238ab04c86d" + } + }, + { + "url": "ORC.11", + "valueReference": { + "reference": "Practitioner/1731704147198490000.04a64bf0-70cc-433a-be3c-2b331a12e441" + } + }, + { + "url": "ORC.11", + "valueReference": { + "reference": "Practitioner/1731704147198786000.583bf1fe-fa2c-4bfb-a502-de5f852e753c" + } + }, + { + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1731704147199079000.1779db36-128c-4164-b38e-de6636efb229" + } + }, + { + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1731704147199370000.e59dcfbf-12c0-471e-b92a-23fbb76c5128" + } + }, + { + "url": "ORC.13", + "valueReference": { + "reference": "Location/1731704147199904000.5d034c54-5076-4f70-9c58-b2e8b71319a1" + } + }, + { + "url": "ORC.15", + "valueString": "202101021000" + }, + { + "url": "ORC.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "EO", + "display": "entering org text" + } + ] + } + }, + { + "url": "ORC.18", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "ED", + "display": "entering device text" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.2", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Identifier Namespace" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Universal ID" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Placer Identifier" + } + }, + { + "url": "OBR.3", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Identifier Namespace" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Universal ID" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Filler Identifier" + } + }, + { + "url": "OBR.15.1", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "ID" + } + ] + } + }, + { + "url": "OBR.15.2", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70371" + } + ], + "code": "BOUIN", + "display": "Bouin\u0027s solution" + } + ] + } + }, + { + "url": "OBR.15.3", + "valueString": "Collection Method" + }, + { + "url": "OBR.15.4", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "LN", + "display": "Left Naris" + } + ] + } + }, + { + "url": "OBR.15.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7" + } + ], + "code": "CMMC", + "display": "Collection Method Modifer Code" + } + ] + } + }, + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731704147202382000.63cabfeb-beb5-4e0d-b64f-c95134373633" + } + }, + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731704147202713000.417d1a2d-c639-491e-93e2-42bcd7c42905" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "BP" + }, + { + "url": "XTN.7", + "valueString": "7595016" + }, + { + "url": "XTN.12", + "valueString": "+1 260 759 5016" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "pager", + "value": "+1 260 759 5016", + "use": "work" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "Internet" + }, + { + "url": "XTN.4", + "valueString": "order.callback@email.com" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "email", + "value": "order.callback@email.com", + "use": "work" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "BP" + }, + { + "url": "XTN.7", + "valueString": "7595016" + }, + { + "url": "XTN.12", + "valueString": "+1 260 759 5016" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "pager", + "value": "+1 260 759 5016", + "use": "work" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "Internet" + }, + { + "url": "XTN.4", + "valueString": "order.callback2@email.com" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "email", + "value": "order.callback2@email.com", + "use": "work" + } + }, + { + "url": "OBR.18", + "valueString": "placer1" + }, + { + "url": "OBR.19", + "valueString": "placer2" + }, + { + "url": "OBR.20", + "valueString": "filler1" + }, + { + "url": "OBR.21", + "valueString": "filler2" + }, + { + "url": "OBR.23", + "extension": [ + { + "url": "moc-1-1-monetary-amount", + "valueString": "100" + }, + { + "url": "moc-1-2-monetary-denomination", + "valueString": "$" + }, + { + "url": "moc-2-charge-code", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "16", + "display": "code" + } + ] + } + } + ] + }, + { + "url": "OBR.24", + "valueId": "OTH" + }, + { + "url": "OBR.25", + "valueId": "F" + }, + { + "url": "OBR.26", + "extension": [ + { + "url": "prl-1-parent-observation-identifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "444", + "display": "ParentId" + } + ] + } + }, + { + "url": "prl-2-parent-observation-sub-identifier", + "valueString": "888" + }, + { + "url": "prl-3-parent-observation-descriptor", + "valueString": "ParentOBSdescriptor" + } + ] + }, + { + "url": "OBR.28", + "valueReference": { + "reference": "Practitioner/1731704147204704000.6b69d8ef-3028-47d6-927e-d5d5872dc892" + } + }, + { + "url": "OBR.28", + "valueReference": { + "reference": "Practitioner/1731704147205067000.c4c1f05b-712b-4813-a986-4a9df29d8fdb" + } + }, + { + "url": "OBR.29", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CSV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "11D1111111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Other CSV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "22D2222222" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA2" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + } + }, + { + "url": "OBR.33", + "valueReference": { + "reference": "PractitionerRole/1731704147211853000.8e9954f7-ef42-4e32-ace7-5d50620a3751" + } + }, + { + "url": "OBR.33", + "valueReference": { + "reference": "PractitionerRole/1731704147213550000.2782cfa7-176d-45f4-9da6-b3a7a0ca064d" + } + }, + { + "url": "OBR.36", + "valueString": "20230806123359-0500" + }, + { + "url": "OBR.8", + "valueDateTime": "2024-02-20", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20240220" + } + ] + } + }, + { + "url": "OBR.39", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "4438", + "display": "Collectors Comment" + } + ] + } + }, + { + "url": "OBR.39", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "4438", + "display": "Collectors Comment2" + } + ] + } + }, + { + "url": "OBR.44", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" + } + ], + "code": "5019", + "display": "Procedure Code" + } + ] + } + }, + { + "url": "obr-45-procedure-code-modifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" + } + ], + "code": "887766", + "display": "Procedure Code Modifier" + } + ] + } + }, + { + "url": "obr-45-procedure-code-modifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" + } + ], + "code": "887766", + "display": "Procedure Code Modifier2" + } + ] + } + }, + { + "url": "OBR.48", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "71435", + "display": "Medically Necessary Duplicate Procedure" + } + ] + } + }, + { + "url": "OBR.49", + "valueString": "N" + }, + { + "url": "OBR.50", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "443331", + "display": "Parent Universal Service Identifier" + } + ] + } + }, + { + "url": "OBR.53", + "valueIdentifier": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.53" + } + ], + "value": "Alt" + } + }, + { + "url": "OBR.53", + "valueIdentifier": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.53" + } + ], + "value": "Alt" + } + }, + { + "url": "OBR.54", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CSV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "11D1111111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Other CSV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "22D2222222" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA2" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + } + }, + { + "url": "OBR.9", + "valueQuantity": { + "value": 1771 + } + }, + { + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1731704147215800000.26615138-a081-4dec-8dd4-f397cc610177" + } + }, + { + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1731704147216669000.d101dec3-5e03-4524-a7de-fce7f3782bba" + } + }, + { + "url": "OBR.11", + "valueString": "G" + }, + { + "url": "OBR.12", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "512", + "display": "Danger code" + } + ] + } + }, + { + "url": "OBR.13", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "ISO" + } + ], + "code": "R", + "display": "relevent info" + } + ] + } + }, + { + "url": "OBR.14", + "valueDateTime": "2021-02-02T10:00:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202102021000" + } + ] + } + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" + } + ] + }, + "value": "Specimen123" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" + } + ] + }, + "value": "Specimen12311" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "Specimen12322" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "Specimen12322" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.33" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" + } + ] + }, + "value": "33" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.33" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" + } + ] + }, + "value": "332" + } + ], + "status": "completed", + "intent": "order", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "123", + "display": "Universal service identifier" + } + ] + }, + "orderDetail": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.46" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "7461", + "display": "Placer Supplemental" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.46" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "7461", + "display": "Placer Supplemental2" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.47" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "8811", + "display": "Fillter Supplemental" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.47" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "8811", + "display": "Fillter Supplemental2" + } + ] + } + ], + "subject": { + "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + }, + "occurrenceDateTime": "2022-02-02T10:22:00Z", + "_occurrenceDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202202021022" + } + ] + }, + "requester": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "123" + }, + { + "url": "XTN.4", + "valueString": "+123" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" + } + ], + "system": "email", + "value": "123" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "1234" + }, + { + "url": "XTN.4", + "valueString": "+1234" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" + } + ], + "system": "email", + "value": "1234" + } + } + ], + "reference": "PractitionerRole/1731704147190227000.de0f9388-eee6-46c9-a0e9-641f06a54759" + }, + "locationCode": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70482" + } + ], + "code": "I", + "display": "Inpatient Order" + } + ] + } + ], + "reasonCode": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "3216", + "display": "ReasonForStudy" + } + ] + }, + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "3216", + "display": "ReasonForStudy2" + } + ] + } + ], + "supportingInfo": [ + { + "reference": "Observation/1731704147162570000.349f1ee4-3af5-4488-a631-4a1051f73265" + }, + { + "reference": "Observation/1731704147168198000.1c632d99-c9e4-4105-929e-424341cb702f" + } + ], + "specimen": [ + { + "reference": "Specimen/1731704147185921000.569f0698-a5ed-4f92-8ece-4ef418c289db" + }, + { + "reference": "Specimen/1731704147188542000.3061406c-a576-41c2-82e3-000fc013e70a" + }, + { + "reference": "Specimen/1731704147177705000.f3963125-8b94-45a0-9230-a03c2ded1897" + } + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230208" + }, + { + "url": "NTE.8", + "valueString": "20230209" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "Coded Request note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Note about the observation request" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "second" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "third" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "fourth" + } + ], + "time": "2023-02-07", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230207" + } + ] + }, + "text": "Note about the observation request" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230205" + }, + { + "url": "NTE.8", + "valueString": "20230206" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "More request notes" + } + ], + "time": "2023-02-04", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230204" + } + ] + }, + "text": "More request notes" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147190872000.837181c4-e6fc-4e7f-99bd-dcf8d3652e07", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147190872000.837181c4-e6fc-4e7f-99bd-dcf8d3652e07", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.12Name" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" + } + ], + "identifier": [ + { + "value": "93" + } + ], + "name": [ + { + "given": [ + "ORC.12Name" + ] + } + ], + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "111 Road Rd" + } + ] + } + ] + } + ], + "line": [ + "111 Road Rd" + ], + "city": "Roadsville", + "state": "RD" } + ] + } + }, + { + "fullUrl": "Location/1731704147191158000.d0cacc5d-bc46-4559-9dbe-1f883c20dccb", + "resource": { + "resourceType": "Location", + "id": "1731704147191158000.d0cacc5d-bc46-4559-9dbe-1f883c20dccb", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.114222.8.7.6.5.4.1" + } + ], + "name": "STARLINKS.CDC.Stag", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] } - } ] - } - }, { - "fullUrl" : "Organization/1727135930888864000.e1e5bb89-81ad-4c17-9e52-232d5522088d", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930888864000.e1e5bb89-81ad-4c17-9e52-232d5522088d", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "STARLINKED.CDC.Stag" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.9.8.7.6.3.2" - } ] - } - }, { - "fullUrl" : "Organization/1727135930899193000.70e8c785-84fe-49a5-b282-dad0a7e9a77b", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930899193000.70e8c785-84fe-49a5-b282-dad0a7e9a77b", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "RSDT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "0.0.0.1.1138" - } ] - } - }, { - "fullUrl" : "Organization/1727135930902326000.03c13a1f-072c-46a7-bb4b-370118853113", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930902326000.03c13a1f-072c-46a7-bb4b-370118853113", - "contact" : [ { - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "720" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5553954" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "5553954" - }, { - "url" : "XTN.12", - "valueString" : "+1 720 555 3954" - } ] - } ], - "system" : "phone", - "value" : "+1 720 555 3954", - "use" : "work" - } ], - "address" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "12" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4861 20TH AVE" - } ] - }, { - "url" : "XAD.2", - "valueString" : "#B" - }, { - "url" : "XAD.7", - "valueCode" : "H" - }, { - "url" : "XAD.8", - "valueString" : "World" - }, { - "url" : "XAD.11", - "valueCode" : "8" - }, { - "url" : "XAD.12", - "extension" : [ { - "url" : "XAD.12.1", - "valueString" : "2017" - }, { - "url" : "XAD.12.2", - "valueString" : "2025" - } ] - }, { - "url" : "XAD.13", - "valueString" : "2020" - }, { - "url" : "XAD.14", - "valueString" : "2021" - } ] - } ], - "use" : "home", - "line" : [ "4861 20TH AVE", "#B" ], - "city" : "AURORA", - "district" : "King", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2020", - "end" : "2021" + } + }, + { + "fullUrl": "Organization/1731704147191936000.8abde946-6f9d-45c2-9211-18dbf481a8dd", + "resource": { + "resourceType": "Organization", + "id": "1731704147191936000.8abde946-6f9d-45c2-9211-18dbf481a8dd", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "A" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "SPHL-000048" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704147191158000.d0cacc5d-bc46-4559-9dbe-1f883c20dccb" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "SPHL-000048" + } + ], + "name": "CDPH, Viral and Rickettsial Disease Laboratory", + "telecom": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "456" + }, + { + "url": "XTN.4", + "valueString": "+456" + } + ] + } + ], + "system": "email", + "value": "456" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "4567" + }, + { + "url": "XTN.4", + "valueString": "+4567" + } + ] + } + ], + "system": "email", + "value": "4567" + } + ], + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "111 Street St" + } + ] + } + ] + } + ], + "line": [ + "111 Street St" + ], + "city": "Streetsville", + "state": "ST" } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731704147190227000.de0f9388-eee6-46c9-a0e9-641f06a54759", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731704147190227000.de0f9388-eee6-46c9-a0e9-641f06a54759", + "practitioner": { + "reference": "Practitioner/1731704147190872000.837181c4-e6fc-4e7f-99bd-dcf8d3652e07" + }, + "organization": { + "reference": "Organization/1731704147191936000.8abde946-6f9d-45c2-9211-18dbf481a8dd" } - } ] - } - }, { - "fullUrl" : "Provenance/1727135930912125000.5b3ce86f-9be7-4ffb-a9a3-d5bc8f6f3a7d", - "resource" : { - "resourceType" : "Provenance", - "id" : "1727135930912125000.5b3ce86f-9be7-4ffb-a9a3-d5bc8f6f3a7d", - "target" : [ { - "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" - } ], - "occurredDateTime" : "2024-08-21T11:38:00Z", - "recorded" : "2024-09-23T16:58:50Z", - "activity" : { - "coding" : [ { - "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", - "code" : "UPDATE" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "performer" - } ] - }, - "who" : { - "reference" : "Organization/1727135930911804000.418fb1c7-1c34-49d7-96b4-2dea9aaa2427" + } + }, + { + "fullUrl": "Practitioner/1731704147195237000.cb331cc0-ac8b-4eea-b321-b8920ce71cb7", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147195237000.cb331cc0-ac8b-4eea-b321-b8920ce71cb7", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.19Name" + } + ] + } + ], + "identifier": [ + { + "value": "60" + } + ], + "name": [ + { + "given": [ + "ORC.19Name" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147195562000.dd9d759c-dc2e-4d35-86bc-1bc003fc9aeb", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147195562000.dd9d759c-dc2e-4d35-86bc-1bc003fc9aeb", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.19Name2" + } + ] + } + ], + "identifier": [ + { + "value": "60" + } + ], + "name": [ + { + "given": [ + "ORC.19Name2" + ] + } + ] + } + }, + { + "fullUrl": "Location/1731704147195823000.dcb8facd-feae-4182-8a57-4131fdc09680", + "resource": { + "resourceType": "Location", + "id": "1731704147195823000.dcb8facd-feae-4182-8a57-4131fdc09680", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.114222.8.7.6.5.4.1" + } + ], + "name": "STARLINKS.CDC.Stag", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] } - } ] - } - }, { - "fullUrl" : "Organization/1727135930911804000.418fb1c7-1c34-49d7-96b4-2dea9aaa2427", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930911804000.418fb1c7-1c34-49d7-96b4-2dea9aaa2427", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "RSDT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "0.0.0.1.1138" - } ] - } - }, { - "fullUrl" : "RelatedPerson/1727135930916650000.8ab0a6eb-7d2b-4af1-9be0-2e789cccb33b", - "resource" : { - "resourceType" : "RelatedPerson", - "id" : "1727135930916650000.8ab0a6eb-7d2b-4af1-9be0-2e789cccb33b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "NK1" - } ], - "patient" : { - "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" - }, - "relationship" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70063" - } ], - "code" : "OTH", - "display" : "Other" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "OT", - "display" : "OTHER RELATIONSHIP" - } ] - } ], - "name" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ { - "url" : "XPN.2", - "valueString" : "GENARO" - }, { - "url" : "XPN.3", - "valueString" : "GR" - }, { - "url" : "XPN.14", - "valueString" : "Dr" - }, { - "url" : "XPN.4", - "valueString" : "JR" - }, { - "url" : "XPN.6", - "valueString" : "Md" - }, { - "url" : "XPN.7", - "valueString" : "L" - }, { - "url" : "XPN.8", - "valueString" : "I" - }, { - "url" : "XPN.10", - "extension" : [ { - "url" : "XPN.10.2", - "valueString" : "2030" - }, { - "url" : "XPN.10.1", - "valueString" : "2000" - } ] - }, { - "url" : "XPN.12", - "valueString" : "20000501102531" - }, { - "url" : "XPN.13", - "valueString" : "2030501102531" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" - } ], - "use" : "official", - "family" : "SURYAN", - "_family" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "Prefix" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Own" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "SpousePrefix" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "Spouse" - } ] - }, - "given" : [ "GENARO", "GR" ], - "prefix" : [ "Sir" ], - "suffix" : [ "JR", "Md", "Dr" ], - "period" : { - "start" : "2000-05-01T10:25:31Z" + } + }, + { + "fullUrl": "Organization/1731704147196014000.1df675bf-6e36-40e6-9ea8-79c5fed7b315", + "resource": { + "resourceType": "Organization", + "id": "1731704147196014000.1df675bf-6e36-40e6-9ea8-79c5fed7b315", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "A" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "SPHL-000048" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731704147195823000.dcb8facd-feae-4182-8a57-4131fdc09680" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "SPHL-000048" + } + ], + "name": "CDPH, Viral and Rickettsial Disease Laboratory" + } + }, + { + "fullUrl": "Organization/1731704147196245000.dd0d299d-5ad3-4fc6-a831-3115cd4ac18a", + "resource": { + "resourceType": "Organization", + "id": "1731704147196245000.dd0d299d-5ad3-4fc6-a831-3115cd4ac18a", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ] + } + ], + "name": "CDPH, Viral and Rickettsial Disease Laboratory part two" + } + }, + { + "fullUrl": "Practitioner/1731704147197900000.b64fec6c-cfc6-434a-b92a-f6cf2764b06c", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147197900000.b64fec6c-cfc6-434a-b92a-f6cf2764b06c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.10Name" + } + ] + } + ], + "identifier": [ + { + "value": "71" + } + ], + "name": [ + { + "given": [ + "ORC.10Name" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147198178000.868c0d5c-23b4-4fa9-8928-8238ab04c86d", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147198178000.868c0d5c-23b4-4fa9-8928-8238ab04c86d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.10Name2" + } + ] + } + ], + "identifier": [ + { + "value": "71" + } + ], + "name": [ + { + "given": [ + "ORC.10Name2" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147198490000.04a64bf0-70cc-433a-be3c-2b331a12e441", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147198490000.04a64bf0-70cc-433a-be3c-2b331a12e441", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.11Name" + } + ] + } + ], + "identifier": [ + { + "value": "82" + } + ], + "name": [ + { + "given": [ + "ORC.11Name" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147198786000.583bf1fe-fa2c-4bfb-a502-de5f852e753c", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147198786000.583bf1fe-fa2c-4bfb-a502-de5f852e753c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.11Name2" + } + ] + } + ], + "identifier": [ + { + "value": "82" + } + ], + "name": [ + { + "given": [ + "ORC.11Name2" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147199079000.1779db36-128c-4164-b38e-de6636efb229", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147199079000.1779db36-128c-4164-b38e-de6636efb229", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.12Name" + } + ] + } + ], + "identifier": [ + { + "value": "93" + } + ], + "name": [ + { + "given": [ + "ORC.12Name" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147199370000.e59dcfbf-12c0-471e-b92a-23fbb76c5128", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147199370000.e59dcfbf-12c0-471e-b92a-23fbb76c5128", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.12Name2" + } + ] + } + ], + "identifier": [ + { + "value": "93" + } + ], + "name": [ + { + "given": [ + "ORC.12Name2" + ] + } + ] + } + }, + { + "fullUrl": "Location/1731704147199755000.fd89ef34-6aaf-44ab-b3d8-8c863bed21b8", + "resource": { + "resourceType": "Location", + "id": "1731704147199755000.fd89ef34-6aaf-44ab-b3d8-8c863bed21b8", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "12.12.12" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "L" + } + ] + }, + "value": "enter location id" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] } - } ], - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "720" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5553954" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", - "valueString" : "2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "PRN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.4", - "valueString" : "example@exmaple.com" - }, { - "url" : "XTN.7", - "valueString" : "5553954" - }, { - "url" : "XTN.9", - "valueString" : "any" - }, { - "url" : "XTN.12", - "valueString" : "+1 720 555 3954" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.5" - } ], - "system" : "phone", - "value" : "+1 720 555 3954", - "use" : "home" - }, { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "555" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4672293" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4672293" - }, { - "url" : "XTN.12", - "valueString" : "+1 555 467 2293" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.6" - } ], - "system" : "phone", - "value" : "+1 555 467 2293", - "use" : "work" - }, { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "720" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5553954" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "5553954" - }, { - "url" : "XTN.12", - "valueString" : "+1 720 555 3954" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.31" - } ], - "system" : "phone", - "value" : "+1 720 555 3954", - "use" : "work" - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4861 20TH AVE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "H" - } ] - } ], - "use" : "home", - "line" : [ "4861 20TH AVE" ], - "city" : "THUNDER MOUNTAIN", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA" - }, { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "12" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.32" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4861 20TH AVE" - } ] - }, { - "url" : "XAD.2", - "valueString" : "#B" - }, { - "url" : "XAD.7", - "valueCode" : "H" - }, { - "url" : "XAD.8", - "valueString" : "World" - }, { - "url" : "XAD.11", - "valueCode" : "8" - }, { - "url" : "XAD.12", - "extension" : [ { - "url" : "XAD.12.1", - "valueString" : "2017" - }, { - "url" : "XAD.12.2", - "valueString" : "2025" - } ] - }, { - "url" : "XAD.13", - "valueString" : "2020" - }, { - "url" : "XAD.14", - "valueString" : "2021" - } ] - } ], - "use" : "home", - "line" : [ "4861 20TH AVE", "#B" ], - "city" : "AURORA", - "district" : "King", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2020", - "end" : "2021" + } + }, + { + "fullUrl": "Location/1731704147199904000.5d034c54-5076-4f70-9c58-b2e8b71319a1", + "resource": { + "resourceType": "Location", + "id": "1731704147199904000.5d034c54-5076-4f70-9c58-b2e8b71319a1", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "12.12.12" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "L" + } + ] + }, + "value": "enter location id" + } + ], + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] + }, + "partOf": { + "reference": "Location/1731704147199755000.fd89ef34-6aaf-44ab-b3d8-8c863bed21b8" } - } ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20220501102531-0400" - } ] - }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" - } ] + } + }, + { + "fullUrl": "Practitioner/1731704147202382000.63cabfeb-beb5-4e0d-b64f-c95134373633", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147202382000.63cabfeb-beb5-4e0d-b64f-c95134373633", + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Ordering", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Provider" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "JollyROGER" + } + ] + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147202713000.417d1a2d-c639-491e-93e2-42bcd7c42905", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147202713000.417d1a2d-c639-491e-93e2-42bcd7c42905", + "identifier": [ + { + "value": "2" + } + ], + "name": [ + { + "family": "Ordering", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Provider" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "JollyROGER" + } + ] + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147204704000.6b69d8ef-3028-47d6-927e-d5d5872dc892", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147204704000.6b69d8ef-3028-47d6-927e-d5d5872dc892", + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "result", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "copiesto" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "NotSoJollyROGER" + } + ] + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147205067000.c4c1f05b-712b-4813-a986-4a9df29d8fdb", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147205067000.c4c1f05b-712b-4813-a986-4a9df29d8fdb", + "identifier": [ + { + "value": "2" + } + ], + "name": [ + { + "family": "results", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "copiesto" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "NotSoJollyROGER" + } + ] + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147205724000.c2d64559-e0d4-4017-a920-ff293548d65a", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147205724000.c2d64559-e0d4-4017-a920-ff293548d65a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ + { + "url": "CNN.3", + "valueString": "Results Interpreter" + }, + { + "url": "CNN.4", + "valueString": "S" + }, + { + "url": "CNN.5", + "valueString": "ESQ" + }, + { + "url": "CNN.7", + "valueString": "MD" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "123" + } + ], + "name": [ + { + "family": "Assistant", + "given": [ + "Results Interpreter", + "S" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "ESQ", + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Location/1731704147207231000.f137ba6c-0f8d-452b-b503-8363140bd8d9", + "resource": { + "resourceType": "Location", + "id": "1731704147207231000.f137ba6c-0f8d-452b-b503-8363140bd8d9", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Hospital A" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "ISO" + } + ] + }, + "value": "2.16.840.1.113883.9.11" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] } } - } - }, { - "fullUrl" : "Encounter/1727135930924088000.a87dbe11-c1c3-4713-b55a-e42645a16af1", - "resource" : { - "resourceType" : "Encounter", - "id" : "1727135930924088000.a87dbe11-c1c3-4713-b55a-e42645a16af1", - "text" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-visit-description", - "valueString" : "Description" - } ], - "div" : "
Description
" - }, - "status" : "finished", - "subject" : { - "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" - }, - "episodeOfCare" : [ { - "reference" : "EpisodeOfCare/1727135930924195000.a1e98160-c5f6-4737-bccd-408b05f2f8e4" - } ], - "participant" : [ { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "ATND", - "display" : "attender" - } ] - } ], - "individual" : { - "reference" : "Practitioner/1727135930919771000.9661e4fb-9d28-4282-99a8-38ea7fb1e372" + }, + { + "fullUrl": "Location/1731704147211014000.bcba6116-9a8f-4b82-8bf7-db9455f0baa9", + "resource": { + "resourceType": "Location", + "id": "1731704147211014000.bcba6116-9a8f-4b82-8bf7-db9455f0baa9", + "identifier": [ + { + "value": "Building 123" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" + } + ] } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "REF" - } ], - "text" : "referrer" - } ], - "individual" : { - "reference" : "Practitioner/1727135930920249000.87b8441f-6462-4c72-b6b5-770f6f91117b" + } + }, + { + "fullUrl": "Location/1731704147211283000.d4c96278-9ffc-465d-a89b-996d017764dd", + "resource": { + "resourceType": "Location", + "id": "1731704147211283000.d4c96278-9ffc-465d-a89b-996d017764dd", + "identifier": [ + { + "value": "Point of Care" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "CON" - } ], - "text" : "consultant" - } ], - "individual" : { - "reference" : "Practitioner/1727135930921223000.4e3c2fae-23d7-4087-bd98-78aa1a1a0941" + } + }, + { + "fullUrl": "Location/1731704147211453000.670df912-71b5-403a-9567-094aaf478caf", + "resource": { + "resourceType": "Location", + "id": "1731704147211453000.670df912-71b5-403a-9567-094aaf478caf", + "identifier": [ + { + "value": "Floor A" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" + } + ] } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "ADM" - } ], - "text" : "admitter" - } ], - "individual" : { - "reference" : "Practitioner/1727135930921776000.fd81838a-fdda-421f-bb71-6d780b0b445f" + } + }, + { + "fullUrl": "Location/1731704147211631000.fbf85beb-72c2-4c3d-9d58-e81e5b28a9a7", + "resource": { + "resourceType": "Location", + "id": "1731704147211631000.fbf85beb-72c2-4c3d-9d58-e81e5b28a9a7", + "identifier": [ + { + "value": "Room 101" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" + } + ] } - } ], - "period" : { - "start" : "2024-08-01T10:25:31-04:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20240801102531-0400" - } ] - }, - "end" : "2024-08-01T10:25:31-04:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20240801102531-0400" - } ] + } + }, + { + "fullUrl": "Location/1731704147211793000.5112c1cd-c316-4eed-9ebd-079ff9655734", + "resource": { + "resourceType": "Location", + "id": "1731704147211793000.5112c1cd-c316-4eed-9ebd-079ff9655734", + "identifier": [ + { + "value": "Bed A" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" + } + ] } - }, - "length" : { - "value" : 12, - "unit" : "days", - "system" : "http://unitsofmeasure.org/", - "code" : "d" - }, - "hospitalization" : { - "destination" : { - "reference" : "Location/1727135930918737000.646cd403-9137-467b-af49-b1da7d5ffe97" + } + }, + { + "fullUrl": "PractitionerRole/1731704147211853000.8e9954f7-ef42-4e32-ace7-5d50620a3751", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731704147211853000.8e9954f7-ef42-4e32-ace7-5d50620a3751", + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" + } + ] + }, + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" + } + ] + } + }, + "practitioner": { + "reference": "Practitioner/1731704147205724000.c2d64559-e0d4-4017-a920-ff293548d65a" + }, + "location": [ + { + "reference": "Location/1731704147207231000.f137ba6c-0f8d-452b-b503-8363140bd8d9" + }, + { + "reference": "Location/1731704147211014000.bcba6116-9a8f-4b82-8bf7-db9455f0baa9" + }, + { + "reference": "Location/1731704147211283000.d4c96278-9ffc-465d-a89b-996d017764dd" + }, + { + "reference": "Location/1731704147211453000.670df912-71b5-403a-9567-094aaf478caf" + }, + { + "reference": "Location/1731704147211631000.fbf85beb-72c2-4c3d-9d58-e81e5b28a9a7" + }, + { + "reference": "Location/1731704147211793000.5112c1cd-c316-4eed-9ebd-079ff9655734" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147212340000.e2e0c2bb-9790-4d5b-bb08-7ab58adece2a", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147212340000.e2e0c2bb-9790-4d5b-bb08-7ab58adece2a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ + { + "url": "CNN.3", + "valueString": "Results Interpreter" + }, + { + "url": "CNN.4", + "valueString": "S" + }, + { + "url": "CNN.5", + "valueString": "ESQ" + }, + { + "url": "CNN.7", + "valueString": "MD" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "123" + } + ], + "name": [ + { + "family": "Assistant", + "given": [ + "Results Interpreter", + "S" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "ESQ", + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Location/1731704147212528000.58fe3b52-dd06-4182-a73e-37f67635bd2e", + "resource": { + "resourceType": "Location", + "id": "1731704147212528000.58fe3b52-dd06-4182-a73e-37f67635bd2e", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Hospital A" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "ISO" + } + ] + }, + "value": "2.16.840.1.113883.9.11" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] } - }, - "location" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.3" - } ], - "location" : { - "reference" : "Location/1727135930922297000.bb8e60f5-2dc2-425d-8b10-779393bd1125" - }, - "status" : "active" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.6" - } ], - "location" : { - "reference" : "Location/1727135930923963000.10316ce9-ece7-41de-a6b4-4610899a4c97" - }, - "status" : "completed" - } ] - } - }, { - "fullUrl" : "Location/1727135930918737000.646cd403-9137-467b-af49-b1da7d5ffe97", - "resource" : { - "resourceType" : "Location", - "id" : "1727135930918737000.646cd403-9137-467b-af49-b1da7d5ffe97", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date", - "valueString" : "202305061200" - } ] - } - }, { - "fullUrl" : "Practitioner/1727135930919771000.9661e4fb-9d28-4282-99a8-38ea7fb1e372", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727135930919771000.9661e4fb-9d28-4282-99a8-38ea7fb1e372", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" - }, { - "url" : "XCN.4", - "valueString" : "B" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.5", - "valueString" : "2ND" - }, { - "url" : "XCN.7", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "B" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.7" - } ], - "identifier" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "DL" - } ] - }, - "system" : "Namespace", - "value" : "1" - } ], - "name" : [ { - "use" : "official", - "family" : "BEETHOVEN", - "given" : [ "LUDWIG", "B" ], - "prefix" : [ "DR" ], - "suffix" : [ "2ND", "MD", "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1727135930920249000.87b8441f-6462-4c72-b6b5-770f6f91117b", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727135930920249000.87b8441f-6462-4c72-b6b5-770f6f91117b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.8" - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "MOZART" - } ] - } - }, { - "fullUrl" : "Practitioner/1727135930921223000.4e3c2fae-23d7-4087-bd98-78aa1a1a0941", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727135930921223000.4e3c2fae-23d7-4087-bd98-78aa1a1a0941", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.9" - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "CHOPIN" - } ] - } - }, { - "fullUrl" : "Practitioner/1727135930921776000.fd81838a-fdda-421f-bb71-6d780b0b445f", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727135930921776000.fd81838a-fdda-421f-bb71-6d780b0b445f", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.17" - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "BACH" - } ] - } - }, { - "fullUrl" : "Location/1727135930922297000.bb8e60f5-2dc2-425d-8b10-779393bd1125", - "resource" : { - "resourceType" : "Location", - "id" : "1727135930922297000.bb8e60f5-2dc2-425d-8b10-779393bd1125", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "Hospital Assigned" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "ISO" - } ] - }, - "value" : "2.4.4.4" - } ], - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] } - } - }, { - "fullUrl" : "Organization/1727135930923372000.558c518f-125e-4428-8dc2-1e1a0c583287", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135930923372000.558c518f-125e-4428-8dc2-1e1a0c583287", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "ASSIGNEE" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "UUID" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "222.1111.22222" - } ] - } - }, { - "fullUrl" : "Location/1727135930923963000.10316ce9-ece7-41de-a6b4-4610899a4c97", - "resource" : { - "resourceType" : "Location", - "id" : "1727135930923963000.10316ce9-ece7-41de-a6b4-4610899a4c97", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", - "valueString" : "location type" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "Hospital Prio" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "ISO" - } ] - }, - "value" : "2.4.4.4" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NAME" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "UNI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", - "valueString" : "organization" - } ], - "value" : "Entity ID", - "assigner" : { - "reference" : "Organization/1727135930923372000.558c518f-125e-4428-8dc2-1e1a0c583287" + }, + { + "fullUrl": "Location/1731704147212695000.ba243a96-dfd5-413d-8aa4-196dce741f6a", + "resource": { + "resourceType": "Location", + "id": "1731704147212695000.ba243a96-dfd5-413d-8aa4-196dce741f6a", + "identifier": [ + { + "value": "Building 123" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" + } + ] } - } ], - "status" : "active", - "description" : "Description", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] } - } - }, { - "fullUrl" : "EpisodeOfCare/1727135930924195000.a1e98160-c5f6-4737-bccd-408b05f2f8e4", - "resource" : { - "resourceType" : "EpisodeOfCare", - "id" : "1727135930924195000.a1e98160-c5f6-4737-bccd-408b05f2f8e4", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.54" - } ] - } - }, { - "fullUrl" : "Observation/1727135931054889000.879549dc-018b-47c0-9e9d-a3761a3ea06d", - "resource" : { - "resourceType" : "Observation", - "id" : "1727135931054889000.879549dc-018b-47c0-9e9d-a3761a3ea06d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "subid" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2023-09-12T18:08:02-04:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230912180802-0400" - } ] + }, + { + "fullUrl": "Location/1731704147212956000.9bb0fed5-c0c7-4e37-bd10-970414515cd6", + "resource": { + "resourceType": "Location", + "id": "1731704147212956000.9bb0fed5-c0c7-4e37-bd10-970414515cd6", + "identifier": [ + { + "value": "Point of Care" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, { - "url" : "OBX.29", - "valueId" : "QST" - }, { - "url" : "OBX.11", - "valueString" : "F" - }, { - "url" : "OBX.18", - "valueReference" : { - "reference" : "Device/1727135931053992000.f372c9ef-a682-4265-b6e7-336c3bbcfb1f" - } - } ] - } ], - "status" : "final", - "subject" : { - "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" - }, - "encounter" : { - "reference" : "Encounter/1727135930924088000.a87dbe11-c1c3-4713-b55a-e42645a16af1" - }, - "effectiveDateTime" : "2023-01-01T00:00:00Z", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230101000000" - } ] - }, - "performer" : [ { - "reference" : "PractitionerRole/1727135931055103000.5d95dbb5-68f8-45d7-a9cb-9cf514fb474d" - }, { - "reference" : "PractitionerRole/1727135931055670000.0cf79842-b57f-4148-820c-bfd8890c386c" - } ], - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "code" : "260415000", - "display" : "Not detected" - } ] - }, - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - }, { - "url" : "NTE.7", - "valueString" : "20230202" - }, { - "url" : "NTE.8", - "valueString" : "20230203" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "OBX Note" - } ], - "time" : "2023-02-01", - "_time" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230201" - } ] - }, - "text" : "OBX Note" - } ], - "device" : { - "reference" : "Device/1727135931057583000.c23124e0-ba86-4fa4-96df-76637baf2819" - }, - "referenceRange" : [ { - "text" : "range of a few" - } ] - } - }, { - "fullUrl" : "Device/1727135931053992000.f372c9ef-a682-4265-b6e7-336c3bbcfb1f", - "resource" : { - "resourceType" : "Device", - "id" : "1727135931053992000.f372c9ef-a682-4265-b6e7-336c3bbcfb1f", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPTRDEV-001" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.17.840" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "Device 001" - } ] - } - }, { - "fullUrl" : "Practitioner/1727135931055483000.06a2880c-0745-46c4-866b-fa31e006748b", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727135931055483000.06a2880c-0745-46c4-866b-fa31e006748b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Quinlen" - } ] - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "Frances", - "given" : [ "Quinlen" ] - } ] - } - }, { - "fullUrl" : "PractitionerRole/1727135931055103000.5d95dbb5-68f8-45d7-a9cb-9cf514fb474d", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1727135931055103000.5d95dbb5-68f8-45d7-a9cb-9cf514fb474d", - "practitioner" : { - "reference" : "Practitioner/1727135931055483000.06a2880c-0745-46c4-866b-fa31e006748b" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/practitioner-role", - "code" : "responsibleObserver" - } ] - } ] - } - }, { - "fullUrl" : "Practitioner/1727135931056021000.2377666f-d18e-431d-b78b-edc1924717b4", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727135931056021000.2377666f-d18e-431d-b78b-edc1924717b4", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Quinlen" - } ] - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "Mark", - "given" : [ "Quinlen" ] - } ] - } - }, { - "fullUrl" : "Organization/1727135931056698000.d1417f8c-8db8-41a5-b2bf-a762277994cb", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135931056698000.d1417f8c-8db8-41a5-b2bf-a762277994cb", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "11D1111111" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CLIA" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.7" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "11D1111111" - } ], - "name" : "CSV uploads-11D1111111", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "2 Second Dr" - } ] - } ] - } ], - "line" : [ "2 Second Dr" ], - "state" : "IG", - "postalCode" : "94553", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1727135931055670000.0cf79842-b57f-4148-820c-bfd8890c386c", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1727135931055670000.0cf79842-b57f-4148-820c-bfd8890c386c", - "practitioner" : { - "reference" : "Practitioner/1727135931056021000.2377666f-d18e-431d-b78b-edc1924717b4" - }, - "organization" : { - "reference" : "Organization/1727135931056698000.d1417f8c-8db8-41a5-b2bf-a762277994cb" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Device/1727135931057583000.c23124e0-ba86-4fa4-96df-76637baf2819", - "resource" : { - "resourceType" : "Device", - "id" : "1727135931057583000.c23124e0-ba86-4fa4-96df-76637baf2819", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPTRDEV-001" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.17.840" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "Device 001" - } ] - } - }, { - "fullUrl" : "Specimen/1727135931059633000.93a14262-50f1-4463-be16-524a1bc18a5e", - "resource" : { - "resourceType" : "Specimen", - "id" : "1727135931059633000.93a14262-50f1-4463-be16-524a1bc18a5e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } ] - } - }, { - "fullUrl" : "Specimen/1727135931063598000.b9d9dbb1-b5b6-4cd7-8101-42b82705b282", - "resource" : { - "resourceType" : "Specimen", - "id" : "1727135931063598000.b9d9dbb1-b5b6-4cd7-8101-42b82705b282", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", - "extension" : [ { - "url" : "SPM.26", - "valueString" : "2" - }, { - "url" : "SPM.5", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - } - }, { - "url" : "SPM.6", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - } - }, { - "url" : "SPM.6", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - } - }, { - "url" : "SPM.11", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/reject-reason", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "440500007", - "display" : "SNOMEDTEXT" - } ] + } + }, + { + "fullUrl": "Location/1731704147213139000.2c0cc0c1-c713-4a9b-93a2-9f205ea319e5", + "resource": { + "resourceType": "Location", + "id": "1731704147213139000.2c0cc0c1-c713-4a9b-93a2-9f205ea319e5", + "identifier": [ + { + "value": "Floor A" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" + } + ] } - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Any lab USA-p" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "36D1332559-p" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA-p" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "380604-s" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Any lab USA-s" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "36D1332559-s" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA-s" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "380604-p" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Any lab USA-s" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "36D1332559-s" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA-s" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "380604-p" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Any lab USA-p" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "36D1332559-p" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA-p" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] - }, - "value" : "380604-s" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - }, - "receivedTime" : "2021-06-04T11:25:06Z", - "_receivedTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210604112506+0000" - } ] - }, - "collection" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - } - } ], - "collectedPeriod" : { - "start" : "2021-06-04T11:25:00Z", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210604112500+0000" - } ] - }, - "end" : "2021-06-04T11:25:01Z", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210604112501+0000" - } ] - } - }, - "quantity" : { - "value" : 1 - }, - "method" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - }, - "bodySite" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2020-09-01", - "code" : "71836000", - "display" : "Nasopharyngeal structure (body structure)" - } ] + } + }, + { + "fullUrl": "Location/1731704147213310000.e1ec7b93-8462-4ab6-8cf4-9c8961fcc4cc", + "resource": { + "resourceType": "Location", + "id": "1731704147213310000.e1ec7b93-8462-4ab6-8cf4-9c8961fcc4cc", + "identifier": [ + { + "value": "Room 101" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" + } + ] } - }, - "container" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - }, - "additiveCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] + } + }, + { + "fullUrl": "Location/1731704147213481000.b8856f6f-53a4-417a-961f-45104e0cfd50", + "resource": { + "resourceType": "Location", + "id": "1731704147213481000.b8856f6f-53a4-417a-961f-45104e0cfd50", + "identifier": [ + { + "value": "Bed A" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" + } + ] } - } ], - "condition" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "2.67", - "code" : "440500007", - "display" : "SNOMEDTEXT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "LOINCTEXT" - } ] - } ], - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" - } ], - "text" : "TEST" - } ] - } - }, { - "fullUrl" : "ServiceRequest/1727135931070894000.c6da959b-a0b1-4eaf-98fe-482d0ed3f1c9", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1727135931070894000.c6da959b-a0b1-4eaf-98fe-482d0ed3f1c9", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "RE" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "20230725" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ { - "url" : "ORC.5", - "valueString" : "CM" - }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1727135931069957000.71c19ffa-5756-45ab-9871-3441324a6a5c" - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Identifier Namespace" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Universal ID" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "Placer Identifier" - } - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } ] - }, - "value" : "Specimen123" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Identifier Namespace" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Universal ID" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] - }, - "value" : "Filler Identifier" - } ], - "status" : "completed", - "subject" : { - "reference" : "Patient/1727135930906262000.ea76d474-07bc-4cb2-ae47-5636f0f98fc1" - }, - "requester" : { - "reference" : "PractitionerRole/1727135931066802000.c0bfe9b7-bd2c-4733-92f0-a4070369a8bb" - }, - "supportingInfo" : [ { - "reference" : "Observation/1727135931054889000.879549dc-018b-47c0-9e9d-a3761a3ea06d" - } ], - "specimen" : [ { - "reference" : "Specimen/1727135931063598000.b9d9dbb1-b5b6-4cd7-8101-42b82705b282" - }, { - "reference" : "Specimen/1727135931059633000.93a14262-50f1-4463-be16-524a1bc18a5e" - } ] - } - }, { - "fullUrl" : "Location/1727135931067673000.a9013169-6a2b-43b5-808f-85bfde0f8796", - "resource" : { - "resourceType" : "Location", - "id" : "1727135931067673000.a9013169-6a2b-43b5-808f-85bfde0f8796", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.114222.8.7.6.5.4.1" - } ], - "name" : "STARLINKS.CDC.Stag", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] } - } - }, { - "fullUrl" : "Organization/1727135931068013000.3ee86f89-b9b0-4ffd-a206-d1dd46aa9949", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135931068013000.3ee86f89-b9b0-4ffd-a206-d1dd46aa9949", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "A" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "SPHL-000048" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1727135931067673000.a9013169-6a2b-43b5-808f-85bfde0f8796" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "SPHL-000048" - } ], - "name" : "CDPH, Viral and Rickettsial Disease Laboratory" - } - }, { - "fullUrl" : "PractitionerRole/1727135931066802000.c0bfe9b7-bd2c-4733-92f0-a4070369a8bb", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1727135931066802000.c0bfe9b7-bd2c-4733-92f0-a4070369a8bb", - "organization" : { - "reference" : "Organization/1727135931068013000.3ee86f89-b9b0-4ffd-a206-d1dd46aa9949" + }, + { + "fullUrl": "PractitionerRole/1731704147213550000.2782cfa7-176d-45f4-9da6-b3a7a0ca064d", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731704147213550000.2782cfa7-176d-45f4-9da6-b3a7a0ca064d", + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" + } + ] + }, + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" + } + ] + } + }, + "practitioner": { + "reference": "Practitioner/1731704147212340000.e2e0c2bb-9790-4d5b-bb08-7ab58adece2a" + }, + "location": [ + { + "reference": "Location/1731704147212528000.58fe3b52-dd06-4182-a73e-37f67635bd2e" + }, + { + "reference": "Location/1731704147212695000.ba243a96-dfd5-413d-8aa4-196dce741f6a" + }, + { + "reference": "Location/1731704147212956000.9bb0fed5-c0c7-4e37-bd10-970414515cd6" + }, + { + "reference": "Location/1731704147213139000.2c0cc0c1-c713-4a9b-93a2-9f205ea319e5" + }, + { + "reference": "Location/1731704147213310000.e1ec7b93-8462-4ab6-8cf4-9c8961fcc4cc" + }, + { + "reference": "Location/1731704147213481000.b8856f6f-53a4-417a-961f-45104e0cfd50" + } + ] } - } - }, { - "fullUrl" : "Location/1727135931069695000.7de98016-9ca2-41fa-ae43-f5bdb93709a5", - "resource" : { - "resourceType" : "Location", - "id" : "1727135931069695000.7de98016-9ca2-41fa-ae43-f5bdb93709a5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.114222.8.7.6.5.4.1" - } ], - "name" : "STARLINKS.CDC.Stag", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "fullUrl": "Practitioner/1731704147215800000.26615138-a081-4dec-8dd4-f397cc610177", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147215800000.26615138-a081-4dec-8dd4-f397cc610177", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "use": "official", + "family": "Collector", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Identifier" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731704147216669000.d101dec3-5e03-4524-a7de-fce7f3782bba", + "resource": { + "resourceType": "Practitioner", + "id": "1731704147216669000.d101dec3-5e03-4524-a7de-fce7f3782bba", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "use": "official", + "family": "Collectorx2", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Identifier" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD" + ] + } + ] } } - }, { - "fullUrl" : "Organization/1727135931069957000.71c19ffa-5756-45ab-9871-3441324a6a5c", - "resource" : { - "resourceType" : "Organization", - "id" : "1727135931069957000.71c19ffa-5756-45ab-9871-3441324a6a5c", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "A" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "SPHL-000048" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1727135931069695000.7de98016-9ca2-41fa-ae43-f5bdb93709a5" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "SPHL-000048" - } ], - "name" : "CDPH, Viral and Rickettsial Disease Laboratory" - } - } ] + ] } \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 index 42a140f28e6..749a5f886cf 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 @@ -1,11 +1,22 @@ -MSH|^~\&|OrderingFacilityApplicationName^2.16.840.1.114222.XXX^ISO|OrderingFacilityName^2.16.840.1.114222.XXX^ISO|txdshslabNBS^2.16.840.1.114222.4.1.181960.2^ISO|txdshslab^2.16.840.1.114222.4.1.181960^ISO|20190720091229|msh8placeholder|OML^O21^OML_O21|0123|P^A|2.5.1|42|msh14placeholder|AL|AL|FR|UNICODE UTF-8||UNICODE UTF-16|PHLabReport-NoAck^PHIN^2.16.840.1.113883.9.11^ISO -SFT|CDC^^789^Check Digit3^C3^CDC OML SFT&2.1.9.1&ISO^MD^Hospital C&2.16.8121.1.113883.9.11&ISO^A^CDC CLIA|ELIMS V11|STARLIMS|Binary ID unknown|testsft5data|20230802180802-0400 -PID|1||test^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO~PID123^^^SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^PI||Mega^HL7^MI^^^^L|Mind^FHIR^WI^^^^L|1640|F|||123 Main St^Altxad^AnyTown^IG^95802^USA^H^^Thurston County^^^2020&2024||12345^PRS^CP^real@example.com^1^713^5553861^1^himom^^4^17135553862|9865^EMR^SAT^alsoreal@exmaple.com^1^281^5553861||||||||||Y|11||||2031|Y|||202408211138|RSDT^0.0.0.1.1138^ISO -NK1|1|SURYAN&Prefix&Own&SpousePrefix&Spouse^GENARO^GR^JR^Sir^Md^L^I^^2000&2030^G^20000501102531^2030501102531^Dr|OTH^Other^HL70063^OT^OTHER RELATIONSHIP^L|4861 20TH AVE^^THUNDER MOUNTAIN^IG^99999^USA^H|^PRN^PH^example@exmaple.com^1^720^5553954^2^any^^^+1 720 555 3954|^WPN^PH^^1^555^4672293^^^^^+1 555 467 2293||20220501102531-0400|20230501102531-0400||||||||||||||||||||||^WPN^PH^^1^720^5553954^^^^^+1 720 555 3954|4861 20TH AVE^#B^AURORA^IG^99999^USA^H^World^King^12^8^2017&2025^2020^2021 -PV1|1||^^^Hospital Assigned&2.4.4.4&ISO|||^^^Hospital Prio&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID|1^BEETHOVEN^LUDWIG^B^2ND^DR^MD^^Namespace&AssigningSystem&UUID^B^^^DL^^^^^^^^MD|1^MOZART|1^CHOPIN||||||||1^BACH||||||||||||||||||||^202305061200|||||||20240801102531-0400|20240801102531-0400 -PV2|||||||||||12|Description -ORC|RE|Specimen123^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|||CM||||20230725||||||||||||CDPH, Viral and Rickettsial Disease Laboratory^^^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^XX^STARLINKS.CDC.Stag&2.16.840.1.114222.8.7.6.5.4.1&ISO^A^SPHL-000048 -OBR|1|Placer Identifier^Placer Identifier Namespace^Placer Universal ID^ISO|Filler Identifier^Filler Identifier Namespace^Filler Universal ID^ISO -OBX|1|CWE||subid|260415000^Not detected^SCT||range of a few||||F|||20230101000000||1^Frances^Quinlen||Device 001^SPTRDEV-001^2.17.840^ISO|20230912180802-0400||||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen||||QST -NTE|1|L|OBX Note|||20230201|20230202|20230203 -SPM|1|380604-p&Any lab USA-p&36D1332559-p&CLIA-p^380604-s&Any lab USA-s&36D1332559-s&CLIA-s||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|71836000^Nasopharyngeal structure (body structure)^SCT^^^^2020-09-01|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|1||TEST|||20210604112500+0000^20210604112501+0000|20210604112506+0000|||440500007^SNOMEDTEXT|||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||2|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67 +MSH|^~\&|OrderingFacilityApplicationName^2.16.840.1.114222.XXX^ISO|OrderingFacilityName^2.16.840.1.114222.XXX^ISO|txdshslabNBS^2.16.840.1.114222.4.1.181960.2^ISO|txdshslab^2.16.840.1.114222.4.1.181960^ISO|20190720091229|msh8placeholder|OML^O21^OML_O21|0123|P^A|2.5.1|42|msh14placeholder|AL|AL|FR|UNICODE UTF-8|ENG^English^ISO^altE^altEnglish^altISO^131^313^originaltext^2ndalt^Second Alt|UNICODE UTF-16|PHLabReport-NoAck^PHIN^2.16.840.1.113883.9.11^ISO~PHLabReport2x^PHIN^2.16.840.1.113883.9.11^ISO|Sending Responsible Org^1357-9&SomeText&LN&2468-5&SomeAltText&LN&1&2&OriginalText^1111^9^BCV^The Authority&4.2.8.2&ISO^BC^Clinic A&1.8.440.1.1138.9.22&ISO^NameRepCode1^OrgIdentifier2|Receiving Responsible Org^1133-5&SomeOtherText&LN&1298-7&SomeOtherAltText&LN&1&2&TheOriginalText^5555^8^CCTV^An Authority&45.24.167.43&ISO^BCVan^Clinic B&10.10.40.10.11380.90.22&ISO^NameRepCode2^OrgIdentifier3|SendingNetworkAddress^1.23.987.1.114222.XXX^ISO|ReceivingNetworkAddress^9.87.123.1.114222.XXX^ISO +SFT|CDC^A&Alias Name&HL70204^789^Check Digit3^C3^CDC OML SFT&2.1.9.1&ISO^MD^Hospital C&2.16.8121.1.113883.9.11&ISO^A^CDC CLIA|ELIMS V11|STARLIMS|Binary ID unknown|testsft5data|20230802180802-0400 +PID|1||Patidlist^forty^123^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO^20210113^20211230^IX&Ninth&HL7123^X&Tenth&HL7123~PID123^^^SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^PI~test^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO||Mega&Mr&MrOwnMega&Mrs&MrsOwn^HL7^MI^V^DR^BCN^L^Naaame^C&Name Context&HL7444^Yes^G^19900503^20030503^Prof~Mega&Mr&MrOwnMega&Mrs&MrsOwn^HL7^MI^V^DR^BCN^L^Naaame^C&Name Context&HL7444^Yes^G^19900503^20030503^Prof|Mind^FHIR^WI^^^^L~Mind2x^FHIR^WI^^^^L|1640|F^Female^HL70001||2106-3^White^HL70005~2131-1^Other Race^HL70005|123 Main St^Altxad^AnyTown^IG^95802^USA^H^^Thurston County^^^2020&2024~1234 Main St^Address 2x^AnyTown^IG^95802^USA^H^^Thurston County^^^2020&2024||12345^PRS^CP^real@example.com^1^713^5553861^1^himom^^4^17145553862~12345^PRS^CP^notreal@example.com^1^714^5553861^1^himom^^4^17135553862|9865^EMR^SAT^alsoreal@exmaple.com^1^281^5553861|E^English^HL70296|P^Domestic Partnet^HL70002|AGN^Agnostic^HL70006|32|||maybe~maybe not|U^Uknown^HL70189~AU^Also Uknown^HL70189|Bayou|Y|11|USA^United States^HL70171~CAN^Canada^HL70171|NA^Not Applicable^HL70172|A^American^HL70212|2031|Y|N|AL^Alias^HL70445~UA^Unknown^HL70445|202408211138|RSDT^0.0.0.1.1138^ISO|D^Dog^HL70446|||RA^Racing^HL70429|N^None^HL70171~SN^Still None^HL70171|40~41 +PD1|C^Small Children Dependent^HL70223^M^Medical Supervision Required^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3~O^Other^HL70223^U^Unknown^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3|A^Alone^HL70220^F^Family^HL70220^2.5.1^4^TEST^F^Family^HL70220^2.5.1^8.44.235.1.113883.3.3|Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier~Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier||F^Full-time student^HL70231^N^Not a student^HL70231^2.5.1^4^TEST^N^Not a student^HL70231^2.5.1^8.44.235.1.113883.3.3|T^TEST^HL70295^P^Prod^HL70295^2.5.1^4^TEST^D^Debug^HL70295^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient has a living will but it is not on file^HL70315^I^No, patient does not have a living will but information was provided^HL70315^2.5.1^4^TEST^U^Unknown^HL70315^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient is a documented donor, but documentation is not on file^HL70316^I^No, patient is not a documented donor, but information was provided^HL70316^2.5.1^4^TEST^U^Unknown^HL70316^2.5.1^8.44.235.1.113883.3.3|N|18547545^^^NIST MPI&2.16.840.1.113883.3.72.5.30.2&ISO^MR^University H&2.16.840.1.113883.3.0&ISO~111111111^^^SSN&2.16.840.1.113883.4.1&ISO^SS^SSA&2.16.840.1.113883.3.184&ISO|F^Family only^HL70215^N^No Publicity^HL70215^2.5.1^4^TEST^U^Unknown^HL70215^2.5.1^8.44.235.1.113883.3.3|N|20230501102531-0400|1st Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^1st OrgIdentifier~2nd Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^2nd OrgIdentifier|DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3~DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3|A^Active^HL70441^I^Inactive^HL70441^2.5.1^4^TEST^O^Other^HL70441^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400|20230501102531-0400|AUSA^Australian Army^HL70140^AUSFA^Australian Air Force^HL70140^2.5.1^4^TEST^AUSN^Australian Navy^HL70140^2.5.1^8.44.235.1.113883.3.3|E1... E9^Enlisted^HL70141^O1 ... O9^Officers^HL70141^2.5.1^4^TEST^W1 ... W4^Warrent Officers^HL70141^2.5.1^8.44.235.1.113883.3.3|ACT^Active duty^HL70142^DEC^Deceased^HL70142^2.5.1^4^TEST^RET^Retired^HL70142^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400 +NTE|1|L|Just a little note on the patient~another little comment|||20210206|20210207|20210208|CC^Coded Patient note +NTE|2|L|Accession level coment.|RE^Remark^HL70364^z^x^y^2.5.1^a^b|Bob R.N.|20230531|20230601|20350201|CC^Coded comment for patient note +NK1|1|SURYAN&Prefix&Own&SpousePrefix&Spouse^GENARO^GR^JR^Sir^Md^L^I^CON&Context of the name&HL70448^2000&2030^G^20000501102531^2030501102531^Dr~SURYANS&Prefix&Own&SpousePrefix&Spouse^GENARO^GR^JR^Sir^Md^L^I^CON&Context of the name&HL70448^2000&2030^G^20000501102531^2030501102531^Dr|OTH^Other^HL70063^OT^OTHER RELATIONSHIP^L|4861 20TH AVE^^THUNDER MOUNTAIN^IG^99999^USA^H~4860 21ST AVE^^THUNDER MOUNTAIN^IG^99999^USA^H|^PRN^PH^example@exmaple.com^1^720^5553954^2^any^^^+1 720 555 3954~^PRN^PH^example2@exmaple.com^1^720^5553954^2^any^^^+1 720 555 3954|^WPN^PH^^1^555^4672293^^^^^+1 555 467 2293~^WPN^PH^^1^666^4672293^^^^^+1 666 467 2293|F^Federal Agency^HL70131|20220501102531-0400|20230501102531-0400|||052479^^^^^^20160822|HospitalsRUs^^112233^^^^^^^HRU~Hospitals 2.0^^112233^^^^^^^H20||N^Not Applicable^HL70001|19860505||||E^English^HL70296|||||||||||^WPN^PH^^1^720^5553954^^^^^+1 720 555 3954~^WPN^PH^^1^666^5553954^^^^^+1 666 555 3954|4861 20TH AVE^#B^AURORA^IG^99999^USA^H^World^King^12^8^2017&2025^2020^2021~4861 24TH AVE^#B^AURORA^IG^99999^USA^H^World^King^12^8^2017&2025^2020^2021|052479^^^^^^^20210428~052470^^^^^^^20210429|||||||^VHN^SAT^^1^314^5553131^^^^^+1 314 555 3131|^AWN^FX^^1^281^5558181^^^^^+1 281 555 8181 +NK1|2|SUPERMAN&Prefix&Own&SpousePrefix&Spouse^GENARO^GR^JR^Sir^Md^L^I^CON&Context the namee&HL70448^2000&2030^G^20000501102531^2030501102531^Dr|OTH^Other^HL70063^OT^OTHER RELATIONSHIP^L|4861 20TH AVE^^THUNDER MOUNTAIN^IG^99999^USA^H|^PRN^PH^example2@exmaple.com^1^720^5553954^2^any^^^+1 720 555 3955|^WPN^PH^^1^555^4672293^^^^^+1 555 467 2294|F^Federal Agency^HL70131|20220501102531-0400|20230501102531-0400|||052479^^^^^^20160822|HospitalsRUs^^112233^^^^^^^HRU||N^Not Applicable^HL70001|19860505||||E^English^HL70296|||||||||||^WPN^PH^^1^720^5553954^^^^^+1 720 555 3955|4861 20TH AVE^#B^AURORA^IG^99999^USA^H^World^King^12^8^2017&2025^2020^2021|052479^^^^^^^20210428|||||||^VHN^SAT^^1^314^5553131^^^^^+1 314 555 3132|^AWN^FX^^1^281^5558181^^^^^+1 281 555 8182 +PV1|1|O|A&Point OF Care&C^1&Room&3^B&Bed&A^Hospital Assigned&2.4.4.4&ISO^^R^&Building^&Floor^Totally A Real Location^Comprehensive&&UID4This^AA&AssigningAUTH&ISO|R^Routine^HL70007|232323|^^^Hospital Prio&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID|1^BEETHOVEN^LUDWIG^B^2ND^DR^MD^^Namespace&AssigningSystem&UUID^B^^^DL^^^^^^^^MD~1^BEETHOVEN2^LUDWIG^B^2ND^DR^MD^^Namespace&AssigningSystem&UUID^B^^^DL^^^^^^^^MD|1^MOZART~1^MOZARTJR|1^CHOPIN~1^CHOPINSR|URO^Urology Service^HL70069|^^^^^^^^Its Temporary|P^Passed^HL70087|R^Re-admission^HL70092|RL^Real Life^HL70023||VIP^Very Interesting Person^HL70099|1^BACH~1^BACHtheSecond|H^Human Patient^HL70018|22|||||||||||20020101|C^Collectors^HL70021|1|0|Y^Yes^HL70111|20080101|H^Happy^HL70112|^202305061200|F^Fed^HL70114|H^A Hospital Of Course^HL70115||A^Active^HL70117|^^^^^^^^Pending Location|^^^^^^^^Prior Location|20240801102531-0400|20240801102531-0400|100|199|142|130|alternate visit|A^Account Level^HL70326||Service Description|episode identifier +PV2|^^^Hospital PriorPending&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID||1^AD||||413^V~423^X|20230601102531-0400|20230701102531-0400|5|12|Description|1^BEETHOVEN&VAN&Referral Source Code1&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^BEETHOVEN&VAN&Referral Source Code2&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||EMP_ILL||||||100^PublicCode|SEC|Org1^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO~Org2^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO||3^Elective^HL70217|20230501102531-0400|||20220501102531-0400|||||||||444^MODE||123^CARELEVEL1 +ORC|RE|Specimen123^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12311^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12322^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|CM|E||Specimen12333&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^Specimen12333454&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO|20230725|71^^ORC.10Name~71^^ORC.10Name2|82^^ORC.11Name~82^^ORC.11Name2|93^^ORC.12Name~93^^ORC.12Name2|12.12.12&enter location id&L|123^^^+123~1234^^^+1234|202101021000||EO^entering org text^HL79999|ED^entering device text^HL79999|60^^ORC.19Name~60^^ORC.19Name2||CDPH, Viral and Rickettsial Disease Laboratory^^^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^XX^STARLINKS.CDC.Stag&2.16.840.1.114222.8.7.6.5.4.1&ISO^A^SPHL-000048~CDPH, Viral and Rickettsial Disease Laboratory part two^^^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO|111 Street St^^Streetsville^ST~112 Street St^^Streetsville^ST|456^^^+456~4567^^^+4567|111 Road Rd^^Roadsville^RD~112 Road Rd^^Roadsville^RD|OS^order status^HL79999||20260404|EMP^Employee^HL70177|I^Inpatient Order^HL70482|EL^Electronic^HL70483|UMM^Universal Modifier^HL70000|20250403|33~332 +OBR|1|Placer Identifier^Placer Identifier Namespace^Placer Universal ID^ISO|Filler Identifier^Filler Identifier Namespace^Filler Universal ID^ISO|123^Universal service identifier||202202021022||20240220|1771|1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext~1^Collectorx2&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext|G|512^Danger code|R^relevent info^ISO|202102021000|ID^BOUIN&Bouin's solution&HL70371^Collection Method^LN&Left Naris&HL70163^^CMMC&Collection Method Modifer Code&HL7|1^Ordering&VAN&Provider&VAL&JollyROGER~2^Ordering&VAN&Provider&VAL&JollyROGER|^WPN^BP^^1^260^7595016^^^^^+1 260 759 5016~^WPN^Internet^order.callback@email.com~^WPN^BP^^1^260^7595016^^^^^+1 260 759 5016~^WPN^Internet^order.callback2@email.com|placer1|placer2|filler1|filler2||100&$^16&code|OTH|F|444&ParentId^888^ParentOBSdescriptor||1^result&VAN&copiesto&VAL&NotSoJollyROGER~2^results&VAN&copiesto&VAL&NotSoJollyROGER|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2||3216^ReasonForStudy~3216^ReasonForStudy2||123&Assistant&Results Interpreter&S&ESQ&DR&MD&&Assigning Authority&2.1.4.1&ISO^20230401102531-0400^20230501102531-0400^Point of Care^Room 101^Bed A^Hospital A&2.16.840.1.113883.9.11&ISO^active^^Building 123^Floor A~123&Assistant&Results Interpreter&S&ESQ&DR&MD&&Assigning Authority&2.1.4.1&ISO^20230401102531-0400^20230501102531-0400^Point of Care^Room 101^Bed A^Hospital A&2.16.840.1.113883.9.11&ISO^active^^Building 123^Floor A|||20230806123359-0500|||4438^Collectors Comment~4438^Collectors Comment2|||||5019^Procedure Code|887766^Procedure Code Modifier~887766^Procedure Code Modifier2|7461^Placer Supplemental~7461^Placer Supplemental2|8811^Fillter Supplemental~8811^Fillter Supplemental2|71435^Medically Necessary Duplicate Procedure|N|443331^Parent Universal Service Identifier|||Alt^Placer Order~Alt^Placer Order2|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2 +NTE|1|L|Note about the observation request~second~third~fourth|||20230207|20230208|20230209|CC^Coded Request note +NTE|2|L|More request notes|||20230204|20230205|20230206 +OBX|1|CWE|80383-2^Flu A^LN|subid|260415000^Not detected^SCT|g^gram^HL79999|range of a few|UP^Up to you|99|ST|F|20000101|user defined|20230101000000|11D1111111^CSV uploads^CLIA|1^Frances^Quinlen|^BD Veritor System for Rapid Detection of SARS-CoV-2|Device 001^SPTRDEV-001^2.17.840^ISO|20230912180802-0400|BE^Bilateral Ears^HL70163|entity id||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen|26|RC^root cause^HL79900|LPC^Local Process^HL79900|QST|30|31|32^value absent reason|33^eip +NTE|1|L|OBX Note|RE^Remark|Bob R.N.A.|20230211|20230212|20230213|CC^This is a coded comment for an observation note +NTE|2|L|OBX Note 2|RE^Remark|Bob R.N.A.|20230211|20230212|20230213|CC^This is a coded comment for an observation note +OBX|2|CWE|80383-3^Flu B^LN|subid|260415000^Not detected^SCT|g^gram^HL79999|range of a few|UP^Up to you~UP^Up to you too|99|ST~SP|F|20000101|user defined|20230101000000|11D1111111^CSV uploads^CLIA|1^Frances^Quinlen~2^France^Quinlen|^BD Veritor System for Rapid Detection of SARS-CoV-2~^Eye Test|Device 001^SPTRDEV-001^2.17.840^ISO~Device 002^SPTRDEV-001^2.17.840^ISO|20230912180802-0400|BE^Bilateral Ears^HL70163~SE^Single Ears^HL70163|entity id||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen|26|RC^root cause^HL79900|LPC^Local Process^HL79900|QST|30|31|32^value absent reason|33^eip +NTE|1|L|OBX Note 3|RE^Remark|Bob R.N.A.|20230221|20230222|20230223|CC^Th1is is a coded comment for an observation note +NTE|2|L|OBX Note 4|RE^Remark|Bob R.N.A.|20230221|20230222|20230223|CC^This is a coded comment for an observation note +SPM|1|380604-p&Any lab USA-p&36D1332559-p&CLIA-p^380604-s&Any lab USA-s&36D1332559-s&CLIA-s||440500555^SNOMEDTEXT^SCT^12333-0^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500022^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500111^SNOMEDTEXT^SCT^12311-1^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|71836000^Nasopharyngeal structure (body structure)^SCT^^^^2020-09-01|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500022^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|1||TEST~TEST2|||20210604112500+0000^20210604112501+0000|20210604112506+0000|||440500007^SNOMEDTEXT~440500022^SNOMEDTEXT2|||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||2|440500777^SNOMEDTEXT^SCT^1235-9^LOINCTEXT^LN^2.67 +SPM|2|380614-p&Another Lab USA-p&36D1332559-p&CLIA-p^380604-s&Any lab USA-s&36D1332559-s&CLIA-s||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|71836000^Nasopharyngeal structure (body structure)^SCT^^^^2020-09-01|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|1||TEST|||20210604112500+0000^20210604112501+0000|20210604112506+0000|||440500007^SNOMEDTEXT|||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||2|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67 diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.fhir new file mode 100644 index 00000000000..92f82c88174 --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.fhir @@ -0,0 +1,821 @@ +{ + "resourceType" : "Bundle", + "id" : "1731705729159039000.4fd21c7d-fb4e-407d-b9ce-e43350da7dab", + "meta" : { + "lastUpdated" : "2024-11-15T13:22:09.163-08:00" + }, + "identifier" : { + "system" : "https://reportstream.cdc.gov/prime-router", + "value" : "20230816123358" + }, + "type" : "message", + "timestamp" : "2023-08-16T10:33:58.000-07:00", + "entry" : [ { + "fullUrl" : "MessageHeader/1731705729192228000.484ff76f-9ac2-44d8-91f2-d8273517323c", + "resource" : { + "resourceType" : "MessageHeader", + "id" : "1731705729192228000.484ff76f-9ac2-44d8-91f2-d8273517323c", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension" : [ { + "url" : "MSH.7", + "valueString" : "20230816123358-0500" + } ] + } ], + "eventCoding" : { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", + "code" : "O21", + "display" : "OML^O21^OML_O21" + } + } + }, { + "fullUrl" : "Provenance/1731705729449940000.e7a7faf1-4db2-48c1-a189-5a5c14a1695c", + "resource" : { + "resourceType" : "Provenance", + "id" : "1731705729449940000.e7a7faf1-4db2-48c1-a189-5a5c14a1695c", + "recorded" : "2023-08-16T12:33:58-05:00", + "activity" : { + "coding" : [ { + "display" : "OML^O21^OML_O21" + } ] + } + } + }, { + "fullUrl" : "Provenance/1731705729460316000.fe0b7da3-445a-4bb0-bf46-8c58bfa23ef0", + "resource" : { + "resourceType" : "Provenance", + "id" : "1731705729460316000.fe0b7da3-445a-4bb0-bf46-8c58bfa23ef0", + "recorded" : "2024-11-15T13:22:09Z", + "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], + "activity" : { + "coding" : [ { + "code" : "v2-FHIR transformation" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } ] + }, + "who" : { + "reference" : "Organization/1731705729459761000.1cd3ac17-48fd-4cc5-870e-6af3f5bdb692" + } + } ] + } + }, { + "fullUrl" : "Organization/1731705729459761000.1cd3ac17-48fd-4cc5-870e-6af3f5bdb692", + "resource" : { + "resourceType" : "Organization", + "id" : "1731705729459761000.1cd3ac17-48fd-4cc5-870e-6af3f5bdb692", + "identifier" : [ { + "value" : "CDC PRIME - Atlanta" + }, { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } ] + } + }, { + "fullUrl" : "Patient/1731705729473432000.f4988058-da93-4525-af02-876b962131b6", + "resource" : { + "resourceType" : "Patient", + "id" : "1731705729473432000.f4988058-da93-4525-af02-876b962131b6" + } + }, { + "fullUrl" : "Provenance/1731705729473970000.63e88971-a979-4b24-a966-e750bc008853", + "resource" : { + "resourceType" : "Provenance", + "id" : "1731705729473970000.63e88971-a979-4b24-a966-e750bc008853", + "target" : [ { + "reference" : "Patient/1731705729473432000.f4988058-da93-4525-af02-876b962131b6" + } ], + "recorded" : "2024-11-15T13:22:09Z", + "activity" : { + "coding" : [ { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } ] + } + } + }, { + "fullUrl" : "Specimen/1731705729479638000.55b59895-2fcc-45a8-a24f-7e681c69a0fa", + "resource" : { + "resourceType" : "Specimen", + "id" : "1731705729479638000.55b59895-2fcc-45a8-a24f-7e681c69a0fa", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "OBR" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "ID" + } ] + }, + "receivedTime" : "2024-02-20T09:00:00Z", + "_receivedTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202402200900" + } ] + }, + "collection" : { + "collector" : { + "reference" : "Practitioner/1731705729488249000.304d3dee-4a14-4f81-b1e0-f6b8cab75b37" + }, + "collectedPeriod" : { + "start" : "2020-08-18T12:33:58-05:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200818123358-0500" + } ] + }, + "end" : "2020-08-19T12:33:58-05:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200819123358-0500" + } ] + } + }, + "quantity" : { + "value" : 1771 + }, + "bodySite" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70163" + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v2-0163", + "code" : "LN", + "display" : "Left Naris" + } ] + } + }, + "container" : [ { + "additiveCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70371" + } ], + "code" : "BOUIN", + "display" : "Bouin's solution" + } ] + } + } ], + "condition" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL7" + } ], + "code" : "CMMC", + "display" : "Collection Method Modifer Code" + } ] + } ], + "note" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString" : "OBR.15.3" + } ], + "text" : "Collection Method" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4439", + "display" : "Collectors Comment" + } ] + } + } ], + "text" : "4439, Collectors Comment" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4438", + "display" : "Collectors Comment2" + } ] + } + } ], + "text" : "4438, Collectors Comment2" + } ] + } + }, { + "fullUrl" : "Practitioner/1731705729488249000.304d3dee-4a14-4f81-b1e0-f6b8cab75b37", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1731705729488249000.304d3dee-4a14-4f81-b1e0-f6b8cab75b37", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "Collector", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + }, { + "fullUrl" : "ServiceRequest/1731705729634480000.0a8fff9a-2428-4957-aa35-e353b47c95ce", + "resource" : { + "resourceType" : "ServiceRequest", + "id" : "1731705729634480000.0a8fff9a-2428-4957-aa35-e353b47c95ce", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode" : "RE" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ { + "url" : "OBR.15.1", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "ID" + } ] + } + }, { + "url" : "OBR.15.2", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70371" + } ], + "code" : "BOUIN", + "display" : "Bouin's solution" + } ] + } + }, { + "url" : "OBR.15.3", + "valueString" : "Collection Method" + }, { + "url" : "OBR.15.4", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70163" + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v2-0163", + "code" : "LN", + "display" : "Left Naris" + } ] + } + }, { + "url" : "OBR.15.6", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL7" + } ], + "code" : "CMMC", + "display" : "Collection Method Modifer Code" + } ] + } + }, { + "url" : "OBR.7", + "valueDateTime" : "2020-08-18T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200818123358-0500" + } ] + } + }, { + "url" : "OBR.8", + "valueDateTime" : "2020-08-19T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200819123358-0500" + } ] + } + }, { + "url" : "OBR.39", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4439", + "display" : "Collectors Comment" + } ] + } + }, { + "url" : "OBR.39", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4438", + "display" : "Collectors Comment2" + } ] + } + }, { + "url" : "OBR.9", + "valueQuantity" : { + "value" : 1771 + } + }, { + "url" : "OBR.10", + "valueReference" : { + "reference" : "Practitioner/1731705729630398000.8c5ada20-af75-43c7-8e65-59e69a500c78" + } + }, { + "url" : "OBR.10", + "valueReference" : { + "reference" : "Practitioner/1731705729633447000.492f5c4f-9a16-47cf-8806-b3b5f0c1930f" + } + }, { + "url" : "OBR.14", + "valueDateTime" : "2024-02-20T09:00:00Z", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202402200900" + } ] + } + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.2" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } ] + }, + "value" : "Specimen123" + } ], + "status" : "unknown", + "subject" : { + "reference" : "Patient/1731705729473432000.f4988058-da93-4525-af02-876b962131b6" + }, + "specimen" : [ { + "reference" : "Specimen/1731705729479638000.55b59895-2fcc-45a8-a24f-7e681c69a0fa" + } ] + } + }, { + "fullUrl" : "Practitioner/1731705729630398000.8c5ada20-af75-43c7-8e65-59e69a500c78", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1731705729630398000.8c5ada20-af75-43c7-8e65-59e69a500c78", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "Collector", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + }, { + "fullUrl" : "Practitioner/1731705729633447000.492f5c4f-9a16-47cf-8806-b3b5f0c1930f", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1731705729633447000.492f5c4f-9a16-47cf-8806-b3b5f0c1930f", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "RUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "Collector2", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "RUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + } ] +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.hl7 new file mode 100644 index 00000000000..a6b5101f2d8 --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.hl7 @@ -0,0 +1,4 @@ +MSH|^~\&|||||20230816123358-0500||OML^O21^OML_O21|20230816123358||2.5.1 +PID|1 +ORC|RE|Specimen123 +OBR|1||||||20200818123358-0500|20200819123358-0500|1771|1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^Collector2&VAN&Identifier&VAL&ROGER^RUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||||202402200900|ID^BOUIN&Bouin's solution&HL70371^Collection Method^LN&Left Naris&HL70163^^CMMC&Collection Method Modifer Code&HL7||||||||||||||||||||||||4439^Collectors Comment~4438^Collectors Comment2 \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir index 68061ce8e8c..0f3ac0b578d 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir @@ -1,486 +1,530 @@ { - "resourceType" : "Bundle", - "id" : "1716961316041553000.f651ceb5-a4cf-41b2-8d4e-7a9fff910e55", - "meta" : { - "lastUpdated" : "2024-05-29T01:41:56.050-04:00" + "resourceType": "Bundle", + "id": "1731634216439480000.0d5e5606-84e1-416d-a4ef-b600540b7eec", + "meta": { + "lastUpdated": "2024-11-14T17:30:16.443-08:00" }, - "identifier" : { - "system" : "https://reportstream.cdc.gov/prime-router", - "value" : "20230816123358" + "identifier": { + "system": "https://reportstream.cdc.gov/prime-router", + "value": "20230816123358" }, - "type" : "message", - "timestamp" : "2023-08-16T13:33:58.000-04:00", - "entry" : [ + "type": "message", + "timestamp": "2023-08-16T10:33:58.000-07:00", + "entry": [ { - "fullUrl" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435", - "resource" : { - "resourceType" : "MessageHeader", - "id" : "bb504ecd-c2ab-3be3-91d8-6065e2bce435", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", - "valueString" : "^~\\\u0026#" + "fullUrl": "MessageHeader/1731634216472574000.7a065ed2-ded0-416c-b378-a498ea6ae207", + "resource": { + "resourceType": "MessageHeader", + "id": "1731634216472574000.7a065ed2-ded0-416c-b378-a498ea6ae207", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", + "valueString": "^~\\\u0026#" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension": [ { - "url" : "MSH.7", - "valueString" : "20230816123358-0500" + "url": "MSH.7", + "valueString": "20230816123358-0500" } ] } ], - "eventCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "R01", - "display" : "ORU^R01^ORU_R01" + "eventCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v2-0003", + "code": "R01", + "display": "ORU^R01^ORU_R01" } } }, { - "fullUrl" : "Provenance/1716961316634102000.d0168ca6-dc1a-4013-a71a-daa363d61cf9", - "resource" : { - "resourceType" : "Provenance", - "id" : "1716961316634102000.d0168ca6-dc1a-4013-a71a-daa363d61cf9", - "target" : [ + "fullUrl": "Provenance/1731634216718799000.c4ec1acf-355b-44b6-92e2-6418ce78bf86", + "resource": { + "resourceType": "Provenance", + "id": "1731634216718799000.c4ec1acf-355b-44b6-92e2-6418ce78bf86", + "target": [ { - "reference" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435" + "reference": "MessageHeader/1731634216472574000.7a065ed2-ded0-416c-b378-a498ea6ae207" }, { - "reference" : "DiagnosticReport/1716961316896240000.39e01eaf-410c-42f1-acea-7a1f2ecdcb72" + "reference": "DiagnosticReport/1731634216918992000.14669936-2835-442a-a340-d22038472fac" } ], - "recorded" : "2023-08-16T12:33:58-05:00", - "activity" : { - "coding" : [ + "recorded": "2023-08-16T12:33:58-05:00", + "activity": { + "coding": [ { - "display" : "ORU^R01^ORU_R01" + "display": "ORU^R01^ORU_R01" } ] } } }, { - "fullUrl" : "Provenance/1716961316642461000.6cfbcf79-72d3-4bf9-a69d-aae85869cff5", - "resource" : { - "resourceType" : "Provenance", - "id" : "1716961316642461000.6cfbcf79-72d3-4bf9-a69d-aae85869cff5", - "recorded" : "2024-05-29T01:41:56Z", - "policy" : [ + "fullUrl": "Provenance/1731634216724833000.565c3f16-9225-406b-bcb9-6c0b0a51cab9", + "resource": { + "resourceType": "Provenance", + "id": "1731634216724833000.565c3f16-9225-406b-bcb9-6c0b0a51cab9", + "recorded": "2024-11-14T17:30:16Z", + "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], - "activity" : { - "coding" : [ + "activity": { + "coding": [ { - "code" : "v2-FHIR transformation" + "code": "v2-FHIR transformation" } ] }, - "agent" : [ + "agent": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "assembler" + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" } ] }, - "who" : { - "reference" : "Organization/1716961316641855000.ebbfbdce-2d6d-4ab0-ad32-f73ad0f8d4c9" + "who": { + "reference": "Organization/1731634216724400000.152de53c-0625-4e92-811d-49aa2dfd7a6e" } } ] } }, { - "fullUrl" : "Organization/1716961316641855000.ebbfbdce-2d6d-4ab0-ad32-f73ad0f8d4c9", - "resource" : { - "resourceType" : "Organization", - "id" : "1716961316641855000.ebbfbdce-2d6d-4ab0-ad32-f73ad0f8d4c9", - "identifier" : [ + "fullUrl": "Organization/1731634216724400000.152de53c-0625-4e92-811d-49aa2dfd7a6e", + "resource": { + "resourceType": "Organization", + "id": "1731634216724400000.152de53c-0625-4e92-811d-49aa2dfd7a6e", + "identifier": [ { - "value" : "CDC PRIME - Atlanta" + "value": "CDC PRIME - Atlanta" }, { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.237821" + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" } ] } }, { - "fullUrl" : "Patient/1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603", - "resource" : { - "resourceType" : "Patient", - "id" : "1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603" + "fullUrl": "Patient/1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9", + "resource": { + "resourceType": "Patient", + "id": "1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9" } }, { - "fullUrl" : "Provenance/1716961316659013000.35706f3b-3486-41a8-be32-329480dc4a88", - "resource" : { - "resourceType" : "Provenance", - "id" : "1716961316659013000.35706f3b-3486-41a8-be32-329480dc4a88", - "target" : [ + "fullUrl": "Provenance/1731634216736199000.5a89e2a4-1e6a-4cc1-9a6b-74078ebea5a0", + "resource": { + "resourceType": "Provenance", + "id": "1731634216736199000.5a89e2a4-1e6a-4cc1-9a6b-74078ebea5a0", + "target": [ { - "reference" : "Patient/1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603" + "reference": "Patient/1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9" } ], - "recorded" : "2024-05-29T01:41:56Z", - "activity" : { - "coding" : [ + "recorded": "2024-11-14T17:30:16Z", + "activity": { + "coding": [ { - "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", - "code" : "UPDATE" + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" } ] } } }, { - "fullUrl" : "Specimen/1716961316664583000.67c0f8d7-f9f0-47ea-97a4-6d6501f0a9db", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716961316664583000.67c0f8d7-f9f0-47ea-97a4-6d6501f0a9db", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" + "fullUrl": "Specimen/1731634216738434000.20a42533-27b1-4fdf-a8d7-c16a1b496ec5", + "resource": { + "resourceType": "Specimen", + "id": "1731634216738434000.20a42533-27b1-4fdf-a8d7-c16a1b496ec5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" } ], - "collection" : { - "collector" : { - "reference" : "Practitioner/1727307988977002000.0a18791e-84bf-45ca-9e55-433f4a5954e0" + "collection": { + "collector": { + "reference": "Practitioner/1731634216745250000.bce49621-be5b-43c8-ba98-5f5a86320a7c" }, - "collectedPeriod" : { - "start" : "2023-08-16T12:33:58-05:00", - "_start" : { - "extension" : [ + "collectedPeriod": { + "start": "2023-08-16T12:33:58-05:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230816123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230816123358-0500" } ] }, - "end" : "2023-09-16T12:33:58-05:00", - "_end" : { - "extension" : [ + "end": "2023-09-16T12:33:58-05:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230916123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230916123358-0500" } ] } } }, - "note" : [ + "note": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "4438", - "display" : "Collectors Comment" + "code": "4438", + "display": "Collectors Comment" } ] } } ], - "text" : "4438, Collectors Comment" + "text": "4438, Collectors Comment" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "4438", - "display" : "Collectors Comment2" + "code": "4438", + "display": "Collectors Comment2" } ] } } ], - "text" : "4438, Collectors Comment2" + "text": "4438, Collectors Comment2" } ] } }, { - "fullUrl" : "Practitioner/1727307988977002000.0a18791e-84bf-45ca-9e55-433f4a5954e0", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727307988977002000.0a18791e-84bf-45ca-9e55-433f4a5954e0", - "extension" : [ + "fullUrl": "Practitioner/1731634216745250000.bce49621-be5b-43c8-ba98-5f5a86320a7c", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216745250000.bce49621-be5b-43c8-ba98-5f5a86320a7c", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" + "system": "urn:oid:AssigningSystem", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "Collector", - "_family" : { - "extension" : [ + "use": "official", + "family": "Collector", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Identifier" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Identifier" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "ServiceRequest/1727307989120333000.e424bf5a-9a96-4b07-8354-c9f7eed60475", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1716961316869011000.096b7105-6f01-44d4-b57c-ca2e7dfe9cfc", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ + "fullUrl": "ServiceRequest/1731634216893698000.d34c7a39-38d3-4d7b-8d00-2aca01e58340", + "resource": { + "resourceType": "ServiceRequest", + "id": "1731634216893698000.d34c7a39-38d3-4d7b-8d00-2aca01e58340", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731634216865391000.b34c86c9-6d5c-4ce5-bf84-e862f1380b22" + } + }, + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731634216867480000.1870d114-caca-4744-b37c-921de9b3b358" + } + }, + { + "url": "OBR.18", + "valueString": "placer1" + }, { - "url" : "OBR.20", - "valueString" : "filler1" + "url": "OBR.19", + "valueString": "placer2" }, { - "url" : "OBR.21", - "valueString" : "filler2" + "url": "OBR.20", + "valueString": "filler1" }, { - "url" : "OBR.22", - "valueString" : "20230816123358-0500" + "url": "OBR.7", + "valueDateTime": "2023-08-16T12:33:58-05:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230816123358-0500" + } + ] + } }, { - "url" : "OBR.23", - "extension" : [ + "url": "OBR.8", + "valueDateTime": "2023-09-16T12:33:58-05:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230916123358-0500" + } + ] + } + }, + { + "url": "OBR.21", + "valueString": "filler2" + }, + { + "url": "OBR.22", + "valueString": "20230816123358-0500" + }, + { + "url": "OBR.23", + "extension": [ { - "url" : "moc-1-1-monetary-amount", - "valueString" : "100" + "url": "moc-1-1-monetary-amount", + "valueString": "100" }, { - "url" : "moc-1-2-monetary-denomination", - "valueString" : "$" + "url": "moc-1-2-monetary-denomination", + "valueString": "$" }, { - "url" : "moc-2-charge-code", - "valueCodeableConcept" : { - "coding" : [ + "url": "moc-2-charge-code", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "16", - "display" : "code" + "code": "16", + "display": "code" } ] } @@ -488,686 +532,666 @@ ] }, { - "url" : "OBR.24", - "valueId" : "OTH" + "url": "OBR.24", + "valueId": "OTH" }, { - "url" : "OBR.25", - "valueId" : "F" + "url": "OBR.25", + "valueId": "F" }, { - "url" : "OBR.26", - "extension" : [ + "url": "OBR.26", + "extension": [ { - "url" : "prl-1-parent-observation-identifier", - "valueCodeableConcept" : { - "coding" : [ + "url": "prl-1-parent-observation-identifier", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "444", - "display" : "ParentId" + "code": "444", + "display": "ParentId" } ] } }, { - "url" : "prl-2-parent-observation-sub-identifier", - "valueString" : "888" + "url": "prl-2-parent-observation-sub-identifier", + "valueString": "888" }, { - "url" : "prl-3-parent-observation-descriptor", - "valueString" : "ParentOBSdescriptor" + "url": "prl-3-parent-observation-descriptor", + "valueString": "ParentOBSdescriptor" } ] }, { - "url" : "OBR.28", - "valueReference" : { - "reference" : "Practitioner/1716961316835983000.61e70b77-5ee6-4d95-8b7d-9c4b3125fcef" + "url": "OBR.28", + "valueReference": { + "reference": "Practitioner/1731634216870163000.2f2043b5-a751-41a2-a427-eb798f9f6906" } }, { - "url" : "OBR.28", - "valueReference" : { - "reference" : "Practitioner/1716961316838839000.5be961a2-d98a-4eb3-9d46-3537f7033b7b" + "url": "OBR.28", + "valueReference": { + "reference": "Practitioner/1731634216871745000.382fe363-1304-4a29-99a6-b8759807ae53" } }, { - "url" : "OBR.29", - "valueIdentifier" : { - "extension" : [ + "url": "OBR.29", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CSV" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CSV" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "11D1111111" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "11D1111111" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Other CSV" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Other CSV" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "22D2222222" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "22D2222222" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA2" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" } }, { - "url" : "OBR.33", - "valueReference" : { - "reference" : "PractitionerRole/1716961316848195000.52ecbb4d-0b38-4f86-bddb-4ac6f8f685fb" + "url": "OBR.33", + "valueReference": { + "reference": "PractitionerRole/1731634216882657000.399c904e-f440-4e8d-8319-fceea2fac4e4" } }, { - "url" : "OBR.33", - "valueReference" : { - "reference" : "PractitionerRole/1716961316852060000.77701d25-aecf-4bf8-9f67-7180a7ededc3" + "url": "OBR.33", + "valueReference": { + "reference": "PractitionerRole/1731634216885373000.011254cf-3a85-43cb-aee3-18763979a19e" } }, { - "url" : "OBR.36", - "valueString" : "20230816123358-0500" + "url": "OBR.36", + "valueString": "20230816123358-0500" }, { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1716961316856284000.d716624b-ac2b-494a-a36a-85beb8f20234" - } - }, - { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1716961316859495000.a5f31f5c-e07d-40c2-ab54-82a9b9a9a6ba" - } - }, - { - "url" : "OBR.39", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.39", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "4438", - "display" : "Collectors Comment" + "code": "4438", + "display": "Collectors Comment" } ] } }, { - "url" : "OBR.39", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.39", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "4438", - "display" : "Collectors Comment2" + "code": "4438", + "display": "Collectors Comment2" } ] } }, { - "url" : "OBR.44", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.44", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" } ], - "code" : "5019", - "display" : "Procedure Code" + "code": "5019", + "display": "Procedure Code" } ] } }, { - "url" : "obr-45-procedure-code-modifier", - "valueCodeableConcept" : { - "coding" : [ + "url": "obr-45-procedure-code-modifier", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" } ], - "code" : "887766", - "display" : "Procedure Code Modifier" + "code": "887766", + "display": "Procedure Code Modifier" } ] } }, { - "url" : "obr-45-procedure-code-modifier", - "valueCodeableConcept" : { - "coding" : [ + "url": "obr-45-procedure-code-modifier", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" } ], - "code" : "887766", - "display" : "Procedure Code Modifier2" + "code": "887766", + "display": "Procedure Code Modifier2" } ] } }, { - "url" : "OBR.48", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.48", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "71435", - "display" : "Medically Necessary Duplicate Procedure" + "code": "71435", + "display": "Medically Necessary Duplicate Procedure" } ] } }, { - "url" : "OBR.49", - "valueString" : "N" + "url": "OBR.49", + "valueString": "N" }, { - "url" : "OBR.50", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.50", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "443331", - "display" : "Parent Universal Service Identifier" + "code": "443331", + "display": "Parent Universal Service Identifier" } ] } }, { - "url" : "OBR.54", - "valueIdentifier" : { - "extension" : [ + "url": "OBR.54", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CSV" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CSV" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "11D1111111" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "11D1111111" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Other CSV" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Other CSV" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "22D2222222" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "22D2222222" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA2" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" } }, { - "url" : "OBR.11", - "valueString" : "G" + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1731634216888402000.424eebbf-d4a4-4ecb-b0e3-e0d57e1c147f" + } }, { - "url" : "OBR.12", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1731634216891644000.2643243f-3772-4eea-8867-5247ac91f67c" + } + }, + { + "url": "OBR.11", + "valueString": "G" + }, + { + "url": "OBR.12", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "512", - "display" : "Danger code" + "code": "512", + "display": "Danger code" } ] } }, { - "url" : "OBR.13", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.13", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "relevent info" + "code": "relevent info" } ] } - }, - { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1716961316864393000.44a3d48e-29bf-44d1-9fee-fd28faef1ae7" - } - }, - { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1716961316867088000.d668f3b5-0eac-491b-a2f0-95b0a505f777" - } - }, - { - "url" : "OBR.18", - "valueString" : "placer1" - }, - { - "url" : "OBR.19", - "valueString" : "placer2" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Placer Identifier" + "value": "Placer Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.3" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "Filler Identifier" + "value": "Filler Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Placer Order" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.53" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.53" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Alt" + "value": "Alt" }, { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Placer Order2" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.53" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.53" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Alt" + "value": "Alt" } ], - "status" : "unknown", - "intent" : "order", - "code" : { - "coding" : [ + "status": "unknown", + "intent": "order", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "Universal service identifier" + "code": "123", + "display": "Universal service identifier" } ] }, - "orderDetail" : [ + "orderDetail": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.46" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.46" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "7461", - "display" : "Placer Supplemental" + "code": "7461", + "display": "Placer Supplemental" } ] }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.46" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.46" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "7461", - "display" : "Placer Supplemental2" + "code": "7461", + "display": "Placer Supplemental2" } ] }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.47" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.47" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "8811", - "display" : "Fillter Supplemental" + "code": "8811", + "display": "Fillter Supplemental" } ] }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.47" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.47" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "8811", - "display" : "Fillter Supplemental2" + "code": "8811", + "display": "Fillter Supplemental2" } ] } ], - "subject" : { - "reference" : "Patient/1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603" + "subject": { + "reference": "Patient/1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9" }, - "requester" : { - "extension" : [ + "requester": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "260" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "7595016" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "WPN" + "url": "XTN.2", + "valueString": "WPN" }, { - "url" : "XTN.3", - "valueString" : "BP" + "url": "XTN.3", + "valueString": "BP" }, { - "url" : "XTN.7", - "valueString" : "7595016" + "url": "XTN.7", + "valueString": "7595016" }, { - "url" : "XTN.12", - "valueString" : "+1 260 759 5016" + "url": "XTN.12", + "valueString": "+1 260 759 5016" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" } ], - "system" : "pager", - "value" : "+1 260 759 5016", - "use" : "work" + "system": "pager", + "value": "+1 260 759 5016", + "use": "work" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "WPN" + "url": "XTN.2", + "valueString": "WPN" }, { - "url" : "XTN.3", - "valueString" : "Internet" + "url": "XTN.3", + "valueString": "Internet" }, { - "url" : "XTN.4", - "valueString" : "order.callback@email.com" + "url": "XTN.4", + "valueString": "order.callback@email.com" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" } ], - "system" : "email", - "value" : "order.callback@email.com", - "use" : "work" + "system": "email", + "value": "order.callback@email.com", + "use": "work" } } ], - "reference" : "Practitioner/1716961316826226000.7f3e759a-e861-4188-8120-0636ffba0c6c" + "reference": "Practitioner/1731634216859616000.39763edc-e258-4f7a-8365-bbbfd2ae1adf" }, - "reasonCode" : [ + "reasonCode": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "3216", - "display" : "ReasonForStudy" + "code": "3216", + "display": "ReasonForStudy" } ] }, { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "3216", - "display" : "ReasonForStudy2" + "code": "3216", + "display": "ReasonForStudy2" } ] } @@ -1175,693 +1199,1107 @@ } }, { - "fullUrl" : "Practitioner/1716961316826226000.7f3e759a-e861-4188-8120-0636ffba0c6c", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316826226000.7f3e759a-e861-4188-8120-0636ffba0c6c", - "extension" : [ + "fullUrl": "Practitioner/1731634216859616000.39763edc-e258-4f7a-8365-bbbfd2ae1adf", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216859616000.39763edc-e258-4f7a-8365-bbbfd2ae1adf", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.16" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "Ordering", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Provider" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731634216865391000.b34c86c9-6d5c-4ce5-bf84-e862f1380b22", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216865391000.b34c86c9-6d5c-4ce5-bf84-e862f1380b22", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.16" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.20", + "valueString": "20230501102531-0400" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignJ" + } + ] + } + }, + { + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignA" + } + ] + } + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + }, + { + "url": "XCN.19", + "valueString": "20220501102531-0400" + } + ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" + "system": "urn:oid:AssigningSystem", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "Ordering", - "_family" : { - "extension" : [ + "use": "official", + "family": "Ordering", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Provider" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Provider" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731634216867480000.1870d114-caca-4744-b37c-921de9b3b358", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216867480000.1870d114-caca-4744-b37c-921de9b3b358", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "RUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.20", + "valueString": "20230501102531-0400" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignJ" + } + ] + } + }, + { + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignA" + } + ] + } + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + }, + { + "url": "XCN.19", + "valueString": "20220501102531-0400" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "Ordering2", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Provider" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "RUDWIG", + "B" + ], + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1716961316835983000.61e70b77-5ee6-4d95-8b7d-9c4b3125fcef", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316835983000.61e70b77-5ee6-4d95-8b7d-9c4b3125fcef", - "extension" : [ + "fullUrl": "Practitioner/1731634216870163000.2f2043b5-a751-41a2-a427-eb798f9f6906", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216870163000.2f2043b5-a751-41a2-a427-eb798f9f6906", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" + "system": "urn:oid:AssigningSystem", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "result", - "_family" : { - "extension" : [ + "use": "official", + "family": "result", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "copiesto" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "copiesto" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1716961316838839000.5be961a2-d98a-4eb3-9d46-3537f7033b7b", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316838839000.5be961a2-d98a-4eb3-9d46-3537f7033b7b", - "extension" : [ + "fullUrl": "Practitioner/1731634216871745000.382fe363-1304-4a29-99a6-b8759807ae53", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216871745000.382fe363-1304-4a29-99a6-b8759807ae53", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "RUDWIG" + "url": "XCN.3", + "valueString": "RUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" + "system": "urn:oid:AssigningSystem", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "result2", - "_family" : { - "extension" : [ + "use": "official", + "family": "result2", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "copiesto2" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "copiesto2" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "RUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1716961316840858000.d42a6255-b057-43a0-aa20-3979bb06fcdc", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316840858000.d42a6255-b057-43a0-aa20-3979bb06fcdc", - "extension" : [ + "fullUrl": "Practitioner/1731634216872803000.22b1404a-9b06-4228-8975-d9fcbbba1d01", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216872803000.22b1404a-9b06-4228-8975-d9fcbbba1d01", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Results Interpreter" + "url": "CNN.3", + "valueString": "Results Interpreter" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "Assistant", - "given" : [ + "family": "Assistant", + "given": [ "Results Interpreter", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -1870,98 +2308,98 @@ } }, { - "fullUrl" : "Location/1716961316841920000.0902b564-061b-46c8-b974-f3896025cae2", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316841920000.0902b564-061b-46c8-b974-f3896025cae2", - "identifier" : [ + "fullUrl": "Location/1731634216873399000.315b3f51-fd6a-4ecd-82ac-3e51f85fcfa2", + "resource": { + "resourceType": "Location", + "id": "1731634216873399000.315b3f51-fd6a-4ecd-82ac-3e51f85fcfa2", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961316846131000.b9e3369c-e070-426e-804b-dc85ea96a475", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316846131000.b9e3369c-e070-426e-804b-dc85ea96a475", - "identifier" : [ + "fullUrl": "Location/1731634216881535000.8cff0fe8-63e6-4e16-b9af-03f1e255d469", + "resource": { + "resourceType": "Location", + "id": "1731634216881535000.8cff0fe8-63e6-4e16-b9af-03f1e255d469", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961316846661000.31fc04d2-5684-4ce3-9e20-bf5fe8582570", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316846661000.31fc04d2-5684-4ce3-9e20-bf5fe8582570", - "identifier" : [ + "fullUrl": "Location/1731634216881834000.4217e0a2-281a-4a09-bd3f-c339731b2aab", + "resource": { + "resourceType": "Location", + "id": "1731634216881834000.4217e0a2-281a-4a09-bd3f-c339731b2aab", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -1971,184 +2409,184 @@ } }, { - "fullUrl" : "Location/1716961316847073000.eb192e7b-002b-45f0-88b9-d66002e5fc7c", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316847073000.eb192e7b-002b-45f0-88b9-d66002e5fc7c", - "identifier" : [ + "fullUrl": "Location/1731634216882114000.9a10ee6a-c285-4640-b62b-511041f642c5", + "resource": { + "resourceType": "Location", + "id": "1731634216882114000.9a10ee6a-c285-4640-b62b-511041f642c5", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961316847471000.e9113f4b-fbbe-4cc5-995d-67dfdbfea800", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316847471000.e9113f4b-fbbe-4cc5-995d-67dfdbfea800", - "identifier" : [ + "fullUrl": "Location/1731634216882334000.7f7a00dc-6ecc-4df1-98fc-df2a840eef00", + "resource": { + "resourceType": "Location", + "id": "1731634216882334000.7f7a00dc-6ecc-4df1-98fc-df2a840eef00", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961316847984000.7adbaea7-6f33-4c5f-889d-d88233fa42d3", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316847984000.7adbaea7-6f33-4c5f-889d-d88233fa42d3", - "identifier" : [ + "fullUrl": "Location/1731634216882568000.8646f815-ee4b-4746-813b-ffe5be04bf68", + "resource": { + "resourceType": "Location", + "id": "1731634216882568000.8646f815-ee4b-4746-813b-ffe5be04bf68", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961316848195000.52ecbb4d-0b38-4f86-bddb-4ac6f8f685fb", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961316848195000.52ecbb4d-0b38-4f86-bddb-4ac6f8f685fb", - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "fullUrl": "PractitionerRole/1731634216882657000.399c904e-f440-4e8d-8319-fceea2fac4e4", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634216882657000.399c904e-f440-4e8d-8319-fceea2fac4e4", + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961316840858000.d42a6255-b057-43a0-aa20-3979bb06fcdc" + "practitioner": { + "reference": "Practitioner/1731634216872803000.22b1404a-9b06-4228-8975-d9fcbbba1d01" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961316841920000.0902b564-061b-46c8-b974-f3896025cae2" + "reference": "Location/1731634216873399000.315b3f51-fd6a-4ecd-82ac-3e51f85fcfa2" }, { - "reference" : "Location/1716961316846131000.b9e3369c-e070-426e-804b-dc85ea96a475" + "reference": "Location/1731634216881535000.8cff0fe8-63e6-4e16-b9af-03f1e255d469" }, { - "reference" : "Location/1716961316846661000.31fc04d2-5684-4ce3-9e20-bf5fe8582570" + "reference": "Location/1731634216881834000.4217e0a2-281a-4a09-bd3f-c339731b2aab" }, { - "reference" : "Location/1716961316847073000.eb192e7b-002b-45f0-88b9-d66002e5fc7c" + "reference": "Location/1731634216882114000.9a10ee6a-c285-4640-b62b-511041f642c5" }, { - "reference" : "Location/1716961316847471000.e9113f4b-fbbe-4cc5-995d-67dfdbfea800" + "reference": "Location/1731634216882334000.7f7a00dc-6ecc-4df1-98fc-df2a840eef00" }, { - "reference" : "Location/1716961316847984000.7adbaea7-6f33-4c5f-889d-d88233fa42d3" + "reference": "Location/1731634216882568000.8646f815-ee4b-4746-813b-ffe5be04bf68" } ] } }, { - "fullUrl" : "Practitioner/1716961316849391000.f122c3fc-927e-41bc-8d93-f9e6a479d1ab", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316849391000.f122c3fc-927e-41bc-8d93-f9e6a479d1ab", - "extension" : [ + "fullUrl": "Practitioner/1731634216883845000.eec612e1-7d40-41d6-bdc4-2936a13d4d46", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216883845000.eec612e1-7d40-41d6-bdc4-2936a13d4d46", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Results Interpreter2" + "url": "CNN.3", + "valueString": "Results Interpreter2" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "Assistant2", - "given" : [ + "family": "Assistant2", + "given": [ "Results Interpreter2", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -2157,98 +2595,98 @@ } }, { - "fullUrl" : "Location/1716961316849932000.ce853911-392d-40f3-927f-8990204295e9", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316849932000.ce853911-392d-40f3-927f-8990204295e9", - "identifier" : [ + "fullUrl": "Location/1731634216884124000.13e65ee4-45ff-4b2d-85ac-b41fe22d2872", + "resource": { + "resourceType": "Location", + "id": "1731634216884124000.13e65ee4-45ff-4b2d-85ac-b41fe22d2872", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961316850302000.ae272ee4-1c0e-4d1e-9129-9fdd79a10071", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316850302000.ae272ee4-1c0e-4d1e-9129-9fdd79a10071", - "identifier" : [ + "fullUrl": "Location/1731634216884347000.67c3e525-d38f-413c-b107-50e164ac67ec", + "resource": { + "resourceType": "Location", + "id": "1731634216884347000.67c3e525-d38f-413c-b107-50e164ac67ec", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961316850715000.c589b01a-637e-49e2-a0de-163664316cd9", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316850715000.c589b01a-637e-49e2-a0de-163664316cd9", - "identifier" : [ + "fullUrl": "Location/1731634216884669000.c2727fb9-9f75-4fe6-a3e1-bed98bb939a8", + "resource": { + "resourceType": "Location", + "id": "1731634216884669000.c2727fb9-9f75-4fe6-a3e1-bed98bb939a8", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -2258,1176 +2696,762 @@ } }, { - "fullUrl" : "Location/1716961316851089000.45ba91cf-4666-4713-8f91-0c21210b6aab", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316851089000.45ba91cf-4666-4713-8f91-0c21210b6aab", - "identifier" : [ + "fullUrl": "Location/1731634216884897000.cc52dd4a-b24c-4643-afb3-d104d7cfe7a0", + "resource": { + "resourceType": "Location", + "id": "1731634216884897000.cc52dd4a-b24c-4643-afb3-d104d7cfe7a0", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961316851462000.3f752bed-db77-484c-bf61-45a99f1c0256", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316851462000.3f752bed-db77-484c-bf61-45a99f1c0256", - "identifier" : [ + "fullUrl": "Location/1731634216885085000.fb6da7d3-611c-4ec8-890e-1ba42a55d801", + "resource": { + "resourceType": "Location", + "id": "1731634216885085000.fb6da7d3-611c-4ec8-890e-1ba42a55d801", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961316851919000.4843786c-a6ff-477e-aa91-3a76fe9745d7", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316851919000.4843786c-a6ff-477e-aa91-3a76fe9745d7", - "identifier" : [ + "fullUrl": "Location/1731634216885288000.25a6ee89-387f-48ee-813b-b392578a6b50", + "resource": { + "resourceType": "Location", + "id": "1731634216885288000.25a6ee89-387f-48ee-813b-b392578a6b50", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961316852060000.77701d25-aecf-4bf8-9f67-7180a7ededc3", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961316852060000.77701d25-aecf-4bf8-9f67-7180a7ededc3", - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "fullUrl": "PractitionerRole/1731634216885373000.011254cf-3a85-43cb-aee3-18763979a19e", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634216885373000.011254cf-3a85-43cb-aee3-18763979a19e", + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961316849391000.f122c3fc-927e-41bc-8d93-f9e6a479d1ab" + "practitioner": { + "reference": "Practitioner/1731634216883845000.eec612e1-7d40-41d6-bdc4-2936a13d4d46" }, - "location" : [ - { - "reference" : "Location/1716961316849932000.ce853911-392d-40f3-927f-8990204295e9" - }, + "location": [ { - "reference" : "Location/1716961316850302000.ae272ee4-1c0e-4d1e-9129-9fdd79a10071" + "reference": "Location/1731634216884124000.13e65ee4-45ff-4b2d-85ac-b41fe22d2872" }, { - "reference" : "Location/1716961316850715000.c589b01a-637e-49e2-a0de-163664316cd9" + "reference": "Location/1731634216884347000.67c3e525-d38f-413c-b107-50e164ac67ec" }, { - "reference" : "Location/1716961316851089000.45ba91cf-4666-4713-8f91-0c21210b6aab" + "reference": "Location/1731634216884669000.c2727fb9-9f75-4fe6-a3e1-bed98bb939a8" }, { - "reference" : "Location/1716961316851462000.3f752bed-db77-484c-bf61-45a99f1c0256" + "reference": "Location/1731634216884897000.cc52dd4a-b24c-4643-afb3-d104d7cfe7a0" }, { - "reference" : "Location/1716961316851919000.4843786c-a6ff-477e-aa91-3a76fe9745d7" - } - ] - } - }, - { - "fullUrl" : "Practitioner/1716961316856284000.d716624b-ac2b-494a-a36a-85beb8f20234", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316856284000.d716624b-ac2b-494a-a36a-85beb8f20234", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "LUDWIG" - }, - { - "url" : "XCN.4", - "valueString" : "B" - }, - { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" - }, - { - "url" : "XCN.21", - "valueString" : "MD" - }, - { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "AssignJ" - } - ] - } - }, - { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "AssignA" - } - ] - } - }, - { - "url" : "XCN.5", - "valueString" : "2ND" - }, - { - "url" : "XCN.7", - "valueString" : "MD" - }, - { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "SRC" - } - ] - } - }, - { - "url" : "XCN.10", - "valueString" : "B" - }, - { - "url" : "XCN.15", - "valueString" : "A" - }, - { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "NameContext" - } - ] - } - }, - { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" - } - ] - } - ], - "identifier" : [ - { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" - } - ], - "type" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "DL" - } - ] - }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" - } - ], - "name" : [ - { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" - } - ], - "use" : "official", - "family" : "Collector", - "_family" : { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Identifier" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" - } - ] - }, - "given" : [ - "LUDWIG", - "B" - ], - "prefix" : [ - "DR" - ], - "suffix" : [ - "2ND", - "MD", - "MD" - ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" - } - } - ] - } - }, - { - "fullUrl" : "Practitioner/1716961316859495000.a5f31f5c-e07d-40c2-ab54-82a9b9a9a6ba", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316859495000.a5f31f5c-e07d-40c2-ab54-82a9b9a9a6ba", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] + "reference": "Location/1731634216885085000.fb6da7d3-611c-4ec8-890e-1ba42a55d801" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "RUDWIG" - }, - { - "url" : "XCN.4", - "valueString" : "B" - }, - { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" - }, - { - "url" : "XCN.21", - "valueString" : "MD" - }, - { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "AssignJ" - } - ] - } - }, - { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "AssignA" - } - ] - } - }, - { - "url" : "XCN.5", - "valueString" : "2ND" - }, - { - "url" : "XCN.7", - "valueString" : "MD" - }, - { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "SRC" - } - ] - } - }, - { - "url" : "XCN.10", - "valueString" : "B" - }, - { - "url" : "XCN.15", - "valueString" : "A" - }, - { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "NameContext" - } - ] - } - }, - { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" - } - ] - } - ], - "identifier" : [ - { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" - } - ], - "type" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "DL" - } - ] - }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" - } - ], - "name" : [ - { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" - } - ], - "use" : "official", - "family" : "Collector2", - "_family" : { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Identifier" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" - } - ] - }, - "given" : [ - "RUDWIG", - "B" - ], - "prefix" : [ - "DR" - ], - "suffix" : [ - "2ND", - "MD", - "MD" - ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" - } + "reference": "Location/1731634216885288000.25a6ee89-387f-48ee-813b-b392578a6b50" } ] } }, { - "fullUrl" : "Practitioner/1716961316864393000.44a3d48e-29bf-44d1-9fee-fd28faef1ae7", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316864393000.44a3d48e-29bf-44d1-9fee-fd28faef1ae7", - "extension" : [ + "fullUrl": "Practitioner/1731634216888402000.424eebbf-d4a4-4ecb-b0e3-e0d57e1c147f", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216888402000.424eebbf-d4a4-4ecb-b0e3-e0d57e1c147f", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" + "system": "urn:oid:AssigningSystem", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "Ordering", - "_family" : { - "extension" : [ + "use": "official", + "family": "Collector", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Provider" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Identifier" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1716961316867088000.d668f3b5-0eac-491b-a2f0-95b0a505f777", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316867088000.d668f3b5-0eac-491b-a2f0-95b0a505f777", - "extension" : [ + "fullUrl": "Practitioner/1731634216891644000.2643243f-3772-4eea-8867-5247ac91f67c", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216891644000.2643243f-3772-4eea-8867-5247ac91f67c", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "RUDWIG" + "url": "XCN.3", + "valueString": "RUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" + "system": "urn:oid:AssigningSystem", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "Ordering2", - "_family" : { - "extension" : [ + "use": "official", + "family": "Collector2", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Provider" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Identifier" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "RUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "DiagnosticReport/1716961316896240000.39e01eaf-410c-42f1-acea-7a1f2ecdcb72", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1716961316896240000.39e01eaf-410c-42f1-acea-7a1f2ecdcb72", - "identifier" : [ + "fullUrl": "DiagnosticReport/1731634216918992000.14669936-2835-442a-a340-d22038472fac", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1731634216918992000.14669936-2835-442a-a340-d22038472fac", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Placer Identifier" + "value": "Placer Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "Filler Identifier" + "value": "Filler Identifier" } ], - "basedOn" : [ + "basedOn": [ { - "reference" : "ServiceRequest/1727307989120333000.e424bf5a-9a96-4b07-8354-c9f7eed60475" + "reference": "ServiceRequest/1731634216893698000.d34c7a39-38d3-4d7b-8d00-2aca01e58340" } ], - "status" : "final", - "category" : [ + "status": "final", + "category": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "OTH" + "code": "OTH" } ] } ], - "code" : { - "coding" : [ + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "Universal service identifier" + "code": "123", + "display": "Universal service identifier" } ] }, - "subject" : { - "reference" : "Patient/1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603" + "subject": { + "reference": "Patient/1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9" }, - "effectivePeriod" : { - "start" : "2023-08-16T12:33:58-05:00", - "_start" : { - "extension" : [ + "effectivePeriod": { + "start": "2023-08-16T12:33:58-05:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230816123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230816123358-0500" } ] }, - "end" : "2023-09-16T12:33:58-05:00", - "_end" : { - "extension" : [ + "end": "2023-09-16T12:33:58-05:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230916123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230916123358-0500" } ] } }, - "issued" : "2023-08-16T12:33:58-05:00", - "_issued" : { - "extension" : [ + "issued": "2023-08-16T12:33:58-05:00", + "_issued": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230816123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230816123358-0500" } ] }, - "performer" : [ + "performer": [ { - "reference" : "PractitionerRole/1716961316889003000.8c6a0818-2f4b-4970-afe0-4e9b0bc31b28" + "reference": "PractitionerRole/1731634216913760000.a10a5353-8535-4b72-a927-48d4c6eb9ee2" }, { - "reference" : "PractitionerRole/1716961316891280000.e04fb1d7-4372-4f6d-8120-f73ac5019057" + "reference": "PractitionerRole/1731634216915447000.9ce175ad-1c17-4e94-8b6c-7fbfc8173c0a" }, { - "reference" : "PractitionerRole/1716961316893874000.3709bb85-d2f2-4078-a259-08e248eeba44" + "reference": "PractitionerRole/1731634216917261000.371bd16c-6910-44d8-b771-c6397f279cac" }, { - "reference" : "PractitionerRole/1716961316895999000.f4f0f915-8510-4eaf-b1bb-b60663d2ea2d" + "reference": "PractitionerRole/1731634216918806000.dfa4b1db-cc37-4667-af7f-6b9f27f062b4" } ], - "resultsInterpreter" : [ + "resultsInterpreter": [ { - "reference" : "PractitionerRole/1716961316886611000.9587d863-55f5-45fb-9c24-3eff2629c509" + "reference": "PractitionerRole/1731634216911757000.fcb919c6-76c4-449f-8b71-328115bcb4ce" } ], - "specimen" : [ + "specimen": [ { - "reference" : "Specimen/1716961316664583000.67c0f8d7-f9f0-47ea-97a4-6d6501f0a9db" + "reference": "Specimen/1731634216738434000.20a42533-27b1-4fdf-a8d7-c16a1b496ec5" } ] } }, { - "fullUrl" : "Practitioner/1716961316884720000.09ce0cff-f037-48b1-a0c4-ec0d7f139953", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316884720000.09ce0cff-f037-48b1-a0c4-ec0d7f139953", - "extension" : [ + "fullUrl": "Practitioner/1731634216910192000.0ac59756-2f5b-457d-8993-615d3cef90d6", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216910192000.0ac59756-2f5b-457d-8993-615d3cef90d6", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Interpreter" + "url": "CNN.3", + "valueString": "Interpreter" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "Results", - "given" : [ + "family": "Results", + "given": [ "Interpreter", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -3436,98 +3460,98 @@ } }, { - "fullUrl" : "Location/1716961316885079000.a6e932b2-dfaa-46f9-9a45-3bf19864d90b", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316885079000.a6e932b2-dfaa-46f9-9a45-3bf19864d90b", - "identifier" : [ + "fullUrl": "Location/1731634216910501000.5f6a421b-2d4f-4b19-adc3-5d25b3dedecb", + "resource": { + "resourceType": "Location", + "id": "1731634216910501000.5f6a421b-2d4f-4b19-adc3-5d25b3dedecb", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961316885392000.2f7ce8fe-8c6a-4527-ad84-0d131afc28e4", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316885392000.2f7ce8fe-8c6a-4527-ad84-0d131afc28e4", - "identifier" : [ + "fullUrl": "Location/1731634216910762000.693297cb-cc31-41a1-afa5-0173137258c0", + "resource": { + "resourceType": "Location", + "id": "1731634216910762000.693297cb-cc31-41a1-afa5-0173137258c0", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961316885686000.37cc3ff1-3fe7-44bc-b090-4b20925d4dea", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316885686000.37cc3ff1-3fe7-44bc-b090-4b20925d4dea", - "identifier" : [ + "fullUrl": "Location/1731634216911022000.a43f1674-82f0-4c61-b275-a7ffe3f8558b", + "resource": { + "resourceType": "Location", + "id": "1731634216911022000.a43f1674-82f0-4c61-b275-a7ffe3f8558b", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -3537,184 +3561,184 @@ } }, { - "fullUrl" : "Location/1716961316885968000.56af31eb-3e6a-4f3c-b71d-6fefbff94e1d", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316885968000.56af31eb-3e6a-4f3c-b71d-6fefbff94e1d", - "identifier" : [ + "fullUrl": "Location/1731634216911238000.948bf6f4-1d19-4427-bed6-ccd3bb8a41c4", + "resource": { + "resourceType": "Location", + "id": "1731634216911238000.948bf6f4-1d19-4427-bed6-ccd3bb8a41c4", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961316886264000.c435e87b-e7da-4fb1-a47e-8e21783945d6", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316886264000.c435e87b-e7da-4fb1-a47e-8e21783945d6", - "identifier" : [ + "fullUrl": "Location/1731634216911448000.41e045ee-6edb-44cf-bf67-465000ec4c26", + "resource": { + "resourceType": "Location", + "id": "1731634216911448000.41e045ee-6edb-44cf-bf67-465000ec4c26", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961316886513000.498b806b-a06b-4c64-8c33-14ae04978ebd", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316886513000.498b806b-a06b-4c64-8c33-14ae04978ebd", - "identifier" : [ + "fullUrl": "Location/1731634216911663000.ca8896e4-8131-479f-b154-7ee8bd7f47f8", + "resource": { + "resourceType": "Location", + "id": "1731634216911663000.ca8896e4-8131-479f-b154-7ee8bd7f47f8", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961316886611000.9587d863-55f5-45fb-9c24-3eff2629c509", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961316886611000.9587d863-55f5-45fb-9c24-3eff2629c509", - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "fullUrl": "PractitionerRole/1731634216911757000.fcb919c6-76c4-449f-8b71-328115bcb4ce", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634216911757000.fcb919c6-76c4-449f-8b71-328115bcb4ce", + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961316884720000.09ce0cff-f037-48b1-a0c4-ec0d7f139953" + "practitioner": { + "reference": "Practitioner/1731634216910192000.0ac59756-2f5b-457d-8993-615d3cef90d6" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961316885079000.a6e932b2-dfaa-46f9-9a45-3bf19864d90b" + "reference": "Location/1731634216910501000.5f6a421b-2d4f-4b19-adc3-5d25b3dedecb" }, { - "reference" : "Location/1716961316885392000.2f7ce8fe-8c6a-4527-ad84-0d131afc28e4" + "reference": "Location/1731634216910762000.693297cb-cc31-41a1-afa5-0173137258c0" }, { - "reference" : "Location/1716961316885686000.37cc3ff1-3fe7-44bc-b090-4b20925d4dea" + "reference": "Location/1731634216911022000.a43f1674-82f0-4c61-b275-a7ffe3f8558b" }, { - "reference" : "Location/1716961316885968000.56af31eb-3e6a-4f3c-b71d-6fefbff94e1d" + "reference": "Location/1731634216911238000.948bf6f4-1d19-4427-bed6-ccd3bb8a41c4" }, { - "reference" : "Location/1716961316886264000.c435e87b-e7da-4fb1-a47e-8e21783945d6" + "reference": "Location/1731634216911448000.41e045ee-6edb-44cf-bf67-465000ec4c26" }, { - "reference" : "Location/1716961316886513000.498b806b-a06b-4c64-8c33-14ae04978ebd" + "reference": "Location/1731634216911663000.ca8896e4-8131-479f-b154-7ee8bd7f47f8" } ] } }, { - "fullUrl" : "Practitioner/1716961316887253000.5370e416-2c60-45fd-ad03-e22e8582ee9f", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316887253000.5370e416-2c60-45fd-ad03-e22e8582ee9f", - "extension" : [ + "fullUrl": "Practitioner/1731634216912328000.630e4a0f-bc26-45e5-89ab-5bbbb0b1f3f4", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216912328000.630e4a0f-bc26-45e5-89ab-5bbbb0b1f3f4", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Transcriptionist" + "url": "CNN.3", + "valueString": "Transcriptionist" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "DOE", - "given" : [ + "family": "DOE", + "given": [ "Transcriptionist", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -3723,98 +3747,98 @@ } }, { - "fullUrl" : "Location/1716961316887541000.1e03464d-4df0-40f0-a4a8-3e1610ee047e", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316887541000.1e03464d-4df0-40f0-a4a8-3e1610ee047e", - "identifier" : [ + "fullUrl": "Location/1731634216912566000.69e67b33-a25a-4271-bec7-a1e180f8417d", + "resource": { + "resourceType": "Location", + "id": "1731634216912566000.69e67b33-a25a-4271-bec7-a1e180f8417d", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961316887818000.4e91de2b-d037-43da-848b-10a9257dc04b", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316887818000.4e91de2b-d037-43da-848b-10a9257dc04b", - "identifier" : [ + "fullUrl": "Location/1731634216912890000.3268f9ef-e389-4770-b909-53aedbe0b7dd", + "resource": { + "resourceType": "Location", + "id": "1731634216912890000.3268f9ef-e389-4770-b909-53aedbe0b7dd", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961316888113000.34ae2922-a3d0-4284-a8ac-3cd963df8a84", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316888113000.34ae2922-a3d0-4284-a8ac-3cd963df8a84", - "identifier" : [ + "fullUrl": "Location/1731634216913104000.c1715aaa-71b3-4739-ba04-a42fc7ec42b9", + "resource": { + "resourceType": "Location", + "id": "1731634216913104000.c1715aaa-71b3-4739-ba04-a42fc7ec42b9", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -3824,197 +3848,197 @@ } }, { - "fullUrl" : "Location/1716961316888385000.6abd500c-d73b-4e6d-8318-082f68c74083", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316888385000.6abd500c-d73b-4e6d-8318-082f68c74083", - "identifier" : [ + "fullUrl": "Location/1731634216913289000.8874712e-cfc1-4e3e-90b0-1ba9928e00b0", + "resource": { + "resourceType": "Location", + "id": "1731634216913289000.8874712e-cfc1-4e3e-90b0-1ba9928e00b0", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961316888647000.51da44b3-5047-4132-b6b2-911bb72e88aa", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316888647000.51da44b3-5047-4132-b6b2-911bb72e88aa", - "identifier" : [ + "fullUrl": "Location/1731634216913477000.45e4aa07-0a97-407b-8c59-56857be563c9", + "resource": { + "resourceType": "Location", + "id": "1731634216913477000.45e4aa07-0a97-407b-8c59-56857be563c9", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961316888894000.b2dc3c57-482c-4a46-a4cf-7e9cca19ead8", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316888894000.b2dc3c57-482c-4a46-a4cf-7e9cca19ead8", - "identifier" : [ + "fullUrl": "Location/1731634216913677000.dc97c195-5faa-4dc3-9f56-dc39c55cd00a", + "resource": { + "resourceType": "Location", + "id": "1731634216913677000.dc97c195-5faa-4dc3-9f56-dc39c55cd00a", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961316889003000.8c6a0818-2f4b-4970-afe0-4e9b0bc31b28", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961316889003000.8c6a0818-2f4b-4970-afe0-4e9b0bc31b28", - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "PractitionerRole/1731634216913760000.a10a5353-8535-4b72-a927-48d4c6eb9ee2", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634216913760000.a10a5353-8535-4b72-a927-48d4c6eb9ee2", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction", + "valueCodeableConcept": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "TRANS" + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "TRANS" } ] } } ], - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961316887253000.5370e416-2c60-45fd-ad03-e22e8582ee9f" + "practitioner": { + "reference": "Practitioner/1731634216912328000.630e4a0f-bc26-45e5-89ab-5bbbb0b1f3f4" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961316887541000.1e03464d-4df0-40f0-a4a8-3e1610ee047e" + "reference": "Location/1731634216912566000.69e67b33-a25a-4271-bec7-a1e180f8417d" }, { - "reference" : "Location/1716961316887818000.4e91de2b-d037-43da-848b-10a9257dc04b" + "reference": "Location/1731634216912890000.3268f9ef-e389-4770-b909-53aedbe0b7dd" }, { - "reference" : "Location/1716961316888113000.34ae2922-a3d0-4284-a8ac-3cd963df8a84" + "reference": "Location/1731634216913104000.c1715aaa-71b3-4739-ba04-a42fc7ec42b9" }, { - "reference" : "Location/1716961316888385000.6abd500c-d73b-4e6d-8318-082f68c74083" + "reference": "Location/1731634216913289000.8874712e-cfc1-4e3e-90b0-1ba9928e00b0" }, { - "reference" : "Location/1716961316888647000.51da44b3-5047-4132-b6b2-911bb72e88aa" + "reference": "Location/1731634216913477000.45e4aa07-0a97-407b-8c59-56857be563c9" }, { - "reference" : "Location/1716961316888894000.b2dc3c57-482c-4a46-a4cf-7e9cca19ead8" + "reference": "Location/1731634216913677000.dc97c195-5faa-4dc3-9f56-dc39c55cd00a" } ] } }, { - "fullUrl" : "Practitioner/1716961316889625000.4adbbcbb-6875-4b58-b360-4ab9f761ad91", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316889625000.4adbbcbb-6875-4b58-b360-4ab9f761ad91", - "extension" : [ + "fullUrl": "Practitioner/1731634216914246000.14d46b6d-fae9-4d02-a567-2471f0ca866d", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216914246000.14d46b6d-fae9-4d02-a567-2471f0ca866d", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Transcriptionist2" + "url": "CNN.3", + "valueString": "Transcriptionist2" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "DOE", - "given" : [ + "family": "DOE", + "given": [ "Transcriptionist2", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -4023,98 +4047,98 @@ } }, { - "fullUrl" : "Location/1716961316889915000.f670bd3d-f55f-465e-a0e4-5fd274260781", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316889915000.f670bd3d-f55f-465e-a0e4-5fd274260781", - "identifier" : [ + "fullUrl": "Location/1731634216914459000.bcb0f5fd-2664-424f-845f-27bc4029a9f5", + "resource": { + "resourceType": "Location", + "id": "1731634216914459000.bcb0f5fd-2664-424f-845f-27bc4029a9f5", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961316890160000.9aa25ab4-fe5c-43d7-83f9-39d1ce6f389f", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316890160000.9aa25ab4-fe5c-43d7-83f9-39d1ce6f389f", - "identifier" : [ + "fullUrl": "Location/1731634216914635000.36a5008b-bdc6-4cd0-ab67-1b1aadf82042", + "resource": { + "resourceType": "Location", + "id": "1731634216914635000.36a5008b-bdc6-4cd0-ab67-1b1aadf82042", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961316890406000.6cdcb868-10c7-4da0-9db8-faae382c424f", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316890406000.6cdcb868-10c7-4da0-9db8-faae382c424f", - "identifier" : [ + "fullUrl": "Location/1731634216914824000.ae665094-1a97-410b-8cbe-b1acca966737", + "resource": { + "resourceType": "Location", + "id": "1731634216914824000.ae665094-1a97-410b-8cbe-b1acca966737", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -4124,197 +4148,197 @@ } }, { - "fullUrl" : "Location/1716961316890685000.35cb2ca2-1836-4405-b17b-d6a55ee4848a", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316890685000.35cb2ca2-1836-4405-b17b-d6a55ee4848a", - "identifier" : [ + "fullUrl": "Location/1731634216914998000.3580ffe3-5d7d-4f9e-88b7-5b1706a30f82", + "resource": { + "resourceType": "Location", + "id": "1731634216914998000.3580ffe3-5d7d-4f9e-88b7-5b1706a30f82", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961316890936000.2763ffd2-c6d4-4f12-ad10-5c1188c4876e", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316890936000.2763ffd2-c6d4-4f12-ad10-5c1188c4876e", - "identifier" : [ + "fullUrl": "Location/1731634216915178000.fd896c33-b49e-4482-ab46-e80b896d1702", + "resource": { + "resourceType": "Location", + "id": "1731634216915178000.fd896c33-b49e-4482-ab46-e80b896d1702", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961316891174000.57e86f9d-3cb4-4654-a702-ffb88fc94e58", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316891174000.57e86f9d-3cb4-4654-a702-ffb88fc94e58", - "identifier" : [ + "fullUrl": "Location/1731634216915369000.66c8c80e-135b-46f5-be57-58f6d81caf45", + "resource": { + "resourceType": "Location", + "id": "1731634216915369000.66c8c80e-135b-46f5-be57-58f6d81caf45", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961316891280000.e04fb1d7-4372-4f6d-8120-f73ac5019057", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961316891280000.e04fb1d7-4372-4f6d-8120-f73ac5019057", - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "PractitionerRole/1731634216915447000.9ce175ad-1c17-4e94-8b6c-7fbfc8173c0a", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634216915447000.9ce175ad-1c17-4e94-8b6c-7fbfc8173c0a", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction", + "valueCodeableConcept": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "TRANS" + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "TRANS" } ] } } ], - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961316889625000.4adbbcbb-6875-4b58-b360-4ab9f761ad91" + "practitioner": { + "reference": "Practitioner/1731634216914246000.14d46b6d-fae9-4d02-a567-2471f0ca866d" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961316889915000.f670bd3d-f55f-465e-a0e4-5fd274260781" + "reference": "Location/1731634216914459000.bcb0f5fd-2664-424f-845f-27bc4029a9f5" }, { - "reference" : "Location/1716961316890160000.9aa25ab4-fe5c-43d7-83f9-39d1ce6f389f" + "reference": "Location/1731634216914635000.36a5008b-bdc6-4cd0-ab67-1b1aadf82042" }, { - "reference" : "Location/1716961316890406000.6cdcb868-10c7-4da0-9db8-faae382c424f" + "reference": "Location/1731634216914824000.ae665094-1a97-410b-8cbe-b1acca966737" }, { - "reference" : "Location/1716961316890685000.35cb2ca2-1836-4405-b17b-d6a55ee4848a" + "reference": "Location/1731634216914998000.3580ffe3-5d7d-4f9e-88b7-5b1706a30f82" }, { - "reference" : "Location/1716961316890936000.2763ffd2-c6d4-4f12-ad10-5c1188c4876e" + "reference": "Location/1731634216915178000.fd896c33-b49e-4482-ab46-e80b896d1702" }, { - "reference" : "Location/1716961316891174000.57e86f9d-3cb4-4654-a702-ffb88fc94e58" + "reference": "Location/1731634216915369000.66c8c80e-135b-46f5-be57-58f6d81caf45" } ] } }, { - "fullUrl" : "Practitioner/1716961316892302000.0ba4a50e-b499-4d25-9076-dc8c5d178f48", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316892302000.0ba4a50e-b499-4d25-9076-dc8c5d178f48", - "extension" : [ + "fullUrl": "Practitioner/1731634216916102000.c3135a3e-dcd7-4e4d-a146-7034522e4dc3", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216916102000.c3135a3e-dcd7-4e4d-a146-7034522e4dc3", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Technician" + "url": "CNN.3", + "valueString": "Technician" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "DOE", - "given" : [ + "family": "DOE", + "given": [ "Technician", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -4323,98 +4347,98 @@ } }, { - "fullUrl" : "Location/1716961316892585000.d99c277e-a42a-4c24-bc87-597896cbf340", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316892585000.d99c277e-a42a-4c24-bc87-597896cbf340", - "identifier" : [ + "fullUrl": "Location/1731634216916311000.67ec2462-cfda-423f-b9a2-2cd0534d2a2c", + "resource": { + "resourceType": "Location", + "id": "1731634216916311000.67ec2462-cfda-423f-b9a2-2cd0534d2a2c", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961316892828000.4ec51dea-e03f-412f-ac7f-ecc8fc4a7d53", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316892828000.4ec51dea-e03f-412f-ac7f-ecc8fc4a7d53", - "identifier" : [ + "fullUrl": "Location/1731634216916495000.b87e6f4e-ac8d-40bb-ae99-3b162226afc1", + "resource": { + "resourceType": "Location", + "id": "1731634216916495000.b87e6f4e-ac8d-40bb-ae99-3b162226afc1", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961316893096000.d965107e-2ed9-4906-8a31-6b49d80f72e1", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316893096000.d965107e-2ed9-4906-8a31-6b49d80f72e1", - "identifier" : [ + "fullUrl": "Location/1731634216916673000.d61ff18d-3759-49ee-9a15-433ad4f045a6", + "resource": { + "resourceType": "Location", + "id": "1731634216916673000.d61ff18d-3759-49ee-9a15-433ad4f045a6", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -4424,197 +4448,197 @@ } }, { - "fullUrl" : "Location/1716961316893329000.2dd7523d-9a0d-4932-bcf5-cbf71e78a90f", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316893329000.2dd7523d-9a0d-4932-bcf5-cbf71e78a90f", - "identifier" : [ + "fullUrl": "Location/1731634216916849000.a4ba2375-e8c2-440c-be07-ea67dc80cd5b", + "resource": { + "resourceType": "Location", + "id": "1731634216916849000.a4ba2375-e8c2-440c-be07-ea67dc80cd5b", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961316893548000.7da8ba21-0b6e-485d-a9f7-a09cd4438381", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316893548000.7da8ba21-0b6e-485d-a9f7-a09cd4438381", - "identifier" : [ + "fullUrl": "Location/1731634216917010000.373631c2-255f-4420-a88f-5a9b48fa1741", + "resource": { + "resourceType": "Location", + "id": "1731634216917010000.373631c2-255f-4420-a88f-5a9b48fa1741", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961316893785000.1cf55de8-001e-4fb1-9910-b43501b62eff", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316893785000.1cf55de8-001e-4fb1-9910-b43501b62eff", - "identifier" : [ + "fullUrl": "Location/1731634216917182000.7cd0176f-3f07-44a8-9479-7d9560e44b46", + "resource": { + "resourceType": "Location", + "id": "1731634216917182000.7cd0176f-3f07-44a8-9479-7d9560e44b46", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961316893874000.3709bb85-d2f2-4078-a259-08e248eeba44", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961316893874000.3709bb85-d2f2-4078-a259-08e248eeba44", - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "PractitionerRole/1731634216917261000.371bd16c-6910-44d8-b771-c6397f279cac", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634216917261000.371bd16c-6910-44d8-b771-c6397f279cac", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction", + "valueCodeableConcept": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "SPRF" + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "SPRF" } ] } } ], - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961316892302000.0ba4a50e-b499-4d25-9076-dc8c5d178f48" + "practitioner": { + "reference": "Practitioner/1731634216916102000.c3135a3e-dcd7-4e4d-a146-7034522e4dc3" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961316892585000.d99c277e-a42a-4c24-bc87-597896cbf340" + "reference": "Location/1731634216916311000.67ec2462-cfda-423f-b9a2-2cd0534d2a2c" }, { - "reference" : "Location/1716961316892828000.4ec51dea-e03f-412f-ac7f-ecc8fc4a7d53" + "reference": "Location/1731634216916495000.b87e6f4e-ac8d-40bb-ae99-3b162226afc1" }, { - "reference" : "Location/1716961316893096000.d965107e-2ed9-4906-8a31-6b49d80f72e1" + "reference": "Location/1731634216916673000.d61ff18d-3759-49ee-9a15-433ad4f045a6" }, { - "reference" : "Location/1716961316893329000.2dd7523d-9a0d-4932-bcf5-cbf71e78a90f" + "reference": "Location/1731634216916849000.a4ba2375-e8c2-440c-be07-ea67dc80cd5b" }, { - "reference" : "Location/1716961316893548000.7da8ba21-0b6e-485d-a9f7-a09cd4438381" + "reference": "Location/1731634216917010000.373631c2-255f-4420-a88f-5a9b48fa1741" }, { - "reference" : "Location/1716961316893785000.1cf55de8-001e-4fb1-9910-b43501b62eff" + "reference": "Location/1731634216917182000.7cd0176f-3f07-44a8-9479-7d9560e44b46" } ] } }, { - "fullUrl" : "Practitioner/1716961316894454000.9a3d2574-ad4e-4212-9436-5853ba384268", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961316894454000.9a3d2574-ad4e-4212-9436-5853ba384268", - "extension" : [ + "fullUrl": "Practitioner/1731634216917703000.23d60908-85dc-4aac-9d49-072ea83e70de", + "resource": { + "resourceType": "Practitioner", + "id": "1731634216917703000.23d60908-85dc-4aac-9d49-072ea83e70de", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Technician2" + "url": "CNN.3", + "valueString": "Technician2" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "DOE", - "given" : [ + "family": "DOE", + "given": [ "Technician2", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -4623,98 +4647,98 @@ } }, { - "fullUrl" : "Location/1716961316894719000.047243de-b8fc-4798-893c-bc3a9499f31a", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316894719000.047243de-b8fc-4798-893c-bc3a9499f31a", - "identifier" : [ + "fullUrl": "Location/1731634216917900000.53b315ea-abc3-4723-a143-06ecc9ce4844", + "resource": { + "resourceType": "Location", + "id": "1731634216917900000.53b315ea-abc3-4723-a143-06ecc9ce4844", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961316894959000.a0d2ff2b-c987-42c8-8f58-8144e5de0a47", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316894959000.a0d2ff2b-c987-42c8-8f58-8144e5de0a47", - "identifier" : [ + "fullUrl": "Location/1731634216918059000.3f975fd4-e8ac-45f1-a709-1e0d0765c449", + "resource": { + "resourceType": "Location", + "id": "1731634216918059000.3f975fd4-e8ac-45f1-a709-1e0d0765c449", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961316895204000.781fd286-15aa-4dcd-8309-5633206dc240", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316895204000.781fd286-15aa-4dcd-8309-5633206dc240", - "identifier" : [ + "fullUrl": "Location/1731634216918233000.9cbe861b-7c68-4281-a2e0-2a6b8c2ae3bb", + "resource": { + "resourceType": "Location", + "id": "1731634216918233000.9cbe861b-7c68-4281-a2e0-2a6b8c2ae3bb", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -4724,130 +4748,130 @@ } }, { - "fullUrl" : "Location/1716961316895437000.e1aecc14-72b9-4ca8-9b50-14034a2c7bec", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316895437000.e1aecc14-72b9-4ca8-9b50-14034a2c7bec", - "identifier" : [ + "fullUrl": "Location/1731634216918406000.4a5cf608-9f0d-4dba-a96f-dfb8440c5ff0", + "resource": { + "resourceType": "Location", + "id": "1731634216918406000.4a5cf608-9f0d-4dba-a96f-dfb8440c5ff0", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961316895682000.9eb047fd-be59-49ad-ab7e-82550c253749", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316895682000.9eb047fd-be59-49ad-ab7e-82550c253749", - "identifier" : [ + "fullUrl": "Location/1731634216918575000.326ebf6c-f4c2-43f8-a7a2-a545219d7a02", + "resource": { + "resourceType": "Location", + "id": "1731634216918575000.326ebf6c-f4c2-43f8-a7a2-a545219d7a02", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961316895916000.d747169f-8b7f-4f16-b624-a0a59cde49a4", - "resource" : { - "resourceType" : "Location", - "id" : "1716961316895916000.d747169f-8b7f-4f16-b624-a0a59cde49a4", - "identifier" : [ + "fullUrl": "Location/1731634216918749000.6c261d38-8144-44f8-a19c-5ae83e8e841a", + "resource": { + "resourceType": "Location", + "id": "1731634216918749000.6c261d38-8144-44f8-a19c-5ae83e8e841a", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961316895999000.f4f0f915-8510-4eaf-b1bb-b60663d2ea2d", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961316895999000.f4f0f915-8510-4eaf-b1bb-b60663d2ea2d", - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "PractitionerRole/1731634216918806000.dfa4b1db-cc37-4667-af7f-6b9f27f062b4", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634216918806000.dfa4b1db-cc37-4667-af7f-6b9f27f062b4", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction", + "valueCodeableConcept": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "SPRF" + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "SPRF" } ] } } ], - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961316894454000.9a3d2574-ad4e-4212-9436-5853ba384268" + "practitioner": { + "reference": "Practitioner/1731634216917703000.23d60908-85dc-4aac-9d49-072ea83e70de" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961316894719000.047243de-b8fc-4798-893c-bc3a9499f31a" + "reference": "Location/1731634216917900000.53b315ea-abc3-4723-a143-06ecc9ce4844" }, { - "reference" : "Location/1716961316894959000.a0d2ff2b-c987-42c8-8f58-8144e5de0a47" + "reference": "Location/1731634216918059000.3f975fd4-e8ac-45f1-a709-1e0d0765c449" }, { - "reference" : "Location/1716961316895204000.781fd286-15aa-4dcd-8309-5633206dc240" + "reference": "Location/1731634216918233000.9cbe861b-7c68-4281-a2e0-2a6b8c2ae3bb" }, { - "reference" : "Location/1716961316895437000.e1aecc14-72b9-4ca8-9b50-14034a2c7bec" + "reference": "Location/1731634216918406000.4a5cf608-9f0d-4dba-a96f-dfb8440c5ff0" }, { - "reference" : "Location/1716961316895682000.9eb047fd-be59-49ad-ab7e-82550c253749" + "reference": "Location/1731634216918575000.326ebf6c-f4c2-43f8-a7a2-a545219d7a02" }, { - "reference" : "Location/1716961316895916000.d747169f-8b7f-4f16-b624-a0a59cde49a4" + "reference": "Location/1731634216918749000.6c261d38-8144-44f8-a19c-5ae83e8e841a" } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir index acd56095ddf..115c817d113 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir @@ -140,6 +140,15 @@ "extension" : [ { "url" : "OBR.25", "valueId" : "Z" + }, { + "url" : "OBR.7", + "valueDateTime" : "2023-08-16T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } ] + } } ] } ], "status" : "unknown", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir index fc493c10936..39ba3564a8c 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir @@ -135,6 +135,19 @@ "resource" : { "resourceType" : "ServiceRequest", "id" : "1722987602982733000.e8242c5b-b8be-42d7-acd2-3d1eabe25403", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ { + "url" : "OBR.7", + "valueDateTime" : "2023-08-16T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } ] + } + } ] + } ], "status" : "unknown", "subject" : { "reference" : "Patient/1722987602868565000.65fc0b06-6516-4f88-b2a1-c709d8f28761" diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir index 6bbe487885a..1b894659cfb 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir @@ -140,6 +140,15 @@ "extension" : [ { "url" : "OBR.25", "valueId" : "F" + }, { + "url" : "OBR.7", + "valueDateTime" : "2023-08-16T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } ] + } } ] } ], "status" : "unknown", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir index c3b02918aca..2b6e0887ccb 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir @@ -140,6 +140,15 @@ "extension" : [ { "url" : "OBR.25", "valueId" : "F" + }, { + "url" : "OBR.7", + "valueDateTime" : "2021-08-16T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20210816123358-0500" + } ] + } } ] } ], "status" : "unknown", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir index 19f8354896d..9919e4b8b15 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir @@ -147,6 +147,24 @@ "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension" : [ { + "url" : "OBR.7", + "valueDateTime" : "2023-08-16T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20230816123358-0500" + } ] + } + }, { + "url" : "OBR.8", + "valueDateTime" : "2024-08-16T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20240816123358-0500" + } ] + } + }, { "url" : "OBR.25", "valueId" : "F" } ] diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir index 069245225fc..019813c0eb2 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir @@ -1,789 +1,789 @@ { - "resourceType" : "Bundle", - "id" : "1716961418305847000.33e0bc97-30cb-4e8f-b036-d9fe4f5516c1", - "meta" : { - "lastUpdated" : "2024-05-29T01:43:38.315-04:00" + "resourceType": "Bundle", + "id": "1731634383038363000.a2818b38-91a7-4492-925d-ba3ffa184ab9", + "meta": { + "lastUpdated": "2024-11-14T17:33:03.042-08:00" }, - "identifier" : { - "system" : "https://reportstream.cdc.gov/prime-router", - "value" : "20230816123358" + "identifier": { + "system": "https://reportstream.cdc.gov/prime-router", + "value": "20230816123358" }, - "type" : "message", - "timestamp" : "2023-08-16T13:33:58.000-04:00", - "entry" : [ + "type": "message", + "timestamp": "2023-08-16T10:33:58.000-07:00", + "entry": [ { - "fullUrl" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435", - "resource" : { - "resourceType" : "MessageHeader", - "id" : "bb504ecd-c2ab-3be3-91d8-6065e2bce435", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", - "valueString" : "^~\\\u0026#" + "fullUrl": "MessageHeader/1731634383077541000.781f41cd-545e-486d-942b-f7afe710cd7d", + "resource": { + "resourceType": "MessageHeader", + "id": "1731634383077541000.781f41cd-545e-486d-942b-f7afe710cd7d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", + "valueString": "^~\\\u0026#" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension": [ { - "url" : "MSH.7", - "valueString" : "20230816123358-0500" + "url": "MSH.7", + "valueString": "20230816123358-0500" } ] } ], - "eventCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "R01", - "display" : "ORU^R01^ORU_R01" + "eventCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v2-0003", + "code": "R01", + "display": "ORU^R01^ORU_R01" } } }, { - "fullUrl" : "Provenance/1716961418948709000.affc79e9-e75a-4096-9a41-4635a2d990e9", - "resource" : { - "resourceType" : "Provenance", - "id" : "1716961418948709000.affc79e9-e75a-4096-9a41-4635a2d990e9", - "target" : [ + "fullUrl": "Provenance/1731634383323663000.61625745-355d-46d4-a8c0-22e05bbba9d3", + "resource": { + "resourceType": "Provenance", + "id": "1731634383323663000.61625745-355d-46d4-a8c0-22e05bbba9d3", + "target": [ { - "reference" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435" + "reference": "MessageHeader/1731634383077541000.781f41cd-545e-486d-942b-f7afe710cd7d" }, { - "reference" : "DiagnosticReport/1716961419238142000.a0dc8f6f-c950-4b8c-958a-066dd646621b" + "reference": "DiagnosticReport/1731634383531350000.ab3f2761-6e25-4431-926b-82c4805af925" } ], - "recorded" : "2023-08-16T12:33:58-05:00", - "activity" : { - "coding" : [ + "recorded": "2023-08-16T12:33:58-05:00", + "activity": { + "coding": [ { - "display" : "ORU^R01^ORU_R01" + "display": "ORU^R01^ORU_R01" } ] } } }, { - "fullUrl" : "Provenance/1716961418957964000.5addbc67-0e19-4b5b-9065-7adf25bd9435", - "resource" : { - "resourceType" : "Provenance", - "id" : "1716961418957964000.5addbc67-0e19-4b5b-9065-7adf25bd9435", - "recorded" : "2024-05-29T01:43:38Z", - "policy" : [ + "fullUrl": "Provenance/1731634383330361000.1fb2d8a3-e149-479a-ad57-8719daaec01d", + "resource": { + "resourceType": "Provenance", + "id": "1731634383330361000.1fb2d8a3-e149-479a-ad57-8719daaec01d", + "recorded": "2024-11-14T17:33:03Z", + "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], - "activity" : { - "coding" : [ + "activity": { + "coding": [ { - "code" : "v2-FHIR transformation" + "code": "v2-FHIR transformation" } ] }, - "agent" : [ + "agent": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "assembler" + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" } ] }, - "who" : { - "reference" : "Organization/1716961418957310000.9e276c38-4f2d-408f-9186-0bb198537055" + "who": { + "reference": "Organization/1731634383329931000.1880c1c8-03b9-4896-8b69-0c76ef07e67d" } } ] } }, { - "fullUrl" : "Organization/1716961418957310000.9e276c38-4f2d-408f-9186-0bb198537055", - "resource" : { - "resourceType" : "Organization", - "id" : "1716961418957310000.9e276c38-4f2d-408f-9186-0bb198537055", - "identifier" : [ + "fullUrl": "Organization/1731634383329931000.1880c1c8-03b9-4896-8b69-0c76ef07e67d", + "resource": { + "resourceType": "Organization", + "id": "1731634383329931000.1880c1c8-03b9-4896-8b69-0c76ef07e67d", + "identifier": [ { - "value" : "CDC PRIME - Atlanta" + "value": "CDC PRIME - Atlanta" }, { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.237821" + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" } ] } }, { - "fullUrl" : "Patient/1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0", - "resource" : { - "resourceType" : "Patient", - "id" : "1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0" + "fullUrl": "Patient/1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a", + "resource": { + "resourceType": "Patient", + "id": "1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a" } }, { - "fullUrl" : "Provenance/1716961418973514000.4f098d51-1d8f-4d81-a818-fb4cf6831a70", - "resource" : { - "resourceType" : "Provenance", - "id" : "1716961418973514000.4f098d51-1d8f-4d81-a818-fb4cf6831a70", - "target" : [ + "fullUrl": "Provenance/1731634383341932000.2f585971-9c22-4998-808e-7f6f0dd7a4b1", + "resource": { + "resourceType": "Provenance", + "id": "1731634383341932000.2f585971-9c22-4998-808e-7f6f0dd7a4b1", + "target": [ { - "reference" : "Patient/1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0" + "reference": "Patient/1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a" } ], - "recorded" : "2024-05-29T01:43:38Z", - "activity" : { - "coding" : [ + "recorded": "2024-11-14T17:33:03Z", + "activity": { + "coding": [ { - "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", - "code" : "UPDATE" + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" } ] } } }, { - "fullUrl" : "Specimen/1716961418975964000.f6e2be4a-538a-49f3-952b-b3bfeb470d5a", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716961418975964000.f6e2be4a-538a-49f3-952b-b3bfeb470d5a", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" + "fullUrl": "Specimen/1731634383343644000.e29e56bb-5419-40e7-85ee-68bcfde687bc", + "resource": { + "resourceType": "Specimen", + "id": "1731634383343644000.e29e56bb-5419-40e7-85ee-68bcfde687bc", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" } ], - "collection" : { - "collector" : { - "reference" : "Practitioner/1727212329144859000.0332f28c-28e8-4098-bb7e-d3db7ffead1e" + "collection": { + "collector": { + "reference": "Practitioner/1731634383350810000.a3b0bb68-2242-46a7-8d17-8722ce105828" }, - "collectedPeriod" : { - "start" : "2023-08-16T12:33:58-05:00", - "_start" : { - "extension" : [ + "collectedPeriod": { + "start": "2023-08-16T12:33:58-05:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230816123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230816123358-0500" } ] }, - "end" : "2023-09-16T12:33:58-05:00", - "_end" : { - "extension" : [ + "end": "2023-09-16T12:33:58-05:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230916123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230916123358-0500" } ] } } }, - "note" : [ + "note": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "4438", - "display" : "Collectors Comment" + "code": "4438", + "display": "Collectors Comment" } ] } } ], - "text" : "4438, Collectors Comment" + "text": "4438, Collectors Comment" } ] } }, { - "fullUrl" : "Practitioner/1727212329144859000.0332f28c-28e8-4098-bb7e-d3db7ffead1e", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727212329144859000.0332f28c-28e8-4098-bb7e-d3db7ffead1e", - "extension" : [ + "fullUrl": "Practitioner/1731634383350810000.a3b0bb68-2242-46a7-8d17-8722ce105828", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383350810000.a3b0bb68-2242-46a7-8d17-8722ce105828", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" + "system": "urn:oid:AssigningSystem", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "Collector", - "_family" : { - "extension" : [ + "use": "official", + "family": "Collector", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Identifier" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Identifier" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "ServiceRequest/1727212329304688000.16d7eaa9-940a-415c-a7c5-b4f9f35b4d9d", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1716961419201447000.c6b89d4a-7bf4-4b73-9069-68f887e3c4be", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "RE" + "fullUrl": "ServiceRequest/1731634383512563000.09387d12-e4c1-48f3-817c-cc09f30b8341", + "resource": { + "resourceType": "ServiceRequest", + "id": "1731634383512563000.09387d12-e4c1-48f3-817c-cc09f30b8341", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "RE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "20230816123358-050" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "20230816123358-050" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "Order Status Modifier" + "code": "Order Status Modifier" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ { - "url" : "ORC.5", - "valueString" : "CM" + "url": "ORC.5", + "valueString": "CM" }, { - "url" : "ORC.6", - "valueString" : "R" + "url": "ORC.6", + "valueString": "R" }, { - "url" : "ORC.19", - "valueReference" : { - "reference" : "Practitioner/1716961419157917000.f8c1dfe1-8d8f-40f5-a6dc-704421f174aa" + "url": "ORC.19", + "valueReference": { + "reference": "Practitioner/1731634383480700000.9ba0adae-bd85-4f35-bab0-213b60a59415" } }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1716961419159347000.021374ea-f76b-462f-bd9c-21ad94867ab5" + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1731634383481549000.758db6fd-3c4d-44b9-9a5d-eb286907da6d" } }, { - "url" : "orc-22-ordering-facility-address", - "valueAddress" : { - "extension" : [ + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "6059" + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "6059" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "4861" + "url": "SAD.1", + "valueString": "4861" }, { - "url" : "SAD.2", - "valueString" : "20TH AVE" + "url": "SAD.2", + "valueString": "20TH AVE" }, { - "url" : "SAD.3", - "valueString" : "1" + "url": "SAD.3", + "valueString": "1" } ] }, { - "url" : "XAD.2", - "valueString" : "Ordering Facility Address" + "url": "XAD.2", + "valueString": "Ordering Facility Address" }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" }, { - "url" : "XAD.8", - "valueString" : "Other Geographic Designation" + "url": "XAD.8", + "valueString": "Other Geographic Designation" }, { - "url" : "XAD.11", - "valueCode" : "A" + "url": "XAD.11", + "valueCode": "A" }, { - "url" : "XAD.13", - "valueString" : "20220501102531-0400" + "url": "XAD.13", + "valueString": "20220501102531-0400" }, { - "url" : "XAD.14", - "valueString" : "20230501102531-0400" + "url": "XAD.14", + "valueString": "20230501102531-0400" }, { - "url" : "XAD.19", - "valueCode" : "Adressee" + "url": "XAD.19", + "valueCode": "Adressee" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "4861", "20TH AVE", "1", "Ordering Facility Address", "Adressee" ], - "city" : "THUNDER MOUNTAIN", - "district" : "County", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "city": "THUNDER MOUNTAIN", + "district": "County", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } }, { - "url" : "orc-24-ordering-provider-address", - "valueAddress" : { - "extension" : [ + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "6059" + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "6059" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "4861" + "url": "SAD.1", + "valueString": "4861" }, { - "url" : "SAD.2", - "valueString" : "20TH AVE" + "url": "SAD.2", + "valueString": "20TH AVE" }, { - "url" : "SAD.3", - "valueString" : "1" + "url": "SAD.3", + "valueString": "1" } ] }, { - "url" : "XAD.2", - "valueString" : "Ordering Provider Address" + "url": "XAD.2", + "valueString": "Ordering Provider Address" }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" }, { - "url" : "XAD.8", - "valueString" : "Other Geographic Designation" + "url": "XAD.8", + "valueString": "Other Geographic Designation" }, { - "url" : "XAD.11", - "valueCode" : "A" + "url": "XAD.11", + "valueCode": "A" }, { - "url" : "XAD.13", - "valueString" : "20220501102531-0400" + "url": "XAD.13", + "valueString": "20220501102531-0400" }, { - "url" : "XAD.14", - "valueString" : "20230501102531-0400" + "url": "XAD.14", + "valueString": "20230501102531-0400" }, { - "url" : "XAD.19", - "valueCode" : "Adressee" + "url": "XAD.19", + "valueCode": "Adressee" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "4861", "20TH AVE", "1", "Ordering Provider Address", "Adressee" ], - "city" : "THUNDER MOUNTAIN", - "district" : "County", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "city": "THUNDER MOUNTAIN", + "district": "County", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } }, { - "url" : "ORC.27", - "valueString" : "20230816123358-0500" + "url": "ORC.27", + "valueString": "20230816123358-0500" }, { - "url" : "ORC.28", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.28", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "567", - "display" : "E" + "code": "567", + "display": "E" } ] } }, { - "url" : "ORC.30", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.30", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "U" + "code": "123", + "display": "U" } ] } }, { - "url" : "ORC.31", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.31", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "Parent" + "code": "123", + "display": "Parent" } ] } }, { - "url" : "ORC.8", - "valueIdentifier" : { - "extension" : [ + "url": "ORC.8", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Assigned Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Assigned Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Assigned Universal" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Assigned Universal" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "Filler Assigned" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "Filler Assigned" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Assigned Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Assigned Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Assigned Universal" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Assigned Universal" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "Placer Assigned" + "value": "Placer Assigned" } }, { - "url" : "ORC.10", - "valueReference" : { - "reference" : "Practitioner/1716961419164738000.6ab810bf-389f-4674-938f-378034503ffc" + "url": "ORC.10", + "valueReference": { + "reference": "Practitioner/1731634383485422000.54dc7c41-c941-483b-8103-c7de14832b95" } }, { - "url" : "ORC.11", - "valueReference" : { - "reference" : "Practitioner/1716961419167348000.6eca49db-8541-449c-afae-085df4efec1d" + "url": "ORC.11", + "valueReference": { + "reference": "Practitioner/1731634383487113000.7baa847f-6245-4acf-8103-6e13729f46ea" } }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1716961419169941000.05eeb26f-14c0-48ec-8acb-c4b6d30228d5" + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1731634383488921000.543dd5b8-b05f-4e67-bec6-19210862a5fc" } }, { - "url" : "ORC.13", - "valueReference" : { - "reference" : "Location/1716961419171829000.ad4dadf2-050e-48ec-8ecc-bdf97a4a76e3" + "url": "ORC.13", + "valueReference": { + "reference": "Location/1731634383490151000.0ea774aa-473a-4396-894a-fc92e728785a" } }, { - "url" : "ORC.15", - "valueString" : "20230816123358-0500" + "url": "ORC.15", + "valueString": "20230816123358-0500" }, { - "url" : "ORC.17", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.17", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "481", - "display" : "Entering ORG" + "code": "481", + "display": "Entering ORG" } ] } }, { - "url" : "ORC.18", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.18", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "Entering Device" + "code": "Entering Device" } ] } @@ -791,94 +791,210 @@ ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ + "url": "OBR.2", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "Placer Identifier" + "value": "Placer Identifier" } }, { - "url" : "OBR.3", - "valueIdentifier" : { - "extension" : [ + "url": "OBR.3", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "Filler Identifier" + "value": "Filler Identifier" } }, { - "url" : "OBR.20", - "valueString" : "filler1" + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731634383492209000.0543b72e-0b06-4995-9e34-bf638e3a5409" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "BP" + }, + { + "url": "XTN.7", + "valueString": "7595016" + }, + { + "url": "XTN.12", + "valueString": "+1 260 759 5016" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "pager", + "value": "+1 260 759 5016", + "use": "work" + } }, { - "url" : "OBR.21", - "valueString" : "filler2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "Internet" + }, + { + "url": "XTN.4", + "valueString": "order.callback@email.com" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "email", + "value": "order.callback@email.com", + "use": "work" + } }, { - "url" : "OBR.22", - "valueString" : "20230816123358-0500" + "url": "OBR.18", + "valueString": "placer1" }, { - "url" : "OBR.23", - "extension" : [ + "url": "OBR.19", + "valueString": "placer2" + }, + { + "url": "OBR.20", + "valueString": "filler1" + }, + { + "url": "OBR.7", + "valueDateTime": "2023-08-16T12:33:58-05:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230816123358-0500" + } + ] + } + }, + { + "url": "OBR.8", + "valueDateTime": "2023-09-16T12:33:58-05:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230916123358-0500" + } + ] + } + }, + { + "url": "OBR.21", + "valueString": "filler2" + }, + { + "url": "OBR.22", + "valueString": "20230816123358-0500" + }, + { + "url": "OBR.23", + "extension": [ { - "url" : "moc-1-1-monetary-amount", - "valueString" : "100" + "url": "moc-1-1-monetary-amount", + "valueString": "100" }, { - "url" : "moc-1-2-monetary-denomination", - "valueString" : "$" + "url": "moc-1-2-monetary-denomination", + "valueString": "$" }, { - "url" : "moc-2-charge-code", - "valueCodeableConcept" : { - "coding" : [ + "url": "moc-2-charge-code", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "16", - "display" : "code" + "code": "16", + "display": "code" } ] } @@ -886,682 +1002,590 @@ ] }, { - "url" : "OBR.24", - "valueId" : "OTH" + "url": "OBR.24", + "valueId": "OTH" }, { - "url" : "OBR.25", - "valueId" : "F" + "url": "OBR.25", + "valueId": "F" }, { - "url" : "OBR.26", - "extension" : [ + "url": "OBR.26", + "extension": [ { - "url" : "prl-1-parent-observation-identifier", - "valueCodeableConcept" : { - "coding" : [ + "url": "prl-1-parent-observation-identifier", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "444", - "display" : "ParentId" + "code": "444", + "display": "ParentId" } ] } }, { - "url" : "prl-2-parent-observation-sub-identifier", - "valueString" : "888" + "url": "prl-2-parent-observation-sub-identifier", + "valueString": "888" }, { - "url" : "prl-3-parent-observation-descriptor", - "valueString" : "ParentOBSdescriptor" + "url": "prl-3-parent-observation-descriptor", + "valueString": "ParentOBSdescriptor" } ] }, { - "url" : "OBR.28", - "valueReference" : { - "reference" : "Practitioner/1716961419176041000.0b1843c8-23be-4b14-b376-cbea411c02be" + "url": "OBR.28", + "valueReference": { + "reference": "Practitioner/1731634383495675000.7197cb61-81bb-412f-a73f-beb280782eab" } }, { - "url" : "OBR.29", - "valueIdentifier" : { - "extension" : [ + "url": "OBR.29", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CSV" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CSV" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "11D1111111" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "11D1111111" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Other CSV" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Other CSV" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "22D2222222" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "22D2222222" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA2" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" } }, { - "url" : "OBR.33", - "valueReference" : { - "reference" : "PractitionerRole/1716961419187806000.8cf774c0-e426-456f-8e41-8c8451ccab44" + "url": "OBR.33", + "valueReference": { + "reference": "PractitionerRole/1731634383508216000.eee90ad3-12bd-4f98-921c-d047da642384" } }, { - "url" : "OBR.36", - "valueString" : "20230816123358-0500" - }, - { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1716961419190531000.8c18e940-d531-4a4a-be11-76571cb04069" - } + "url": "OBR.36", + "valueString": "20230816123358-0500" }, { - "url" : "OBR.39", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.39", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "4438", - "display" : "Collectors Comment" + "code": "4438", + "display": "Collectors Comment" } ] } }, { - "url" : "OBR.44", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.44", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" } ], - "code" : "5019", - "display" : "Procedure Code" + "code": "5019", + "display": "Procedure Code" } ] } }, { - "url" : "obr-45-procedure-code-modifier", - "valueCodeableConcept" : { - "coding" : [ + "url": "obr-45-procedure-code-modifier", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" } ], - "code" : "887766", - "display" : "Procedure Code Modifier" + "code": "887766", + "display": "Procedure Code Modifier" } ] } }, { - "url" : "OBR.48", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.48", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "71435", - "display" : "Medically Necessary Duplicate Procedure" + "code": "71435", + "display": "Medically Necessary Duplicate Procedure" } ] } }, { - "url" : "OBR.49", - "valueString" : "N" + "url": "OBR.49", + "valueString": "N" }, { - "url" : "OBR.50", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.50", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "443331", - "display" : "Parent Universal Service Identifier" + "code": "443331", + "display": "Parent Universal Service Identifier" } ] } }, { - "url" : "OBR.53", - "valueIdentifier" : { - "extension" : [ + "url": "OBR.53", + "valueIdentifier": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Placer Order" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.53" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.53" } ], - "value" : "Alt" + "value": "Alt" } }, { - "url" : "OBR.11", - "valueString" : "G" + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1731634383511179000.0b53d520-02ff-4774-a4bc-38412877aa54" + } }, { - "url" : "OBR.12", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "512", - "display" : "Danger code" - } - ] - } + "url": "OBR.11", + "valueString": "G" }, { - "url" : "OBR.13", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.12", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "relevent info" + "code": "512", + "display": "Danger code" } ] } }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1716961419199166000.fdb25d11-34dd-4eb2-b01f-d97bbfa74a4d" - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, + "url": "OBR.13", + "valueCodeableConcept": { + "coding": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "260" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "7595016" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ - { - "url" : "XTN.2", - "valueString" : "WPN" - }, - { - "url" : "XTN.3", - "valueString" : "BP" - }, - { - "url" : "XTN.7", - "valueString" : "7595016" - }, + "extension": [ { - "url" : "XTN.12", - "valueString" : "+1 260 759 5016" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" - } - ], - "system" : "pager", - "value" : "+1 260 759 5016", - "use" : "work" - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ - { - "url" : "XTN.2", - "valueString" : "WPN" - }, - { - "url" : "XTN.3", - "valueString" : "Internet" - }, - { - "url" : "XTN.4", - "valueString" : "order.callback@email.com" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" + ], + "code": "relevent info" } - ], - "system" : "email", - "value" : "order.callback@email.com", - "use" : "work" + ] } - }, - { - "url" : "OBR.18", - "valueString" : "placer1" - }, - { - "url" : "OBR.19", - "valueString" : "placer2" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Placer Identifier" + "value": "Placer Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.3" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "Filler Identifier" + "value": "Filler Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Group Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Group Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Group Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Group Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "Group Identifier" + "value": "Group Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Group Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Group Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Group Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Group Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } ] }, - "value" : "Group Identifier" + "value": "Group Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Placer Order" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.33" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.33" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Alt" + "value": "Alt" } ], - "status" : "completed", - "intent" : "order", - "code" : { - "coding" : [ + "status": "completed", + "intent": "order", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "Universal service identifier" + "code": "123", + "display": "Universal service identifier" } ] }, - "orderDetail" : [ + "orderDetail": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.46" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.46" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "7461", - "display" : "Placer Supplemental" + "code": "7461", + "display": "Placer Supplemental" } ] }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.47" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.47" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "8811", - "display" : "Fillter Supplemental" + "code": "8811", + "display": "Fillter Supplemental" } ] } ], - "subject" : { - "reference" : "Patient/1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0" + "subject": { + "reference": "Patient/1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a" }, - "requester" : { - "extension" : [ + "requester": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "260" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "7595016" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "PRN" + "url": "XTN.2", + "valueString": "PRN" }, { - "url" : "XTN.3", - "valueString" : "BP" + "url": "XTN.3", + "valueString": "BP" }, { - "url" : "XTN.7", - "valueString" : "7595016" + "url": "XTN.7", + "valueString": "7595016" }, { - "url" : "XTN.12", - "valueString" : "+1 260 759 5016" + "url": "XTN.12", + "valueString": "+1 260 759 5016" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" } ], - "system" : "pager", - "value" : "+1 260 759 5016", - "use" : "home" + "system": "pager", + "value": "+1 260 759 5016", + "use": "home" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "PRN" + "url": "XTN.2", + "valueString": "PRN" }, { - "url" : "XTN.3", - "valueString" : "Internet" + "url": "XTN.3", + "valueString": "Internet" }, { - "url" : "XTN.4", - "valueString" : "otto.daugherty@email.com" + "url": "XTN.4", + "valueString": "otto.daugherty@email.com" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" } ], - "system" : "email", - "value" : "otto.daugherty@email.com", - "use" : "home" + "system": "email", + "value": "otto.daugherty@email.com", + "use": "home" } } ], - "reference" : "PractitionerRole/1716961419130732000.d6a59ed9-0885-4293-9620-d11d93485174" + "reference": "PractitionerRole/1731634383467826000.bef04cc5-ee35-40fe-bfb1-c4f3a1bfbb6b" }, - "locationCode" : [ + "locationCode": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "location" + "code": "123", + "display": "location" } ] } ], - "reasonCode" : [ + "reasonCode": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "3216", - "display" : "ReasonForStudy" + "code": "3216", + "display": "ReasonForStudy" } ] } @@ -1569,2076 +1593,2283 @@ } }, { - "fullUrl" : "Practitioner/1716961419142924000.da22d6af-ea15-4247-a3ae-667a500eba06", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419142924000.da22d6af-ea15-4247-a3ae-667a500eba06", - "extension" : [ + "fullUrl": "Practitioner/1731634383472644000.7ab5913c-11b3-41d3-9b01-ebb9110dc658", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383472644000.7ab5913c-11b3-41d3-9b01-ebb9110dc658", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ORDERING", - "_family" : { - "extension" : [ + "use": "official", + "family": "ORDERING", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "PROVIDER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "PROVIDER" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ], - "address" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "6059" + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "6059" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "4861" + "url": "SAD.1", + "valueString": "4861" }, { - "url" : "SAD.2", - "valueString" : "20TH AVE" + "url": "SAD.2", + "valueString": "20TH AVE" }, { - "url" : "SAD.3", - "valueString" : "1" + "url": "SAD.3", + "valueString": "1" } ] }, { - "url" : "XAD.2", - "valueString" : "Ordering Provider Address" + "url": "XAD.2", + "valueString": "Ordering Provider Address" }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" }, { - "url" : "XAD.8", - "valueString" : "Other Geographic Designation" + "url": "XAD.8", + "valueString": "Other Geographic Designation" }, { - "url" : "XAD.11", - "valueCode" : "A" + "url": "XAD.11", + "valueCode": "A" }, { - "url" : "XAD.13", - "valueString" : "20220501102531-0400" + "url": "XAD.13", + "valueString": "20220501102531-0400" }, { - "url" : "XAD.14", - "valueString" : "20230501102531-0400" + "url": "XAD.14", + "valueString": "20230501102531-0400" }, { - "url" : "XAD.19", - "valueCode" : "Adressee" + "url": "XAD.19", + "valueCode": "Adressee" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "4861", "20TH AVE", "1", "Ordering Provider Address", "Adressee" ], - "city" : "THUNDER MOUNTAIN", - "district" : "County", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "city": "THUNDER MOUNTAIN", + "district": "County", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Location/1716961419144799000.5822bacb-5b95-46e3-a41f-1143a21cec7b", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419144799000.5822bacb-5b95-46e3-a41f-1143a21cec7b", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "fullUrl": "Location/1731634383473171000.01ed39fc-b274-432b-a87d-a4475350c464", + "resource": { + "resourceType": "Location", + "id": "1731634383473171000.01ed39fc-b274-432b-a87d-a4475350c464", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "identifier": [ { - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ + "name": "Hospital A", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Organization/1716961419150072000.3a6c1127-a691-4d3c-9b7b-94da49550fe7", - "resource" : { - "resourceType" : "Organization", - "id" : "1716961419150072000.3a6c1127-a691-4d3c-9b7b-94da49550fe7", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ + "fullUrl": "Organization/1731634383475708000.3f104572-f7cb-4ec8-8ddf-d3de06d99b60", + "resource": { + "resourceType": "Organization", + "id": "1731634383475708000.3f104572-f7cb-4ec8-8ddf-d3de06d99b60", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" } ], - "text" : "OriginalText" + "text": "OriginalText" } } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.3", - "valueString" : "123" + "url": "XON.3", + "valueString": "123" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1716961419144799000.5822bacb-5b95-46e3-a41f-1143a21cec7b" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731634383473171000.01ed39fc-b274-432b-a87d-a4475350c464" } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" } ] }, - "value" : "123" + "value": "123" } ], - "name" : "Ordering Facility", - "telecom" : [ + "name": "Ordering Facility", + "telecom": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "260" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "7595016" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "PRN" + "url": "XTN.2", + "valueString": "PRN" }, { - "url" : "XTN.3", - "valueString" : "BP" + "url": "XTN.3", + "valueString": "BP" }, { - "url" : "XTN.7", - "valueString" : "7595016" + "url": "XTN.7", + "valueString": "7595016" }, { - "url" : "XTN.12", - "valueString" : "+1 260 759 5016" + "url": "XTN.12", + "valueString": "+1 260 759 5016" } ] } ], - "system" : "pager", - "value" : "+1 260 759 5016", - "use" : "home" + "system": "pager", + "value": "+1 260 759 5016", + "use": "home" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "PRN" + "url": "XTN.2", + "valueString": "PRN" }, { - "url" : "XTN.3", - "valueString" : "Internet" + "url": "XTN.3", + "valueString": "Internet" }, { - "url" : "XTN.4", - "valueString" : "orderingfacility@email.com" + "url": "XTN.4", + "valueString": "orderingfacility@email.com" } ] } ], - "system" : "email", - "value" : "orderingfacility@email.com", - "use" : "home" + "system": "email", + "value": "orderingfacility@email.com", + "use": "home" } ], - "address" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "6059" + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "6059" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "4861" + "url": "SAD.1", + "valueString": "4861" }, { - "url" : "SAD.2", - "valueString" : "20TH AVE" + "url": "SAD.2", + "valueString": "20TH AVE" }, { - "url" : "SAD.3", - "valueString" : "1" + "url": "SAD.3", + "valueString": "1" } ] }, { - "url" : "XAD.2", - "valueString" : "Ordering Facility Address" + "url": "XAD.2", + "valueString": "Ordering Facility Address" }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" }, { - "url" : "XAD.8", - "valueString" : "Other Geographic Designation" + "url": "XAD.8", + "valueString": "Other Geographic Designation" }, { - "url" : "XAD.11", - "valueCode" : "A" + "url": "XAD.11", + "valueCode": "A" }, { - "url" : "XAD.13", - "valueString" : "20220501102531-0400" + "url": "XAD.13", + "valueString": "20220501102531-0400" }, { - "url" : "XAD.14", - "valueString" : "20230501102531-0400" + "url": "XAD.14", + "valueString": "20230501102531-0400" }, { - "url" : "XAD.19", - "valueCode" : "Adressee" + "url": "XAD.19", + "valueCode": "Adressee" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "4861", "20TH AVE", "1", "Ordering Facility Address", "Adressee" ], - "city" : "THUNDER MOUNTAIN", - "district" : "County", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "city": "THUNDER MOUNTAIN", + "district": "County", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "PractitionerRole/1716961419130732000.d6a59ed9-0885-4293-9620-d11d93485174", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961419130732000.d6a59ed9-0885-4293-9620-d11d93485174", - "practitioner" : { - "reference" : "Practitioner/1716961419142924000.da22d6af-ea15-4247-a3ae-667a500eba06" + "fullUrl": "PractitionerRole/1731634383467826000.bef04cc5-ee35-40fe-bfb1-c4f3a1bfbb6b", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634383467826000.bef04cc5-ee35-40fe-bfb1-c4f3a1bfbb6b", + "practitioner": { + "reference": "Practitioner/1731634383472644000.7ab5913c-11b3-41d3-9b01-ebb9110dc658" }, - "organization" : { - "reference" : "Organization/1716961419150072000.3a6c1127-a691-4d3c-9b7b-94da49550fe7" + "organization": { + "reference": "Organization/1731634383475708000.3f104572-f7cb-4ec8-8ddf-d3de06d99b60" } } }, { - "fullUrl" : "Practitioner/1716961419157917000.f8c1dfe1-8d8f-40f5-a6dc-704421f174aa", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419157917000.f8c1dfe1-8d8f-40f5-a6dc-704421f174aa", - "extension" : [ + "fullUrl": "Practitioner/1731634383480700000.9ba0adae-bd85-4f35-bab0-213b60a59415", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383480700000.9ba0adae-bd85-4f35-bab0-213b60a59415", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ACTION", - "_family" : { - "extension" : [ + "use": "official", + "family": "ACTION", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "BY" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BY" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Location/1716961419158636000.96b9b60c-8cd6-48a6-b047-cd2899b021d5", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419158636000.96b9b60c-8cd6-48a6-b047-cd2899b021d5", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "fullUrl": "Location/1731634383481089000.17b4ac9b-5da3-4f8e-bf6c-860fcd25d401", + "resource": { + "resourceType": "Location", + "id": "1731634383481089000.17b4ac9b-5da3-4f8e-bf6c-860fcd25d401", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "identifier": [ { - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ + "name": "Hospital A", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Organization/1716961419159347000.021374ea-f76b-462f-bd9c-21ad94867ab5", - "resource" : { - "resourceType" : "Organization", - "id" : "1716961419159347000.021374ea-f76b-462f-bd9c-21ad94867ab5", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ + "fullUrl": "Organization/1731634383481549000.758db6fd-3c4d-44b9-9a5d-eb286907da6d", + "resource": { + "resourceType": "Organization", + "id": "1731634383481549000.758db6fd-3c4d-44b9-9a5d-eb286907da6d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" } ], - "text" : "OriginalText" + "text": "OriginalText" } } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.3", - "valueString" : "123" + "url": "XON.3", + "valueString": "123" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1716961419158636000.96b9b60c-8cd6-48a6-b047-cd2899b021d5" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731634383481089000.17b4ac9b-5da3-4f8e-bf6c-860fcd25d401" } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" } ] }, - "value" : "123" + "value": "123" } ], - "name" : "Ordering Facility" + "name": "Ordering Facility" } }, { - "fullUrl" : "Practitioner/1716961419164738000.6ab810bf-389f-4674-938f-378034503ffc", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419164738000.6ab810bf-389f-4674-938f-378034503ffc", - "extension" : [ + "fullUrl": "Practitioner/1731634383485422000.54dc7c41-c941-483b-8103-c7de14832b95", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383485422000.54dc7c41-c941-483b-8103-c7de14832b95", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ENTERED", - "_family" : { - "extension" : [ + "use": "official", + "family": "ENTERED", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "BY" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BY" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1716961419167348000.6eca49db-8541-449c-afae-085df4efec1d", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419167348000.6eca49db-8541-449c-afae-085df4efec1d", - "extension" : [ + "fullUrl": "Practitioner/1731634383487113000.7baa847f-6245-4acf-8103-6e13729f46ea", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383487113000.7baa847f-6245-4acf-8103-6e13729f46ea", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "VERIFIED", - "_family" : { - "extension" : [ + "use": "official", + "family": "VERIFIED", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "BY" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BY" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1716961419169941000.05eeb26f-14c0-48ec-8acb-c4b6d30228d5", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419169941000.05eeb26f-14c0-48ec-8acb-c4b6d30228d5", - "extension" : [ + "fullUrl": "Practitioner/1731634383488921000.543dd5b8-b05f-4e67-bec6-19210862a5fc", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383488921000.543dd5b8-b05f-4e67-bec6-19210862a5fc", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ORDERING", - "_family" : { - "extension" : [ + "use": "official", + "family": "ORDERING", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "PROVIDER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "PROVIDER" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Organization/1716961419170431000.5cabb282-b07f-4f79-9490-f03519951412", - "resource" : { - "resourceType" : "Organization", - "id" : "1716961419170431000.5cabb282-b07f-4f79-9490-f03519951412", - "identifier" : [ + "fullUrl": "Organization/1731634383489268000.77964d15-e911-42ae-b399-bbcc5c008324", + "resource": { + "resourceType": "Organization", + "id": "1731634383489268000.77964d15-e911-42ae-b399-bbcc5c008324", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "ASSIGNEE" + "value": "ASSIGNEE" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "UUID" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "UUID" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "222.1111.22222" + "system": "urn:ietf:rfc:3986", + "value": "222.1111.22222" } ] } }, { - "fullUrl" : "Location/1716961419171479000.9e73ba78-5089-4bc6-afba-8c5b1334c20a", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419171479000.9e73ba78-5089-4bc6-afba-8c5b1334c20a", - "identifier" : [ + "fullUrl": "Location/1731634383489915000.8495a863-65e5-4b62-99ce-9a9c8c0cee2b", + "resource": { + "resourceType": "Location", + "id": "1731634383489915000.8495a863-65e5-4b62-99ce-9a9c8c0cee2b", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.4.4.4" + "value": "2.4.4.4" } ], - "physicalType" : { - "coding" : [ + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961419171598000.f70252aa-64f9-4f59-ba87-78c83bc650ad", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419171598000.f70252aa-64f9-4f59-ba87-78c83bc650ad", - "identifier" : [ + "fullUrl": "Location/1731634383489999000.00256010-e615-410f-a6c1-da9c48432757", + "resource": { + "resourceType": "Location", + "id": "1731634383489999000.00256010-e615-410f-a6c1-da9c48432757", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Point of Care" + "value": "Point of Care" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.1.1.1" + "value": "2.1.1.1" } ], - "physicalType" : { - "coding" : [ + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } } ] }, - "partOf" : { - "reference" : "Location/1716961419171479000.9e73ba78-5089-4bc6-afba-8c5b1334c20a" + "partOf": { + "reference": "Location/1731634383489915000.8495a863-65e5-4b62-99ce-9a9c8c0cee2b" } } }, { - "fullUrl" : "Location/1716961419171829000.ad4dadf2-050e-48ec-8ecc-bdf97a4a76e3", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419171829000.ad4dadf2-050e-48ec-8ecc-bdf97a4a76e3", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", - "valueString" : "location type" + "fullUrl": "Location/1731634383490151000.0ea774aa-473a-4396-894a-fc92e728785a", + "resource": { + "resourceType": "Location", + "id": "1731634383490151000.0ea774aa-473a-4396-894a-fc92e728785a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString": "location type" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Bed A" + "value": "Bed A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.3.3.3" + "value": "2.3.3.3" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NAME" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NAME" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "UNI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "UNI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", - "valueString" : "organization" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString": "organization" } ], - "value" : "Entity ID", - "assigner" : { - "reference" : "Organization/1716961419170431000.5cabb282-b07f-4f79-9490-f03519951412" + "value": "Entity ID", + "assigner": { + "reference": "Organization/1731634383489268000.77964d15-e911-42ae-b399-bbcc5c008324" } } ], - "status" : "active", - "description" : "Description", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "description": "Description", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] }, - "partOf" : { - "reference" : "Location/1716961419171598000.f70252aa-64f9-4f59-ba87-78c83bc650ad" + "partOf": { + "reference": "Location/1731634383489999000.00256010-e615-410f-a6c1-da9c48432757" } } }, { - "fullUrl" : "Practitioner/1716961419176041000.0b1843c8-23be-4b14-b376-cbea411c02be", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419176041000.0b1843c8-23be-4b14-b376-cbea411c02be", - "extension" : [ + "fullUrl": "Practitioner/1731634383492209000.0543b72e-0b06-4995-9e34-bf638e3a5409", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383492209000.0543b72e-0b06-4995-9e34-bf638e3a5409", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.20", + "valueString": "20230501102531-0400" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignJ" + } + ] + } + }, + { + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignA" + } + ] + } + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + }, + { + "url": "XCN.19", + "valueString": "20220501102531-0400" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "Ordering", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Provider" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731634383495675000.7197cb61-81bb-412f-a73f-beb280782eab", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383495675000.7197cb61-81bb-412f-a73f-beb280782eab", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" + "system": "urn:oid:AssigningSystem", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "result", - "_family" : { - "extension" : [ + "use": "official", + "family": "result", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "copiesto" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "copiesto" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1716961419177470000.5a0c9064-eaf9-4c35-88d0-3f5898ae0989", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419177470000.5a0c9064-eaf9-4c35-88d0-3f5898ae0989", - "extension" : [ + "fullUrl": "Practitioner/1731634383496809000.9f83cb91-6d58-4357-a55f-c167a7c2a75a", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383496809000.9f83cb91-6d58-4357-a55f-c167a7c2a75a", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Results Interpreter" + "url": "CNN.3", + "valueString": "Results Interpreter" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "Assistant", - "given" : [ + "family": "Assistant", + "given": [ "Results Interpreter", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -3647,98 +3878,98 @@ } }, { - "fullUrl" : "Location/1716961419178400000.24af0016-dec0-4cc4-a85e-f8105ca2b01b", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419178400000.24af0016-dec0-4cc4-a85e-f8105ca2b01b", - "identifier" : [ + "fullUrl": "Location/1731634383497312000.5ad385d5-09f7-4ca4-accf-b8d4c60566bd", + "resource": { + "resourceType": "Location", + "id": "1731634383497312000.5ad385d5-09f7-4ca4-accf-b8d4c60566bd", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961419186100000.0c8c602f-eb8d-4246-b4db-0a4f8f83d47a", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419186100000.0c8c602f-eb8d-4246-b4db-0a4f8f83d47a", - "identifier" : [ + "fullUrl": "Location/1731634383507155000.d2847672-1af8-4a9b-a529-033d9f15d35e", + "resource": { + "resourceType": "Location", + "id": "1731634383507155000.d2847672-1af8-4a9b-a529-033d9f15d35e", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961419186514000.5d500395-c0df-4a65-82a2-333850e0fbad", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419186514000.5d500395-c0df-4a65-82a2-333850e0fbad", - "identifier" : [ + "fullUrl": "Location/1731634383507460000.34a8c8d7-c4ab-4c12-a39a-a0fbec14f82d", + "resource": { + "resourceType": "Location", + "id": "1731634383507460000.34a8c8d7-c4ab-4c12-a39a-a0fbec14f82d", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -3748,824 +3979,617 @@ } }, { - "fullUrl" : "Location/1716961419186954000.2f438cd1-1edc-44bc-809a-00f9150221a8", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419186954000.2f438cd1-1edc-44bc-809a-00f9150221a8", - "identifier" : [ + "fullUrl": "Location/1731634383507704000.d4fe2a75-7d99-4bf6-a868-ae4459066d3d", + "resource": { + "resourceType": "Location", + "id": "1731634383507704000.d4fe2a75-7d99-4bf6-a868-ae4459066d3d", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961419187361000.91cb313d-6849-4c9c-9033-26c2a92a4d5a", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419187361000.91cb313d-6849-4c9c-9033-26c2a92a4d5a", - "identifier" : [ + "fullUrl": "Location/1731634383507922000.9c3bc8bc-1330-41f1-8d8b-2cbded8c458f", + "resource": { + "resourceType": "Location", + "id": "1731634383507922000.9c3bc8bc-1330-41f1-8d8b-2cbded8c458f", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961419187691000.5294042c-278e-49f2-a3bd-bc4d0d957b54", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419187691000.5294042c-278e-49f2-a3bd-bc4d0d957b54", - "identifier" : [ + "fullUrl": "Location/1731634383508138000.f660af87-b6d3-47bd-9ced-583f867d31c7", + "resource": { + "resourceType": "Location", + "id": "1731634383508138000.f660af87-b6d3-47bd-9ced-583f867d31c7", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961419187806000.8cf774c0-e426-456f-8e41-8c8451ccab44", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961419187806000.8cf774c0-e426-456f-8e41-8c8451ccab44", - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "fullUrl": "PractitionerRole/1731634383508216000.eee90ad3-12bd-4f98-921c-d047da642384", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634383508216000.eee90ad3-12bd-4f98-921c-d047da642384", + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961419177470000.5a0c9064-eaf9-4c35-88d0-3f5898ae0989" + "practitioner": { + "reference": "Practitioner/1731634383496809000.9f83cb91-6d58-4357-a55f-c167a7c2a75a" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961419178400000.24af0016-dec0-4cc4-a85e-f8105ca2b01b" + "reference": "Location/1731634383497312000.5ad385d5-09f7-4ca4-accf-b8d4c60566bd" }, { - "reference" : "Location/1716961419186100000.0c8c602f-eb8d-4246-b4db-0a4f8f83d47a" + "reference": "Location/1731634383507155000.d2847672-1af8-4a9b-a529-033d9f15d35e" }, { - "reference" : "Location/1716961419186514000.5d500395-c0df-4a65-82a2-333850e0fbad" + "reference": "Location/1731634383507460000.34a8c8d7-c4ab-4c12-a39a-a0fbec14f82d" }, { - "reference" : "Location/1716961419186954000.2f438cd1-1edc-44bc-809a-00f9150221a8" + "reference": "Location/1731634383507704000.d4fe2a75-7d99-4bf6-a868-ae4459066d3d" }, { - "reference" : "Location/1716961419187361000.91cb313d-6849-4c9c-9033-26c2a92a4d5a" + "reference": "Location/1731634383507922000.9c3bc8bc-1330-41f1-8d8b-2cbded8c458f" }, { - "reference" : "Location/1716961419187691000.5294042c-278e-49f2-a3bd-bc4d0d957b54" - } - ] - } - }, - { - "fullUrl" : "Practitioner/1716961419190531000.8c18e940-d531-4a4a-be11-76571cb04069", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419190531000.8c18e940-d531-4a4a-be11-76571cb04069", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "LUDWIG" - }, - { - "url" : "XCN.4", - "valueString" : "B" - }, - { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" - }, - { - "url" : "XCN.21", - "valueString" : "MD" - }, - { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "AssignJ" - } - ] - } - }, - { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "AssignA" - } - ] - } - }, - { - "url" : "XCN.5", - "valueString" : "2ND" - }, - { - "url" : "XCN.7", - "valueString" : "MD" - }, - { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "SRC" - } - ] - } - }, - { - "url" : "XCN.10", - "valueString" : "B" - }, - { - "url" : "XCN.15", - "valueString" : "A" - }, - { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "NameContext" - } - ] - } - }, - { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" - } - ] - } - ], - "identifier" : [ - { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" - } - ], - "type" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "DL" - } - ] - }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" - } - ], - "name" : [ - { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" - } - ], - "use" : "official", - "family" : "Collector", - "_family" : { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Identifier" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" - } - ] - }, - "given" : [ - "LUDWIG", - "B" - ], - "prefix" : [ - "DR" - ], - "suffix" : [ - "2ND", - "MD", - "MD" - ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" - } + "reference": "Location/1731634383508138000.f660af87-b6d3-47bd-9ced-583f867d31c7" } ] } }, { - "fullUrl" : "Practitioner/1716961419199166000.fdb25d11-34dd-4eb2-b01f-d97bbfa74a4d", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419199166000.fdb25d11-34dd-4eb2-b01f-d97bbfa74a4d", - "extension" : [ + "fullUrl": "Practitioner/1731634383511179000.0b53d520-02ff-4774-a4bc-38412877aa54", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383511179000.0b53d520-02ff-4774-a4bc-38412877aa54", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" + "system": "urn:oid:AssigningSystem", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "Ordering", - "_family" : { - "extension" : [ + "use": "official", + "family": "Collector", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Provider" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Identifier" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "DiagnosticReport/1716961419238142000.a0dc8f6f-c950-4b8c-958a-066dd646621b", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1716961419238142000.a0dc8f6f-c950-4b8c-958a-066dd646621b", - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/event-statusReason", - "valueCodeableConcept" : { - "text" : "Control Code Reason" + "fullUrl": "DiagnosticReport/1731634383531350000.ab3f2761-6e25-4431-926b-82c4805af925", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1731634383531350000.ab3f2761-6e25-4431-926b-82c4805af925", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/event-statusReason", + "valueCodeableConcept": { + "text": "Control Code Reason" } } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Placer Identifier" + "value": "Placer Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "Filler Identifier" + "value": "Filler Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Group Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Group Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Group Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Group Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "Group Identifier" + "value": "Group Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Group Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Group Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Group Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Group Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } ] }, - "value" : "Group Identifier" + "value": "Group Identifier" } ], - "basedOn" : [ + "basedOn": [ { - "reference" : "ServiceRequest/1727212329304688000.16d7eaa9-940a-415c-a7c5-b4f9f35b4d9d" + "reference": "ServiceRequest/1731634383512563000.09387d12-e4c1-48f3-817c-cc09f30b8341" } ], - "status" : "final", - "category" : [ + "status": "final", + "category": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "OTH" + "code": "OTH" } ] } ], - "code" : { - "coding" : [ + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "Universal service identifier" + "code": "123", + "display": "Universal service identifier" } ] }, - "subject" : { - "reference" : "Patient/1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0" + "subject": { + "reference": "Patient/1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a" }, - "effectivePeriod" : { - "start" : "2023-08-16T12:33:58-05:00", - "_start" : { - "extension" : [ + "effectivePeriod": { + "start": "2023-08-16T12:33:58-05:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230816123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230816123358-0500" } ] }, - "end" : "2023-09-16T12:33:58-05:00", - "_end" : { - "extension" : [ + "end": "2023-09-16T12:33:58-05:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230916123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230916123358-0500" } ] } }, - "issued" : "2023-08-16T12:33:58-05:00", - "_issued" : { - "extension" : [ + "issued": "2023-08-16T12:33:58-05:00", + "_issued": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230816123358-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230816123358-0500" } ] }, - "performer" : [ + "performer": [ { - "reference" : "PractitionerRole/1716961419234315000.6b08f098-ec88-4a3c-bdc5-df1942b60574" + "reference": "PractitionerRole/1731634383529309000.6fd542af-2c94-4d79-8471-f1d92abf4090" }, { - "reference" : "PractitionerRole/1716961419237857000.20b6130d-0808-422e-91df-b1d0bc2f0b3b" + "reference": "PractitionerRole/1731634383531196000.bf4216f7-b1f6-4c9b-bec3-b0d8e9798847" } ], - "resultsInterpreter" : [ + "resultsInterpreter": [ { - "reference" : "PractitionerRole/1716961419231439000.81b58d30-ca38-4fd6-b84c-4adaae772a24" + "reference": "PractitionerRole/1731634383527618000.dca78207-9baf-4b47-92b2-6a97e35aa58f" } ], - "specimen" : [ + "specimen": [ { - "reference" : "Specimen/1716961418975964000.f6e2be4a-538a-49f3-952b-b3bfeb470d5a" + "reference": "Specimen/1731634383343644000.e29e56bb-5419-40e7-85ee-68bcfde687bc" } ] } }, { - "fullUrl" : "Practitioner/1716961419228970000.3afa9862-ea44-4caa-b1a8-d038c3e1ad54", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419228970000.3afa9862-ea44-4caa-b1a8-d038c3e1ad54", - "extension" : [ + "fullUrl": "Practitioner/1731634383526057000.79e68ed2-7462-4586-8821-9e8d2d0a947d", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383526057000.79e68ed2-7462-4586-8821-9e8d2d0a947d", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Interpreter" + "url": "CNN.3", + "valueString": "Interpreter" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "Results", - "given" : [ + "family": "Results", + "given": [ "Interpreter", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -4574,98 +4598,98 @@ } }, { - "fullUrl" : "Location/1716961419229420000.87c57559-c31a-41ca-b297-8a3dcedf0963", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419229420000.87c57559-c31a-41ca-b297-8a3dcedf0963", - "identifier" : [ + "fullUrl": "Location/1731634383526422000.95730ff7-9244-4f8f-b38d-4a6cafe96397", + "resource": { + "resourceType": "Location", + "id": "1731634383526422000.95730ff7-9244-4f8f-b38d-4a6cafe96397", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961419229785000.ab73c4b4-baa2-4397-9ee2-793d925a0dc8", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419229785000.ab73c4b4-baa2-4397-9ee2-793d925a0dc8", - "identifier" : [ + "fullUrl": "Location/1731634383526632000.fc2812a0-f1a3-4003-8f26-5af493244e26", + "resource": { + "resourceType": "Location", + "id": "1731634383526632000.fc2812a0-f1a3-4003-8f26-5af493244e26", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961419230253000.3fee4a91-71e7-4a91-8264-10375b68c19e", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419230253000.3fee4a91-71e7-4a91-8264-10375b68c19e", - "identifier" : [ + "fullUrl": "Location/1731634383526903000.ba09f633-4f25-4a48-8031-d4f7906031fe", + "resource": { + "resourceType": "Location", + "id": "1731634383526903000.ba09f633-4f25-4a48-8031-d4f7906031fe", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -4675,184 +4699,184 @@ } }, { - "fullUrl" : "Location/1716961419230599000.a801490e-324f-4ccc-94d5-2f24710e611a", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419230599000.a801490e-324f-4ccc-94d5-2f24710e611a", - "identifier" : [ + "fullUrl": "Location/1731634383527151000.a9928806-847f-4b6b-bc05-508a1beb4e76", + "resource": { + "resourceType": "Location", + "id": "1731634383527151000.a9928806-847f-4b6b-bc05-508a1beb4e76", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961419230928000.36905147-b696-44c1-8f8a-aa6ba5847318", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419230928000.36905147-b696-44c1-8f8a-aa6ba5847318", - "identifier" : [ + "fullUrl": "Location/1731634383527341000.9960a829-1e7e-499e-853f-b755bfdb661d", + "resource": { + "resourceType": "Location", + "id": "1731634383527341000.9960a829-1e7e-499e-853f-b755bfdb661d", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961419231323000.775c2ae8-43b4-4f29-a126-5cf473f8f366", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419231323000.775c2ae8-43b4-4f29-a126-5cf473f8f366", - "identifier" : [ + "fullUrl": "Location/1731634383527538000.26a8ba9f-e5c6-4a1e-b53a-c536186e210f", + "resource": { + "resourceType": "Location", + "id": "1731634383527538000.26a8ba9f-e5c6-4a1e-b53a-c536186e210f", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961419231439000.81b58d30-ca38-4fd6-b84c-4adaae772a24", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961419231439000.81b58d30-ca38-4fd6-b84c-4adaae772a24", - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "fullUrl": "PractitionerRole/1731634383527618000.dca78207-9baf-4b47-92b2-6a97e35aa58f", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634383527618000.dca78207-9baf-4b47-92b2-6a97e35aa58f", + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961419228970000.3afa9862-ea44-4caa-b1a8-d038c3e1ad54" + "practitioner": { + "reference": "Practitioner/1731634383526057000.79e68ed2-7462-4586-8821-9e8d2d0a947d" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961419229420000.87c57559-c31a-41ca-b297-8a3dcedf0963" + "reference": "Location/1731634383526422000.95730ff7-9244-4f8f-b38d-4a6cafe96397" }, { - "reference" : "Location/1716961419229785000.ab73c4b4-baa2-4397-9ee2-793d925a0dc8" + "reference": "Location/1731634383526632000.fc2812a0-f1a3-4003-8f26-5af493244e26" }, { - "reference" : "Location/1716961419230253000.3fee4a91-71e7-4a91-8264-10375b68c19e" + "reference": "Location/1731634383526903000.ba09f633-4f25-4a48-8031-d4f7906031fe" }, { - "reference" : "Location/1716961419230599000.a801490e-324f-4ccc-94d5-2f24710e611a" + "reference": "Location/1731634383527151000.a9928806-847f-4b6b-bc05-508a1beb4e76" }, { - "reference" : "Location/1716961419230928000.36905147-b696-44c1-8f8a-aa6ba5847318" + "reference": "Location/1731634383527341000.9960a829-1e7e-499e-853f-b755bfdb661d" }, { - "reference" : "Location/1716961419231323000.775c2ae8-43b4-4f29-a126-5cf473f8f366" + "reference": "Location/1731634383527538000.26a8ba9f-e5c6-4a1e-b53a-c536186e210f" } ] } }, { - "fullUrl" : "Practitioner/1716961419232230000.b516cd07-4d8c-44f9-9300-3123dfcea2a9", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419232230000.b516cd07-4d8c-44f9-9300-3123dfcea2a9", - "extension" : [ + "fullUrl": "Practitioner/1731634383528095000.2be36213-1f42-4d18-a8ef-7a9ab774a4c1", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383528095000.2be36213-1f42-4d18-a8ef-7a9ab774a4c1", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Transcriptionist" + "url": "CNN.3", + "valueString": "Transcriptionist" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "DOE", - "given" : [ + "family": "DOE", + "given": [ "Transcriptionist", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -4861,98 +4885,98 @@ } }, { - "fullUrl" : "Location/1716961419232617000.585ac1d3-97b6-46e7-9137-bc762b075446", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419232617000.585ac1d3-97b6-46e7-9137-bc762b075446", - "identifier" : [ + "fullUrl": "Location/1731634383528300000.f7b3bed8-3928-4851-92d1-22f2fa124223", + "resource": { + "resourceType": "Location", + "id": "1731634383528300000.f7b3bed8-3928-4851-92d1-22f2fa124223", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961419232945000.77edf253-6bf5-4739-9903-e5bb46d54f04", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419232945000.77edf253-6bf5-4739-9903-e5bb46d54f04", - "identifier" : [ + "fullUrl": "Location/1731634383528491000.5378de74-8fc3-4ac9-8167-2cd289ddcd39", + "resource": { + "resourceType": "Location", + "id": "1731634383528491000.5378de74-8fc3-4ac9-8167-2cd289ddcd39", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961419233281000.9a4b4623-797f-4e89-8d08-63773ca6100c", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419233281000.9a4b4623-797f-4e89-8d08-63773ca6100c", - "identifier" : [ + "fullUrl": "Location/1731634383528696000.462d536e-2e8a-4c80-b822-0f032c63a7a6", + "resource": { + "resourceType": "Location", + "id": "1731634383528696000.462d536e-2e8a-4c80-b822-0f032c63a7a6", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -4962,197 +4986,197 @@ } }, { - "fullUrl" : "Location/1716961419233587000.3834d6db-66b5-4467-8e04-4328d4c79195", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419233587000.3834d6db-66b5-4467-8e04-4328d4c79195", - "identifier" : [ + "fullUrl": "Location/1731634383528875000.2c847264-143f-47a7-a31e-19b57e7e112a", + "resource": { + "resourceType": "Location", + "id": "1731634383528875000.2c847264-143f-47a7-a31e-19b57e7e112a", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961419233903000.1b69198c-8c17-49e1-8b08-7e499ef9f677", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419233903000.1b69198c-8c17-49e1-8b08-7e499ef9f677", - "identifier" : [ + "fullUrl": "Location/1731634383529054000.5f9a3c86-0ace-4b2a-a154-76b9d7079f1c", + "resource": { + "resourceType": "Location", + "id": "1731634383529054000.5f9a3c86-0ace-4b2a-a154-76b9d7079f1c", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961419234201000.f77c8280-2661-48a5-b2a2-fc74d40bf1e1", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419234201000.f77c8280-2661-48a5-b2a2-fc74d40bf1e1", - "identifier" : [ + "fullUrl": "Location/1731634383529233000.ec21818c-e19a-4318-b368-21d9663d3425", + "resource": { + "resourceType": "Location", + "id": "1731634383529233000.ec21818c-e19a-4318-b368-21d9663d3425", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961419234315000.6b08f098-ec88-4a3c-bdc5-df1942b60574", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961419234315000.6b08f098-ec88-4a3c-bdc5-df1942b60574", - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "PractitionerRole/1731634383529309000.6fd542af-2c94-4d79-8471-f1d92abf4090", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634383529309000.6fd542af-2c94-4d79-8471-f1d92abf4090", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction", + "valueCodeableConcept": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "TRANS" + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "TRANS" } ] } } ], - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961419232230000.b516cd07-4d8c-44f9-9300-3123dfcea2a9" + "practitioner": { + "reference": "Practitioner/1731634383528095000.2be36213-1f42-4d18-a8ef-7a9ab774a4c1" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961419232617000.585ac1d3-97b6-46e7-9137-bc762b075446" + "reference": "Location/1731634383528300000.f7b3bed8-3928-4851-92d1-22f2fa124223" }, { - "reference" : "Location/1716961419232945000.77edf253-6bf5-4739-9903-e5bb46d54f04" + "reference": "Location/1731634383528491000.5378de74-8fc3-4ac9-8167-2cd289ddcd39" }, { - "reference" : "Location/1716961419233281000.9a4b4623-797f-4e89-8d08-63773ca6100c" + "reference": "Location/1731634383528696000.462d536e-2e8a-4c80-b822-0f032c63a7a6" }, { - "reference" : "Location/1716961419233587000.3834d6db-66b5-4467-8e04-4328d4c79195" + "reference": "Location/1731634383528875000.2c847264-143f-47a7-a31e-19b57e7e112a" }, { - "reference" : "Location/1716961419233903000.1b69198c-8c17-49e1-8b08-7e499ef9f677" + "reference": "Location/1731634383529054000.5f9a3c86-0ace-4b2a-a154-76b9d7079f1c" }, { - "reference" : "Location/1716961419234201000.f77c8280-2661-48a5-b2a2-fc74d40bf1e1" + "reference": "Location/1731634383529233000.ec21818c-e19a-4318-b368-21d9663d3425" } ] } }, { - "fullUrl" : "Practitioner/1716961419235594000.0a9e4028-10ee-4064-a39c-7a73e0dfb3ed", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716961419235594000.0a9e4028-10ee-4064-a39c-7a73e0dfb3ed", - "extension" : [ + "fullUrl": "Practitioner/1731634383529972000.2ce8c144-1c57-49e3-b119-673c6918682e", + "resource": { + "resourceType": "Practitioner", + "id": "1731634383529972000.2ce8c144-1c57-49e3-b119-673c6918682e", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ { - "url" : "CNN.3", - "valueString" : "Technician" + "url": "CNN.3", + "valueString": "Technician" }, { - "url" : "CNN.4", - "valueString" : "S" + "url": "CNN.4", + "valueString": "S" }, { - "url" : "CNN.5", - "valueString" : "ESQ" + "url": "CNN.5", + "valueString": "ESQ" }, { - "url" : "CNN.7", - "valueString" : "MD" + "url": "CNN.7", + "valueString": "MD" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "123" + "value": "123" } ], - "name" : [ + "name": [ { - "family" : "DOE", - "given" : [ + "family": "DOE", + "given": [ "Technician", "S" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "ESQ", "MD" ] @@ -5161,98 +5185,98 @@ } }, { - "fullUrl" : "Location/1716961419235989000.37216cf0-ce13-4296-8655-615ffe0cab8c", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419235989000.37216cf0-ce13-4296-8655-615ffe0cab8c", - "identifier" : [ + "fullUrl": "Location/1731634383530161000.ac2cbff3-782e-4a49-85b4-b9fb86d4e78b", + "resource": { + "resourceType": "Location", + "id": "1731634383530161000.ac2cbff3-782e-4a49-85b4-b9fb86d4e78b", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1716961419236323000.6ab8db02-e773-4999-8a09-ec13ece92a71", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419236323000.6ab8db02-e773-4999-8a09-ec13ece92a71", - "identifier" : [ + "fullUrl": "Location/1731634383530439000.2144bad5-5ace-4f99-a96e-ac4759ee1a2d", + "resource": { + "resourceType": "Location", + "id": "1731634383530439000.2144bad5-5ace-4f99-a96e-ac4759ee1a2d", + "identifier": [ { - "value" : "Building 123" + "value": "Building 123" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" } ] } } }, { - "fullUrl" : "Location/1716961419236653000.539b4be9-674e-4f8f-be49-054a837f6d78", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419236653000.539b4be9-674e-4f8f-be49-054a837f6d78", - "identifier" : [ + "fullUrl": "Location/1731634383530629000.db763ef0-c552-4acf-ba56-9869bcb4f4e1", + "resource": { + "resourceType": "Location", + "id": "1731634383530629000.db763ef0-c552-4acf-ba56-9869bcb4f4e1", + "identifier": [ { - "value" : "Point of Care" + "value": "Point of Care" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } @@ -5262,130 +5286,130 @@ } }, { - "fullUrl" : "Location/1716961419236972000.582a3872-056b-44fc-8988-2fb07a901f03", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419236972000.582a3872-056b-44fc-8988-2fb07a901f03", - "identifier" : [ + "fullUrl": "Location/1731634383530802000.0a2ea167-7079-4095-8b7e-9de528fdd980", + "resource": { + "resourceType": "Location", + "id": "1731634383530802000.0a2ea167-7079-4095-8b7e-9de528fdd980", + "identifier": [ { - "value" : "Floor A" + "value": "Floor A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" } ] } } }, { - "fullUrl" : "Location/1716961419237422000.960273fd-3d0f-4432-8e08-9e2bc4f1b699", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419237422000.960273fd-3d0f-4432-8e08-9e2bc4f1b699", - "identifier" : [ + "fullUrl": "Location/1731634383530968000.e7e8d1fa-a491-45c5-a508-22b203a9a54f", + "resource": { + "resourceType": "Location", + "id": "1731634383530968000.e7e8d1fa-a491-45c5-a508-22b203a9a54f", + "identifier": [ { - "value" : "Room 101" + "value": "Room 101" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" } ] } } }, { - "fullUrl" : "Location/1716961419237718000.59d2400c-d6df-45e0-8f37-59c85af4e979", - "resource" : { - "resourceType" : "Location", - "id" : "1716961419237718000.59d2400c-d6df-45e0-8f37-59c85af4e979", - "identifier" : [ + "fullUrl": "Location/1731634383531121000.2a9825c9-a9c1-46b6-bc8b-8f2225eace2b", + "resource": { + "resourceType": "Location", + "id": "1731634383531121000.2a9825c9-a9c1-46b6-bc8b-8f2225eace2b", + "identifier": [ { - "value" : "Bed A" + "value": "Bed A" } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] } } }, { - "fullUrl" : "PractitionerRole/1716961419237857000.20b6130d-0808-422e-91df-b1d0bc2f0b3b", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716961419237857000.20b6130d-0808-422e-91df-b1d0bc2f0b3b", - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "PractitionerRole/1731634383531196000.bf4216f7-b1f6-4c9b-bec3-b0d8e9798847", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634383531196000.bf4216f7-b1f6-4c9b-bec3-b0d8e9798847", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction", + "valueCodeableConcept": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "SPRF" + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "SPRF" } ] } } ], - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" } ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" } ] } }, - "practitioner" : { - "reference" : "Practitioner/1716961419235594000.0a9e4028-10ee-4064-a39c-7a73e0dfb3ed" + "practitioner": { + "reference": "Practitioner/1731634383529972000.2ce8c144-1c57-49e3-b119-673c6918682e" }, - "location" : [ + "location": [ { - "reference" : "Location/1716961419235989000.37216cf0-ce13-4296-8655-615ffe0cab8c" + "reference": "Location/1731634383530161000.ac2cbff3-782e-4a49-85b4-b9fb86d4e78b" }, { - "reference" : "Location/1716961419236323000.6ab8db02-e773-4999-8a09-ec13ece92a71" + "reference": "Location/1731634383530439000.2144bad5-5ace-4f99-a96e-ac4759ee1a2d" }, { - "reference" : "Location/1716961419236653000.539b4be9-674e-4f8f-be49-054a837f6d78" + "reference": "Location/1731634383530629000.db763ef0-c552-4acf-ba56-9869bcb4f4e1" }, { - "reference" : "Location/1716961419236972000.582a3872-056b-44fc-8988-2fb07a901f03" + "reference": "Location/1731634383530802000.0a2ea167-7079-4095-8b7e-9de528fdd980" }, { - "reference" : "Location/1716961419237422000.960273fd-3d0f-4432-8e08-9e2bc4f1b699" + "reference": "Location/1731634383530968000.e7e8d1fa-a491-45c5-a508-22b203a9a54f" }, { - "reference" : "Location/1716961419237718000.59d2400c-d6df-45e0-8f37-59c85af4e979" + "reference": "Location/1731634383531121000.2a9825c9-a9c1-46b6-bc8b-8f2225eace2b" } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-populated.fhir index e46452d67c1..b12741be980 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-populated.fhir @@ -1,654 +1,654 @@ { - "resourceType" : "Bundle", - "id" : "1715988294820844000.06e641a8-b110-4da8-80b4-6846cbdba00d", - "meta" : { - "lastUpdated" : "2024-05-17T19:24:54.831-04:00" + "resourceType": "Bundle", + "id": "1731634401448001000.04e14f5d-bdf0-43a5-ae09-f97beacf25ef", + "meta": { + "lastUpdated": "2024-11-14T17:33:21.452-08:00" }, - "identifier" : { - "system" : "https://reportstream.cdc.gov/prime-router", - "value" : "20230816123358" + "identifier": { + "system": "https://reportstream.cdc.gov/prime-router", + "value": "20230816123358" }, - "type" : "message", - "timestamp" : "2023-08-16T13:33:58.000-04:00", - "entry" : [ + "type": "message", + "timestamp": "2023-08-16T10:33:58.000-07:00", + "entry": [ { - "fullUrl" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435", - "resource" : { - "resourceType" : "MessageHeader", - "id" : "bb504ecd-c2ab-3be3-91d8-6065e2bce435", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", - "valueString" : "^~\\\u0026#" + "fullUrl": "MessageHeader/1731634401479764000.462363ed-4954-43ec-9314-13562dc23764", + "resource": { + "resourceType": "MessageHeader", + "id": "1731634401479764000.462363ed-4954-43ec-9314-13562dc23764", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", + "valueString": "^~\\\u0026#" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension": [ { - "url" : "MSH.7", - "valueString" : "20230816123358-0500" + "url": "MSH.7", + "valueString": "20230816123358-0500" } ] } ], - "eventCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "R01", - "display" : "ORU^R01^ORU_R01" + "eventCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v2-0003", + "code": "R01", + "display": "ORU^R01^ORU_R01" } } }, { - "fullUrl" : "Provenance/1715988295496416000.a11ab68e-8ad5-4c2a-8eae-cc9114ddff96", - "resource" : { - "resourceType" : "Provenance", - "id" : "1715988295496416000.a11ab68e-8ad5-4c2a-8eae-cc9114ddff96", - "target" : [ + "fullUrl": "Provenance/1731634401723012000.c51370d4-5a24-4d3b-8b61-e12c03acf93a", + "resource": { + "resourceType": "Provenance", + "id": "1731634401723012000.c51370d4-5a24-4d3b-8b61-e12c03acf93a", + "target": [ { - "reference" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435" + "reference": "MessageHeader/1731634401479764000.462363ed-4954-43ec-9314-13562dc23764" }, { - "reference" : "DiagnosticReport/1715988329002527000.3a9d79cd-5dfa-4ed9-be24-57fd943d59e9" + "reference": "DiagnosticReport/1731634401912861000.f80f2f58-064f-4b21-8607-4fbe5024ae71" } ], - "recorded" : "2023-08-16T12:33:58-05:00", - "activity" : { - "coding" : [ + "recorded": "2023-08-16T12:33:58-05:00", + "activity": { + "coding": [ { - "display" : "ORU^R01^ORU_R01" + "display": "ORU^R01^ORU_R01" } ] } } }, { - "fullUrl" : "Provenance/1715988295506948000.57ac2d0c-6d53-4f05-952e-f493efba989a", - "resource" : { - "resourceType" : "Provenance", - "id" : "1715988295506948000.57ac2d0c-6d53-4f05-952e-f493efba989a", - "recorded" : "2024-05-17T19:24:55Z", - "policy" : [ + "fullUrl": "Provenance/1731634401729167000.2df8ebf7-34f6-4fef-8701-0860867bb6be", + "resource": { + "resourceType": "Provenance", + "id": "1731634401729167000.2df8ebf7-34f6-4fef-8701-0860867bb6be", + "recorded": "2024-11-14T17:33:21Z", + "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], - "activity" : { - "coding" : [ + "activity": { + "coding": [ { - "code" : "v2-FHIR transformation" + "code": "v2-FHIR transformation" } ] }, - "agent" : [ + "agent": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "assembler" + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" } ] }, - "who" : { - "reference" : "Organization/1715988295506187000.3aa4f1af-9421-482b-bee8-a6fce6ad4b3e" + "who": { + "reference": "Organization/1731634401728718000.f15133ec-4469-4997-ae52-ffe33498325d" } } ] } }, { - "fullUrl" : "Organization/1715988295506187000.3aa4f1af-9421-482b-bee8-a6fce6ad4b3e", - "resource" : { - "resourceType" : "Organization", - "id" : "1715988295506187000.3aa4f1af-9421-482b-bee8-a6fce6ad4b3e", - "identifier" : [ + "fullUrl": "Organization/1731634401728718000.f15133ec-4469-4997-ae52-ffe33498325d", + "resource": { + "resourceType": "Organization", + "id": "1731634401728718000.f15133ec-4469-4997-ae52-ffe33498325d", + "identifier": [ { - "value" : "CDC PRIME - Atlanta" + "value": "CDC PRIME - Atlanta" }, { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.237821" + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" } ] } }, { - "fullUrl" : "Patient/1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910", - "resource" : { - "resourceType" : "Patient", - "id" : "1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910" + "fullUrl": "Patient/1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1", + "resource": { + "resourceType": "Patient", + "id": "1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1" } }, { - "fullUrl" : "Provenance/1715988295525236000.84809690-8d80-4a03-971b-713d7965e138", - "resource" : { - "resourceType" : "Provenance", - "id" : "1715988295525236000.84809690-8d80-4a03-971b-713d7965e138", - "target" : [ + "fullUrl": "Provenance/1731634401740939000.078047ba-ea2f-4fa9-8692-5d5a5a7d5e0f", + "resource": { + "resourceType": "Provenance", + "id": "1731634401740939000.078047ba-ea2f-4fa9-8692-5d5a5a7d5e0f", + "target": [ { - "reference" : "Patient/1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910" + "reference": "Patient/1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1" } ], - "recorded" : "2024-05-17T19:24:55Z", - "activity" : { - "coding" : [ + "recorded": "2024-11-14T17:33:21Z", + "activity": { + "coding": [ { - "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", - "code" : "UPDATE" + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" } ] } } }, { - "fullUrl" : "Specimen/1715988295526768000.81b10cff-cb7e-4988-b7de-8180bc4c918d", - "resource" : { - "resourceType" : "Specimen", - "id" : "1715988295526768000.81b10cff-cb7e-4988-b7de-8180bc4c918d", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" + "fullUrl": "Specimen/1731634401742218000.f1b9b00a-efa9-4634-96a0-2d79df6d19a0", + "resource": { + "resourceType": "Specimen", + "id": "1731634401742218000.f1b9b00a-efa9-4634-96a0-2d79df6d19a0", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" } ] } }, { - "fullUrl" : "ServiceRequest/1715988328980595000.46fa67cf-fd89-4e38-aee9-8e45ae473886", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1715988328980595000.46fa67cf-fd89-4e38-aee9-8e45ae473886", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "RE" + "fullUrl": "ServiceRequest/1731634401895562000.2091f6e1-26e9-4e2a-9da1-50f5cf8d00a7", + "resource": { + "resourceType": "ServiceRequest", + "id": "1731634401895562000.2091f6e1-26e9-4e2a-9da1-50f5cf8d00a7", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "RE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "20230816123358-050" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "20230816123358-050" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "Order Status Modifier" + "code": "Order Status Modifier" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ { - "url" : "ORC.5", - "valueString" : "CM" + "url": "ORC.5", + "valueString": "CM" }, { - "url" : "ORC.6", - "valueString" : "R" + "url": "ORC.6", + "valueString": "R" }, { - "url" : "ORC.19", - "valueReference" : { - "reference" : "Practitioner/1715988306639438000.feb16641-9b1f-4953-a479-f6fe13834e20" + "url": "ORC.19", + "valueReference": { + "reference": "Practitioner/1731634401874474000.ad213a69-f769-445f-89ad-66fa8ce51ca4" } }, { - "url" : "ORC.19", - "valueReference" : { - "reference" : "Practitioner/1715988308246203000.42e47716-e6a2-405d-b198-11c03f8def48" + "url": "ORC.19", + "valueReference": { + "reference": "Practitioner/1731634401876703000.7f87d17f-6c07-4d2a-b1a2-010fa9efbc32" } }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1715988308724108000.ae33831c-4803-41ee-9eef-2618ccc89860" + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1731634401877845000.9e8d3eea-d7a6-40ec-a32b-b7ead9e6e7e6" } }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1715988309194822000.3426e744-457c-4879-b91a-7879aa989bd4" + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1731634401878818000.18111dd1-3594-416d-a369-1c28a38fd8fb" } }, { - "url" : "orc-22-ordering-facility-address", - "valueAddress" : { - "extension" : [ + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "6059" + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "6059" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "4861" + "url": "SAD.1", + "valueString": "4861" }, { - "url" : "SAD.2", - "valueString" : "20TH AVE" + "url": "SAD.2", + "valueString": "20TH AVE" }, { - "url" : "SAD.3", - "valueString" : "1" + "url": "SAD.3", + "valueString": "1" } ] }, { - "url" : "XAD.2", - "valueString" : "Ordering Facility Address" + "url": "XAD.2", + "valueString": "Ordering Facility Address" }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" }, { - "url" : "XAD.8", - "valueString" : "Other Geographic Designation" + "url": "XAD.8", + "valueString": "Other Geographic Designation" }, { - "url" : "XAD.11", - "valueCode" : "A" + "url": "XAD.11", + "valueCode": "A" }, { - "url" : "XAD.13", - "valueString" : "20220501102531-0400" + "url": "XAD.13", + "valueString": "20220501102531-0400" }, { - "url" : "XAD.14", - "valueString" : "20230501102531-0400" + "url": "XAD.14", + "valueString": "20230501102531-0400" }, { - "url" : "XAD.19", - "valueCode" : "Adressee" + "url": "XAD.19", + "valueCode": "Adressee" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "4861", "20TH AVE", "1", "Ordering Facility Address", "Adressee" ], - "city" : "THUNDER MOUNTAIN", - "district" : "County", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "city": "THUNDER MOUNTAIN", + "district": "County", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } }, { - "url" : "orc-22-ordering-facility-address", - "valueAddress" : { - "extension" : [ + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "600 5TH AVE" + "url": "SAD.1", + "valueString": "600 5TH AVE" } ] }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "600 5TH AVE" ], - "city" : "THUNDER VALLEY", - "state" : "NV", - "postalCode" : "12345", - "country" : "USA" + "city": "THUNDER VALLEY", + "state": "NV", + "postalCode": "12345", + "country": "USA" } }, { - "url" : "orc-24-ordering-provider-address", - "valueAddress" : { - "extension" : [ + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "6059" + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "6059" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "4861" + "url": "SAD.1", + "valueString": "4861" }, { - "url" : "SAD.2", - "valueString" : "20TH AVE" + "url": "SAD.2", + "valueString": "20TH AVE" }, { - "url" : "SAD.3", - "valueString" : "1" + "url": "SAD.3", + "valueString": "1" } ] }, { - "url" : "XAD.2", - "valueString" : "Ordering Provider Address" + "url": "XAD.2", + "valueString": "Ordering Provider Address" }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" }, { - "url" : "XAD.8", - "valueString" : "Other Geographic Designation" + "url": "XAD.8", + "valueString": "Other Geographic Designation" }, { - "url" : "XAD.11", - "valueCode" : "A" + "url": "XAD.11", + "valueCode": "A" }, { - "url" : "XAD.13", - "valueString" : "20220501102531-0400" + "url": "XAD.13", + "valueString": "20220501102531-0400" }, { - "url" : "XAD.14", - "valueString" : "20230501102531-0400" + "url": "XAD.14", + "valueString": "20230501102531-0400" }, { - "url" : "XAD.19", - "valueCode" : "Adressee" + "url": "XAD.19", + "valueCode": "Adressee" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "4861", "20TH AVE", "1", "Ordering Provider Address", "Adressee" ], - "city" : "THUNDER MOUNTAIN", - "district" : "County", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "city": "THUNDER MOUNTAIN", + "district": "County", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } }, { - "url" : "orc-24-ordering-provider-address", - "valueAddress" : { - "extension" : [ + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "600 5TH AVE" + "url": "SAD.1", + "valueString": "600 5TH AVE" } ] }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "600 5TH AVE" ], - "city" : "THUNDER VALLEY", - "state" : "NV", - "postalCode" : "12345", - "country" : "USA" + "city": "THUNDER VALLEY", + "state": "NV", + "postalCode": "12345", + "country": "USA" } }, { - "url" : "ORC.27", - "valueString" : "20230816123358-0500" + "url": "ORC.27", + "valueString": "20230816123358-0500" }, { - "url" : "ORC.28", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.28", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "567", - "display" : "E" + "code": "567", + "display": "E" } ] } }, { - "url" : "ORC.30", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.30", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "U" + "code": "123", + "display": "U" } ] } }, { - "url" : "ORC.31", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.31", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "Parent" + "code": "123", + "display": "Parent" } ] } }, { - "url" : "ORC.34", - "valueIdentifier" : { - "extension" : [ + "url": "ORC.34", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CSV" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CSV" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "11D1111111" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "11D1111111" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "CLIA" } ] } ], - "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" } }, { - "url" : "ORC.8", - "valueIdentifier" : { - "extension" : [ + "url": "ORC.8", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Assigned Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Assigned Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Assigned Universal" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Assigned Universal" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "Filler Assigned" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "Filler Assigned" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Assigned Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Assigned Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Assigned Universal" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Assigned Universal" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "Placer Assigned" + "value": "Placer Assigned" } }, { - "url" : "ORC.10", - "valueReference" : { - "reference" : "Practitioner/1715988317562223000.7abd515b-4d30-4e61-b423-c63fe8082692" + "url": "ORC.10", + "valueReference": { + "reference": "Practitioner/1731634401884037000.c8a3d395-02f8-464f-8db0-4344bb25b774" } }, { - "url" : "ORC.10", - "valueReference" : { - "reference" : "Practitioner/1715988319337140000.05734ef1-fe2c-4fad-a7d1-4cdfcd5e5831" + "url": "ORC.10", + "valueReference": { + "reference": "Practitioner/1731634401886020000.4f6568a5-d8e4-4118-90fb-eb9e73648390" } }, { - "url" : "ORC.11", - "valueReference" : { - "reference" : "Practitioner/1715988321178960000.0d9ae881-7d58-4791-954b-d7bde16f1a9c" + "url": "ORC.11", + "valueReference": { + "reference": "Practitioner/1731634401887940000.8c7f2285-2f06-4b37-ba8b-836caed99452" } }, { - "url" : "ORC.11", - "valueReference" : { - "reference" : "Practitioner/1715988322969087000.24e2c013-b78a-437a-a3ce-d9fd5016708b" + "url": "ORC.11", + "valueReference": { + "reference": "Practitioner/1731634401889621000.a4bfdd8d-fc61-448a-83db-b6f74460b6d0" } }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1715988324811292000.40c02eb0-bffe-4d90-a002-c6face96e039" + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1731634401891345000.a552a475-0da0-4adf-a4b6-918419a34319" } }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1715988326643808000.953e8e9c-7119-480c-b4ce-22bfb74410be" + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1731634401893034000.10257238-d5a0-4d6c-92e0-a90e4ed721e9" } }, { - "url" : "ORC.13", - "valueReference" : { - "reference" : "Location/1715988327115338000.a7aee7d5-d634-4ece-bb36-4e0187dc36c8" + "url": "ORC.13", + "valueReference": { + "reference": "Location/1731634401894270000.1eedb96f-de10-4f39-8f1a-4dbe19f12739" } }, { - "url" : "ORC.15", - "valueString" : "20230816123358-0500" + "url": "ORC.15", + "valueString": "20230816123358-0500" }, { - "url" : "ORC.17", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.17", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "481", - "display" : "Entering ORG" + "code": "481", + "display": "Entering ORG" } ] } }, { - "url" : "ORC.18", - "valueCodeableConcept" : { - "coding" : [ + "url": "ORC.18", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "Entering Device" + "code": "Entering Device" } ] } @@ -656,317 +656,317 @@ ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ { - "url" : "OBR.22", - "valueString" : "2023" + "url": "OBR.22", + "valueString": "2023" }, { - "url" : "OBR.25", - "valueId" : "F" + "url": "OBR.25", + "valueId": "F" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Placer Identifier" + "value": "Placer Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.3" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "Filler Identifier" + "value": "Filler Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Group Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Group Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Group Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Group Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "Group Identifier" + "value": "Group Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Group Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Group Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Group Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Group Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } ] }, - "value" : "Group Identifier" + "value": "Group Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Placer Order" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.33" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.33" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Alt" + "value": "Alt" }, { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Placer Order2" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.33" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.33" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Alt2" + "value": "Alt2" } ], - "status" : "completed", - "code" : { - "coding" : [ + "status": "completed", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "TEST" + "system": "http://loinc.org", + "code": "12345-6", + "display": "TEST" } ] }, - "subject" : { - "reference" : "Patient/1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910" + "subject": { + "reference": "Patient/1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1" }, - "requester" : { - "extension" : [ + "requester": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "260" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "7595016" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "PRN" + "url": "XTN.2", + "valueString": "PRN" }, { - "url" : "XTN.3", - "valueString" : "BP" + "url": "XTN.3", + "valueString": "BP" }, { - "url" : "XTN.7", - "valueString" : "7595016" + "url": "XTN.7", + "valueString": "7595016" }, { - "url" : "XTN.12", - "valueString" : "+1 260 759 5016" + "url": "XTN.12", + "valueString": "+1 260 759 5016" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" } ], - "system" : "pager", - "value" : "+1 260 759 5016", - "use" : "home" + "system": "pager", + "value": "+1 260 759 5016", + "use": "home" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "PRN" + "url": "XTN.2", + "valueString": "PRN" }, { - "url" : "XTN.3", - "valueString" : "Internet" + "url": "XTN.3", + "valueString": "Internet" }, { - "url" : "XTN.4", - "valueString" : "otto.daugherty@email.com" + "url": "XTN.4", + "valueString": "otto.daugherty@email.com" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" } ], - "system" : "email", - "value" : "otto.daugherty@email.com", - "use" : "home" + "system": "email", + "value": "otto.daugherty@email.com", + "use": "home" } } ], - "reference" : "PractitionerRole/1715988301847864000.ffbe62bb-d0d6-45c1-b544-68b38d166f24" + "reference": "PractitionerRole/1731634401855441000.fef90d84-6fc0-4185-b962-37086b36c34e" }, - "locationCode" : [ + "locationCode": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "123", - "display" : "location" + "code": "123", + "display": "location" } ] } @@ -974,2966 +974,2966 @@ } }, { - "fullUrl" : "Practitioner/1715988303441133000.1649e17c-7c23-40b7-b1e4-ed1bc70566e9", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1715988303441133000.1649e17c-7c23-40b7-b1e4-ed1bc70566e9", - "extension" : [ + "fullUrl": "Practitioner/1731634401863992000.d5fe288d-5349-4332-a9c7-0d63840b8830", + "resource": { + "resourceType": "Practitioner", + "id": "1731634401863992000.d5fe288d-5349-4332-a9c7-0d63840b8830", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ORDERING", - "_family" : { - "extension" : [ + "use": "official", + "family": "ORDERING", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "PROVIDER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "PROVIDER" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ], - "address" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "6059" + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "6059" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "4861" + "url": "SAD.1", + "valueString": "4861" }, { - "url" : "SAD.2", - "valueString" : "20TH AVE" + "url": "SAD.2", + "valueString": "20TH AVE" }, { - "url" : "SAD.3", - "valueString" : "1" + "url": "SAD.3", + "valueString": "1" } ] }, { - "url" : "XAD.2", - "valueString" : "Ordering Provider Address" + "url": "XAD.2", + "valueString": "Ordering Provider Address" }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" }, { - "url" : "XAD.8", - "valueString" : "Other Geographic Designation" + "url": "XAD.8", + "valueString": "Other Geographic Designation" }, { - "url" : "XAD.11", - "valueCode" : "A" + "url": "XAD.11", + "valueCode": "A" }, { - "url" : "XAD.13", - "valueString" : "20220501102531-0400" + "url": "XAD.13", + "valueString": "20220501102531-0400" }, { - "url" : "XAD.14", - "valueString" : "20230501102531-0400" + "url": "XAD.14", + "valueString": "20230501102531-0400" }, { - "url" : "XAD.19", - "valueCode" : "Adressee" + "url": "XAD.19", + "valueCode": "Adressee" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "4861", "20TH AVE", "1", "Ordering Provider Address", "Adressee" ], - "city" : "THUNDER MOUNTAIN", - "district" : "County", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "city": "THUNDER MOUNTAIN", + "district": "County", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Location/1715988303442531000.21589bf1-f058-4d85-bd79-0c9520a73140", - "resource" : { - "resourceType" : "Location", - "id" : "1715988303442531000.21589bf1-f058-4d85-bd79-0c9520a73140", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "fullUrl": "Location/1731634401864671000.67ac076c-043b-4ef6-81d7-b35f5878c5f9", + "resource": { + "resourceType": "Location", + "id": "1731634401864671000.67ac076c-043b-4ef6-81d7-b35f5878c5f9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "identifier": [ { - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ + "name": "Hospital A", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Organization/1715988303461450000.6aa6e959-bda8-44bb-97ea-57920af54de4", - "resource" : { - "resourceType" : "Organization", - "id" : "1715988303461450000.6aa6e959-bda8-44bb-97ea-57920af54de4", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1731634401868079000.d212aee0-96ba-4b97-a6cf-596dd97ee224", + "resource": { + "resourceType": "Organization", + "id": "1731634401868079000.d212aee0-96ba-4b97-a6cf-596dd97ee224", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" } ], - "text" : "OriginalText" + "text": "OriginalText" } } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.3", - "valueString" : "123" + "url": "XON.3", + "valueString": "123" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1715988303442531000.21589bf1-f058-4d85-bd79-0c9520a73140" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731634401864671000.67ac076c-043b-4ef6-81d7-b35f5878c5f9" } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" } ] }, - "value" : "123" + "value": "123" } ], - "name" : "Ordering Facility", - "telecom" : [ + "name": "Ordering Facility", + "telecom": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "260" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "7595016" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "PRN" + "url": "XTN.2", + "valueString": "PRN" }, { - "url" : "XTN.3", - "valueString" : "BP" + "url": "XTN.3", + "valueString": "BP" }, { - "url" : "XTN.7", - "valueString" : "7595016" + "url": "XTN.7", + "valueString": "7595016" }, { - "url" : "XTN.12", - "valueString" : "+1 260 759 5016" + "url": "XTN.12", + "valueString": "+1 260 759 5016" } ] } ], - "system" : "pager", - "value" : "+1 260 759 5016", - "use" : "home" + "system": "pager", + "value": "+1 260 759 5016", + "use": "home" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "PRN" + "url": "XTN.2", + "valueString": "PRN" }, { - "url" : "XTN.3", - "valueString" : "Internet" + "url": "XTN.3", + "valueString": "Internet" }, { - "url" : "XTN.4", - "valueString" : "orderingfacility@email.com" + "url": "XTN.4", + "valueString": "orderingfacility@email.com" } ] } ], - "system" : "email", - "value" : "orderingfacility@email.com", - "use" : "home" + "system": "email", + "value": "orderingfacility@email.com", + "use": "home" } ], - "address" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "6059" + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "6059" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "4861" + "url": "SAD.1", + "valueString": "4861" }, { - "url" : "SAD.2", - "valueString" : "20TH AVE" + "url": "SAD.2", + "valueString": "20TH AVE" }, { - "url" : "SAD.3", - "valueString" : "1" + "url": "SAD.3", + "valueString": "1" } ] }, { - "url" : "XAD.2", - "valueString" : "Ordering Facility Address" + "url": "XAD.2", + "valueString": "Ordering Facility Address" }, { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" }, { - "url" : "XAD.8", - "valueString" : "Other Geographic Designation" + "url": "XAD.8", + "valueString": "Other Geographic Designation" }, { - "url" : "XAD.11", - "valueCode" : "A" + "url": "XAD.11", + "valueCode": "A" }, { - "url" : "XAD.13", - "valueString" : "20220501102531-0400" + "url": "XAD.13", + "valueString": "20220501102531-0400" }, { - "url" : "XAD.14", - "valueString" : "20230501102531-0400" + "url": "XAD.14", + "valueString": "20230501102531-0400" }, { - "url" : "XAD.19", - "valueCode" : "Adressee" + "url": "XAD.19", + "valueCode": "Adressee" } ] } ], - "use" : "home", - "line" : [ + "use": "home", + "line": [ "4861", "20TH AVE", "1", "Ordering Facility Address", "Adressee" ], - "city" : "THUNDER MOUNTAIN", - "district" : "County", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA", - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "city": "THUNDER MOUNTAIN", + "district": "County", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "PractitionerRole/1715988301847864000.ffbe62bb-d0d6-45c1-b544-68b38d166f24", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1715988301847864000.ffbe62bb-d0d6-45c1-b544-68b38d166f24", - "practitioner" : { - "reference" : "Practitioner/1715988303441133000.1649e17c-7c23-40b7-b1e4-ed1bc70566e9" + "fullUrl": "PractitionerRole/1731634401855441000.fef90d84-6fc0-4185-b962-37086b36c34e", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731634401855441000.fef90d84-6fc0-4185-b962-37086b36c34e", + "practitioner": { + "reference": "Practitioner/1731634401863992000.d5fe288d-5349-4332-a9c7-0d63840b8830" }, - "organization" : { - "reference" : "Organization/1715988303461450000.6aa6e959-bda8-44bb-97ea-57920af54de4" + "organization": { + "reference": "Organization/1731634401868079000.d212aee0-96ba-4b97-a6cf-596dd97ee224" } } }, { - "fullUrl" : "Practitioner/1715988306639438000.feb16641-9b1f-4953-a479-f6fe13834e20", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1715988306639438000.feb16641-9b1f-4953-a479-f6fe13834e20", - "extension" : [ + "fullUrl": "Practitioner/1731634401874474000.ad213a69-f769-445f-89ad-66fa8ce51ca4", + "resource": { + "resourceType": "Practitioner", + "id": "1731634401874474000.ad213a69-f769-445f-89ad-66fa8ce51ca4", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ACTION", - "_family" : { - "extension" : [ + "use": "official", + "family": "ACTION", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "BY" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BY" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1715988308246203000.42e47716-e6a2-405d-b198-11c03f8def48", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1715988308246203000.42e47716-e6a2-405d-b198-11c03f8def48", - "extension" : [ + "fullUrl": "Practitioner/1731634401876703000.7f87d17f-6c07-4d2a-b1a2-010fa9efbc32", + "resource": { + "resourceType": "Practitioner", + "id": "1731634401876703000.7f87d17f-6c07-4d2a-b1a2-010fa9efbc32", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "RUDWIG" + "url": "XCN.3", + "valueString": "RUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ACTION", - "_family" : { - "extension" : [ + "use": "official", + "family": "ACTION", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "BY" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BY" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER2" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER2" } ] }, - "given" : [ + "given": [ "RUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Location/1715988308723269000.dfb1fcbc-d1ee-40be-87b1-d1959647e7da", - "resource" : { - "resourceType" : "Location", - "id" : "1715988308723269000.dfb1fcbc-d1ee-40be-87b1-d1959647e7da", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "fullUrl": "Location/1731634401877275000.3925f707-9f90-4b68-ae6c-1f3ffca50e35", + "resource": { + "resourceType": "Location", + "id": "1731634401877275000.3925f707-9f90-4b68-ae6c-1f3ffca50e35", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "identifier": [ { - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ + "name": "Hospital A", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Organization/1715988308724108000.ae33831c-4803-41ee-9eef-2618ccc89860", - "resource" : { - "resourceType" : "Organization", - "id" : "1715988308724108000.ae33831c-4803-41ee-9eef-2618ccc89860", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1731634401877845000.9e8d3eea-d7a6-40ec-a32b-b7ead9e6e7e6", + "resource": { + "resourceType": "Organization", + "id": "1731634401877845000.9e8d3eea-d7a6-40ec-a32b-b7ead9e6e7e6", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" } ], - "text" : "OriginalText" + "text": "OriginalText" } } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.3", - "valueString" : "123" + "url": "XON.3", + "valueString": "123" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1715988308723269000.dfb1fcbc-d1ee-40be-87b1-d1959647e7da" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731634401877275000.3925f707-9f90-4b68-ae6c-1f3ffca50e35" } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" } ] }, - "value" : "123" + "value": "123" } ], - "name" : "Ordering Facility" + "name": "Ordering Facility" } }, { - "fullUrl" : "Location/1715988309194180000.233c1220-483e-436e-916c-8fefcb35963e", - "resource" : { - "resourceType" : "Location", - "id" : "1715988309194180000.233c1220-483e-436e-916c-8fefcb35963e", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "fullUrl": "Location/1731634401878324000.70843538-e5d5-4640-879b-355dd4a675e9", + "resource": { + "resourceType": "Location", + "id": "1731634401878324000.70843538-e5d5-4640-879b-355dd4a675e9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "identifier": [ { - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "name" : "Hospital B", - "physicalType" : { - "coding" : [ + "name": "Hospital B", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Organization/1715988309194822000.3426e744-457c-4879-b91a-7879aa989bd4", - "resource" : { - "resourceType" : "Organization", - "id" : "1715988309194822000.3426e744-457c-4879-b91a-7879aa989bd4", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1731634401878818000.18111dd1-3594-416d-a369-1c28a38fd8fb", + "resource": { + "resourceType": "Organization", + "id": "1731634401878818000.18111dd1-3594-416d-a369-1c28a38fd8fb", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestTex2t" + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestTex2t" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText2" + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText2" } ], - "text" : "OriginalText2" + "text": "OriginalText2" } } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestTex2t" + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestTex2t" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.3", - "valueString" : "123" + "url": "XON.3", + "valueString": "123" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit2" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1715988309194180000.233c1220-483e-436e-916c-8fefcb35963e" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731634401878324000.70843538-e5d5-4640-879b-355dd4a675e9" } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" } ] }, - "value" : "123" + "value": "123" } ], - "name" : "Ordering Facility2" + "name": "Ordering Facility2" } }, { - "fullUrl" : "Practitioner/1715988317562223000.7abd515b-4d30-4e61-b423-c63fe8082692", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1715988317562223000.7abd515b-4d30-4e61-b423-c63fe8082692", - "extension" : [ + "fullUrl": "Practitioner/1731634401884037000.c8a3d395-02f8-464f-8db0-4344bb25b774", + "resource": { + "resourceType": "Practitioner", + "id": "1731634401884037000.c8a3d395-02f8-464f-8db0-4344bb25b774", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ENTERED", - "_family" : { - "extension" : [ + "use": "official", + "family": "ENTERED", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "BY" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BY" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1715988319337140000.05734ef1-fe2c-4fad-a7d1-4cdfcd5e5831", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1715988319337140000.05734ef1-fe2c-4fad-a7d1-4cdfcd5e5831", - "extension" : [ + "fullUrl": "Practitioner/1731634401886020000.4f6568a5-d8e4-4118-90fb-eb9e73648390", + "resource": { + "resourceType": "Practitioner", + "id": "1731634401886020000.4f6568a5-d8e4-4118-90fb-eb9e73648390", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "RUDWIG" + "url": "XCN.3", + "valueString": "RUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ENTERED", - "_family" : { - "extension" : [ + "use": "official", + "family": "ENTERED", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "BY" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BY" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER2" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER2" } ] }, - "given" : [ + "given": [ "RUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1715988321178960000.0d9ae881-7d58-4791-954b-d7bde16f1a9c", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1715988321178960000.0d9ae881-7d58-4791-954b-d7bde16f1a9c", - "extension" : [ + "fullUrl": "Practitioner/1731634401887940000.8c7f2285-2f06-4b37-ba8b-836caed99452", + "resource": { + "resourceType": "Practitioner", + "id": "1731634401887940000.8c7f2285-2f06-4b37-ba8b-836caed99452", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "VERIFIED", - "_family" : { - "extension" : [ + "use": "official", + "family": "VERIFIED", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "BY" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BY" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1715988322969087000.24e2c013-b78a-437a-a3ce-d9fd5016708b", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1715988322969087000.24e2c013-b78a-437a-a3ce-d9fd5016708b", - "extension" : [ + "fullUrl": "Practitioner/1731634401889621000.a4bfdd8d-fc61-448a-83db-b6f74460b6d0", + "resource": { + "resourceType": "Practitioner", + "id": "1731634401889621000.a4bfdd8d-fc61-448a-83db-b6f74460b6d0", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "RUDWIG" + "url": "XCN.3", + "valueString": "RUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "VERIFIED", - "_family" : { - "extension" : [ + "use": "official", + "family": "VERIFIED", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "BY" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BY" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER2" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER2" } ] }, - "given" : [ + "given": [ "RUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1715988324811292000.40c02eb0-bffe-4d90-a002-c6face96e039", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1715988324811292000.40c02eb0-bffe-4d90-a002-c6face96e039", - "extension" : [ + "fullUrl": "Practitioner/1731634401891345000.a552a475-0da0-4adf-a4b6-918419a34319", + "resource": { + "resourceType": "Practitioner", + "id": "1731634401891345000.a552a475-0da0-4adf-a4b6-918419a34319", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" + "url": "XCN.3", + "valueString": "LUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ORDERING", - "_family" : { - "extension" : [ + "use": "official", + "family": "ORDERING", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "PROVIDER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "PROVIDER" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" } ] }, - "given" : [ + "given": [ "LUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Practitioner/1715988326643808000.953e8e9c-7119-480c-b4ce-22bfb74410be", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1715988326643808000.953e8e9c-7119-480c-b4ce-22bfb74410be", - "extension" : [ + "fullUrl": "Practitioner/1731634401893034000.10257238-d5a0-4d6c-92e0-a90e4ed721e9", + "resource": { + "resourceType": "Practitioner", + "id": "1731634401893034000.10257238-d5a0-4d6c-92e0-a90e4ed721e9", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "RUDWIG" + "url": "XCN.3", + "valueString": "RUDWIG" }, { - "url" : "XCN.4", - "valueString" : "B" + "url": "XCN.4", + "valueString": "B" }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" + "url": "XCN.20", + "valueString": "20230501102531-0400" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignJ" + "code": "AssignJ" } ] } }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "AssignA" + "code": "AssignA" } ] } }, { - "url" : "XCN.5", - "valueString" : "2ND" + "url": "XCN.5", + "valueString": "2ND" }, { - "url" : "XCN.7", - "valueString" : "MD" + "url": "XCN.7", + "valueString": "MD" }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "SRC" + "code": "SRC" } ] } }, { - "url" : "XCN.10", - "valueString" : "B" + "url": "XCN.10", + "valueString": "B" }, { - "url" : "XCN.15", - "valueString" : "A" + "url": "XCN.15", + "valueString": "A" }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "NameContext" + "code": "NameContext" } ] } }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" + "url": "XCN.19", + "valueString": "20220501102531-0400" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "DL" + "code": "DL" } ] }, - "system" : "Namespace", - "value" : "1" + "system": "Namespace", + "value": "1" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" } ], - "use" : "official", - "family" : "ORDERING", - "_family" : { - "extension" : [ + "use": "official", + "family": "ORDERING", + "_family": { + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "PROVIDER" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "PROVIDER" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER2" + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER2" } ] }, - "given" : [ + "given": [ "RUDWIG", "B" ], - "prefix" : [ + "prefix": [ "DR" ], - "suffix" : [ + "suffix": [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" } } ] } }, { - "fullUrl" : "Organization/1715988327113928000.0574dfbe-558d-47d4-931e-6c382f8bbe13", - "resource" : { - "resourceType" : "Organization", - "id" : "1715988327113928000.0574dfbe-558d-47d4-931e-6c382f8bbe13", - "identifier" : [ + "fullUrl": "Organization/1731634401893373000.90dfed1f-50bd-4069-8627-59c325c7ec79", + "resource": { + "resourceType": "Organization", + "id": "1731634401893373000.90dfed1f-50bd-4069-8627-59c325c7ec79", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "ASSIGNEE" + "value": "ASSIGNEE" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "UUID" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "UUID" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "222.1111.22222" + "system": "urn:ietf:rfc:3986", + "value": "222.1111.22222" } ] } }, { - "fullUrl" : "Location/1715988327115045000.4fcac2cf-c4dd-48f6-8c16-c5f2257b4ac8", - "resource" : { - "resourceType" : "Location", - "id" : "1715988327115045000.4fcac2cf-c4dd-48f6-8c16-c5f2257b4ac8", - "identifier" : [ + "fullUrl": "Location/1731634401894034000.635fde79-31aa-4e92-9f7c-455b42eb3a00", + "resource": { + "resourceType": "Location", + "id": "1731634401894034000.635fde79-31aa-4e92-9f7c-455b42eb3a00", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.4.4.4" + "value": "2.4.4.4" } ], - "physicalType" : { - "coding" : [ + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Location/1715988327115147000.dcf8e99c-0de0-48da-9445-e1b918e7887a", - "resource" : { - "resourceType" : "Location", - "id" : "1715988327115147000.dcf8e99c-0de0-48da-9445-e1b918e7887a", - "identifier" : [ + "fullUrl": "Location/1731634401894114000.0a8d07a5-10f4-41c6-a021-69e1d6cf4591", + "resource": { + "resourceType": "Location", + "id": "1731634401894114000.0a8d07a5-10f4-41c6-a021-69e1d6cf4591", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Point of Care" + "value": "Point of Care" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.1.1.1" + "value": "2.1.1.1" } ], - "physicalType" : { - "coding" : [ + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" } ] } } ] }, - "partOf" : { - "reference" : "Location/1715988327115045000.4fcac2cf-c4dd-48f6-8c16-c5f2257b4ac8" + "partOf": { + "reference": "Location/1731634401894034000.635fde79-31aa-4e92-9f7c-455b42eb3a00" } } }, { - "fullUrl" : "Location/1715988327115338000.a7aee7d5-d634-4ece-bb36-4e0187dc36c8", - "resource" : { - "resourceType" : "Location", - "id" : "1715988327115338000.a7aee7d5-d634-4ece-bb36-4e0187dc36c8", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", - "valueString" : "location type" + "fullUrl": "Location/1731634401894270000.1eedb96f-de10-4f39-8f1a-4dbe19f12739", + "resource": { + "resourceType": "Location", + "id": "1731634401894270000.1eedb96f-de10-4f39-8f1a-4dbe19f12739", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString": "location type" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Bed A" + "value": "Bed A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.3.3.3" + "value": "2.3.3.3" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NAME" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NAME" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "UNI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "UNI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", - "valueString" : "organization" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString": "organization" } ], - "value" : "Entity ID", - "assigner" : { - "reference" : "Organization/1715988327113928000.0574dfbe-558d-47d4-931e-6c382f8bbe13" + "value": "Entity ID", + "assigner": { + "reference": "Organization/1731634401893373000.90dfed1f-50bd-4069-8627-59c325c7ec79" } } ], - "status" : "active", - "description" : "Description", - "mode" : "instance", - "physicalType" : { - "coding" : [ + "status": "active", + "description": "Description", + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" } ] }, - "partOf" : { - "reference" : "Location/1715988327115147000.dcf8e99c-0de0-48da-9445-e1b918e7887a" + "partOf": { + "reference": "Location/1731634401894114000.0a8d07a5-10f4-41c6-a021-69e1d6cf4591" } } }, { - "fullUrl" : "DiagnosticReport/1715988329002527000.3a9d79cd-5dfa-4ed9-be24-57fd943d59e9", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1715988329002527000.3a9d79cd-5dfa-4ed9-be24-57fd943d59e9", - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/event-statusReason", - "valueCodeableConcept" : { - "text" : "Control Code Reason" + "fullUrl": "DiagnosticReport/1731634401912861000.f80f2f58-064f-4b21-8607-4fbe5024ae71", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1731634401912861000.f80f2f58-064f-4b21-8607-4fbe5024ae71", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/event-statusReason", + "valueCodeableConcept": { + "text": "Control Code Reason" } } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Placer Identifier" + "value": "Placer Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "Filler Identifier" + "value": "Filler Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Group Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Group Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Group Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Group Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "Group Identifier" + "value": "Group Identifier" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Group Identifier Namespace" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Group Identifier Namespace" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Group Universal ID" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Group Universal ID" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } ] }, - "value" : "Group Identifier" + "value": "Group Identifier" } ], - "basedOn" : [ + "basedOn": [ { - "reference" : "ServiceRequest/1715988328980595000.46fa67cf-fd89-4e38-aee9-8e45ae473886" + "reference": "ServiceRequest/1731634401895562000.2091f6e1-26e9-4e2a-9da1-50f5cf8d00a7" } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "12345-6", - "display" : "TEST" + "system": "http://loinc.org", + "code": "12345-6", + "display": "TEST" } ] }, - "subject" : { - "reference" : "Patient/1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910" + "subject": { + "reference": "Patient/1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1" }, - "issued" : "2023", - "_issued" : { - "extension" : [ + "issued": "2023", + "_issued": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "2023" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2023" } ] }, - "specimen" : [ + "specimen": [ { - "reference" : "Specimen/1715988295526768000.81b10cff-cb7e-4988-b7de-8180bc4c918d" + "reference": "Specimen/1731634401742218000.f1b9b00a-efa9-4634-96a0-2d79df6d19a0" } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.fhir new file mode 100644 index 00000000000..b2bccf05edd --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.fhir @@ -0,0 +1,547 @@ +{ + "resourceType" : "Bundle", + "id" : "1731705756874644000.31d6c7fa-b52e-4332-80be-9c3c579f08b1", + "meta" : { + "lastUpdated" : "2024-11-15T13:22:36.878-08:00" + }, + "identifier" : { + "system" : "https://reportstream.cdc.gov/prime-router", + "value" : "20230816123358" + }, + "type" : "message", + "timestamp" : "2023-08-16T10:33:58.000-07:00", + "entry" : [ { + "fullUrl" : "MessageHeader/1731705756906574000.495873e0-6eb5-404b-b496-178d77913d2a", + "resource" : { + "resourceType" : "MessageHeader", + "id" : "1731705756906574000.495873e0-6eb5-404b-b496-178d77913d2a", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension" : [ { + "url" : "MSH.7", + "valueString" : "20230816123358-0500" + } ] + } ], + "eventCoding" : { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", + "code" : "O01", + "display" : "ORM^O01^ORM_O01" + } + } + }, { + "fullUrl" : "Provenance/1731705757157024000.ad8e8682-2895-46fc-8b3c-546c691f3414", + "resource" : { + "resourceType" : "Provenance", + "id" : "1731705757157024000.ad8e8682-2895-46fc-8b3c-546c691f3414", + "recorded" : "2023-08-16T12:33:58-05:00", + "activity" : { + "coding" : [ { + "display" : "ORM^O01^ORM_O01" + } ] + } + } + }, { + "fullUrl" : "Provenance/1731705757164871000.8556d178-a658-4982-8ca0-f4e911d0a0dd", + "resource" : { + "resourceType" : "Provenance", + "id" : "1731705757164871000.8556d178-a658-4982-8ca0-f4e911d0a0dd", + "recorded" : "2024-11-15T13:22:37Z", + "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], + "activity" : { + "coding" : [ { + "code" : "v2-FHIR transformation" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } ] + }, + "who" : { + "reference" : "Organization/1731705757164365000.09f7ae73-4cd0-4b82-9eca-3eb5b53ae1e8" + } + } ] + } + }, { + "fullUrl" : "Organization/1731705757164365000.09f7ae73-4cd0-4b82-9eca-3eb5b53ae1e8", + "resource" : { + "resourceType" : "Organization", + "id" : "1731705757164365000.09f7ae73-4cd0-4b82-9eca-3eb5b53ae1e8", + "identifier" : [ { + "value" : "CDC PRIME - Atlanta" + }, { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } ] + } + }, { + "fullUrl" : "Patient/1731705757173333000.42d3b6d7-3177-4a33-b9cf-c50d98609e5f", + "resource" : { + "resourceType" : "Patient", + "id" : "1731705757173333000.42d3b6d7-3177-4a33-b9cf-c50d98609e5f" + } + }, { + "fullUrl" : "Provenance/1731705757173844000.1e0be0d5-1d31-4172-b7af-1580371a2417", + "resource" : { + "resourceType" : "Provenance", + "id" : "1731705757173844000.1e0be0d5-1d31-4172-b7af-1580371a2417", + "target" : [ { + "reference" : "Patient/1731705757173333000.42d3b6d7-3177-4a33-b9cf-c50d98609e5f" + } ], + "recorded" : "2024-11-15T13:22:37Z", + "activity" : { + "coding" : [ { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } ] + } + } + }, { + "fullUrl" : "ServiceRequest/1731705757192137000.c40ed560-8573-4a2e-8a78-65e98a0f9cfe", + "resource" : { + "resourceType" : "ServiceRequest", + "id" : "1731705757192137000.c40ed560-8573-4a2e-8a78-65e98a0f9cfe", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode" : "RE" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ { + "url" : "OBR.15.1", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "ID" + } ] + } + }, { + "url" : "OBR.15.2", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70371" + } ], + "code" : "BOUIN", + "display" : "Bouin's solution" + } ] + } + }, { + "url" : "OBR.15.3", + "valueString" : "Collection Method" + }, { + "url" : "OBR.15.4", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70163" + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v2-0163", + "code" : "LN", + "display" : "Left Naris" + } ] + } + }, { + "url" : "OBR.15.6", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL7" + } ], + "code" : "CMMC", + "display" : "Collection Method Modifer Code" + } ] + } + }, { + "url" : "OBR.7", + "valueDateTime" : "2020-08-18T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200818123358-0500" + } ] + } + }, { + "url" : "OBR.8", + "valueDateTime" : "2020-08-19T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200819123358-0500" + } ] + } + }, { + "url" : "OBR.39", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4439", + "display" : "Collectors Comment" + } ] + } + }, { + "url" : "OBR.39", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4438", + "display" : "Collectors Comment2" + } ] + } + }, { + "url" : "OBR.9", + "valueQuantity" : { + "value" : 1771 + } + }, { + "url" : "OBR.10", + "valueReference" : { + "reference" : "Practitioner/1731705757188158000.eb7a5c57-a821-4c3d-be74-9cf989f71849" + } + }, { + "url" : "OBR.10", + "valueReference" : { + "reference" : "Practitioner/1731705757190973000.df7be9e7-851c-4f15-bec9-09e434367593" + } + }, { + "url" : "OBR.14", + "valueDateTime" : "2024-02-20T09:00:00Z", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202402200900" + } ] + } + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString" : "ORC.2" + } ], + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", + "code" : "PLAC" + } ] + }, + "value" : "Specimen123" + } ], + "status" : "unknown", + "subject" : { + "reference" : "Patient/1731705757173333000.42d3b6d7-3177-4a33-b9cf-c50d98609e5f" + } + } + }, { + "fullUrl" : "Practitioner/1731705757188158000.eb7a5c57-a821-4c3d-be74-9cf989f71849", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1731705757188158000.eb7a5c57-a821-4c3d-be74-9cf989f71849", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "Collector", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + }, { + "fullUrl" : "Practitioner/1731705757190973000.df7be9e7-851c-4f15-bec9-09e434367593", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1731705757190973000.df7be9e7-851c-4f15-bec9-09e434367593", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "RUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "Collector2", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "RUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + } ] +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.hl7 new file mode 100644 index 00000000000..813e79a6de1 --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.hl7 @@ -0,0 +1,4 @@ +MSH|^~\&|||||20230816123358-0500||ORM^O01^ORM_O01|20230816123358||2.5.1 +PID|1 +ORC|RE|Specimen123 +OBR|1||||||20200818123358-0500|20200819123358-0500|1771|1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^Collector2&VAN&Identifier&VAL&ROGER^RUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||||202402200900|ID^BOUIN&Bouin's solution&HL70371^Collection Method^LN&Left Naris&HL70163^^CMMC&Collection Method Modifer Code&HL7||||||||||||||||||||||||4439^Collectors Comment~4438^Collectors Comment2 \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.fhir new file mode 100644 index 00000000000..cee9fcced4a --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.fhir @@ -0,0 +1,842 @@ +{ + "resourceType" : "Bundle", + "id" : "1731705743049471000.ebd65e23-268a-4ee6-8951-b3bba9cc2860", + "meta" : { + "lastUpdated" : "2024-11-15T13:22:23.053-08:00" + }, + "identifier" : { + "system" : "https://reportstream.cdc.gov/prime-router", + "value" : "20230816123358" + }, + "type" : "message", + "timestamp" : "2023-08-16T10:33:58.000-07:00", + "entry" : [ { + "fullUrl" : "MessageHeader/1731705743080590000.c25690ff-bd09-4d75-94ef-8c385c3e32b3", + "resource" : { + "resourceType" : "MessageHeader", + "id" : "1731705743080590000.c25690ff-bd09-4d75-94ef-8c385c3e32b3", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", + "valueString" : "^~\\&#" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension" : [ { + "url" : "MSH.7", + "valueString" : "20230816123358-0500" + } ] + } ], + "eventCoding" : { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", + "code" : "R01", + "display" : "ORU^R01^ORU_R01" + } + } + }, { + "fullUrl" : "Provenance/1731705743352177000.2de9ede7-62fd-467e-ab8c-21c70a1d1a1f", + "resource" : { + "resourceType" : "Provenance", + "id" : "1731705743352177000.2de9ede7-62fd-467e-ab8c-21c70a1d1a1f", + "target" : [ { + "reference" : "MessageHeader/1731705743080590000.c25690ff-bd09-4d75-94ef-8c385c3e32b3" + }, { + "reference" : "DiagnosticReport/1731705743513434000.3943869b-4a3d-461c-8013-5825f1241dba" + } ], + "recorded" : "2023-08-16T12:33:58-05:00", + "activity" : { + "coding" : [ { + "display" : "ORU^R01^ORU_R01" + } ] + } + } + }, { + "fullUrl" : "Provenance/1731705743359176000.899aa1c8-4aad-4965-9b51-b90f2e8b8210", + "resource" : { + "resourceType" : "Provenance", + "id" : "1731705743359176000.899aa1c8-4aad-4965-9b51-b90f2e8b8210", + "recorded" : "2024-11-15T13:22:23Z", + "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], + "activity" : { + "coding" : [ { + "code" : "v2-FHIR transformation" + } ] + }, + "agent" : [ { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code" : "assembler" + } ] + }, + "who" : { + "reference" : "Organization/1731705743358731000.ec62573c-ab2a-4492-b234-592c121d1d65" + } + } ] + } + }, { + "fullUrl" : "Organization/1731705743358731000.ec62573c-ab2a-4492-b234-592c121d1d65", + "resource" : { + "resourceType" : "Organization", + "id" : "1731705743358731000.ec62573c-ab2a-4492-b234-592c121d1d65", + "identifier" : [ { + "value" : "CDC PRIME - Atlanta" + }, { + "type" : { + "coding" : [ { + "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + } ] + }, + "system" : "urn:ietf:rfc:3986", + "value" : "2.16.840.1.114222.4.1.237821" + } ] + } + }, { + "fullUrl" : "Patient/1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d", + "resource" : { + "resourceType" : "Patient", + "id" : "1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d" + } + }, { + "fullUrl" : "Provenance/1731705743371816000.0a2963d3-1507-45e5-8325-88a21490665a", + "resource" : { + "resourceType" : "Provenance", + "id" : "1731705743371816000.0a2963d3-1507-45e5-8325-88a21490665a", + "target" : [ { + "reference" : "Patient/1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d" + } ], + "recorded" : "2024-11-15T13:22:23Z", + "activity" : { + "coding" : [ { + "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code" : "UPDATE" + } ] + } + } + }, { + "fullUrl" : "Specimen/1731705743376541000.9d554d41-22bd-4bd9-9be3-6ffc05cfe7a8", + "resource" : { + "resourceType" : "Specimen", + "id" : "1731705743376541000.9d554d41-22bd-4bd9-9be3-6ffc05cfe7a8", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString" : "OBR" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "ID" + } ] + }, + "receivedTime" : "2024-02-20T09:00:00Z", + "_receivedTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202402200900" + } ] + }, + "collection" : { + "collector" : { + "reference" : "Practitioner/1731705743384334000.dde58ec9-c036-482b-ae98-e459534aee8b" + }, + "collectedPeriod" : { + "start" : "2020-08-18T12:33:58-05:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200818123358-0500" + } ] + }, + "end" : "2020-08-19T12:33:58-05:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200819123358-0500" + } ] + } + }, + "quantity" : { + "value" : 1771 + }, + "bodySite" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70163" + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v2-0163", + "code" : "LN", + "display" : "Left Naris" + } ] + } + }, + "container" : [ { + "additiveCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70371" + } ], + "code" : "BOUIN", + "display" : "Bouin's solution" + } ] + } + } ], + "condition" : [ { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL7" + } ], + "code" : "CMMC", + "display" : "Collection Method Modifer Code" + } ] + } ], + "note" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString" : "OBR.15.3" + } ], + "text" : "Collection Method" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4439", + "display" : "Collectors Comment" + } ] + } + } ], + "text" : "4439, Collectors Comment" + }, { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4438", + "display" : "Collectors Comment2" + } ] + } + } ], + "text" : "4438, Collectors Comment2" + } ] + } + }, { + "fullUrl" : "Practitioner/1731705743384334000.dde58ec9-c036-482b-ae98-e459534aee8b", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1731705743384334000.dde58ec9-c036-482b-ae98-e459534aee8b", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "Collector", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + }, { + "fullUrl" : "ServiceRequest/1731705743509696000.628e4632-6f4b-44cb-9596-d2d757413265", + "resource" : { + "resourceType" : "ServiceRequest", + "id" : "1731705743509696000.628e4632-6f4b-44cb-9596-d2d757413265", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension" : [ { + "url" : "OBR.15.1", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "ID" + } ] + } + }, { + "url" : "OBR.15.2", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70371" + } ], + "code" : "BOUIN", + "display" : "Bouin's solution" + } ] + } + }, { + "url" : "OBR.15.3", + "valueString" : "Collection Method" + }, { + "url" : "OBR.15.4", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL70163" + } ], + "system" : "http://terminology.hl7.org/CodeSystem/v2-0163", + "code" : "LN", + "display" : "Left Naris" + } ] + } + }, { + "url" : "OBR.15.6", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString" : "HL7" + } ], + "code" : "CMMC", + "display" : "Collection Method Modifer Code" + } ] + } + }, { + "url" : "OBR.7", + "valueDateTime" : "2020-08-18T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200818123358-0500" + } ] + } + }, { + "url" : "OBR.8", + "valueDateTime" : "2020-08-19T12:33:58-05:00", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200819123358-0500" + } ] + } + }, { + "url" : "OBR.39", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4439", + "display" : "Collectors Comment" + } ] + } + }, { + "url" : "OBR.39", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "4438", + "display" : "Collectors Comment2" + } ] + } + }, { + "url" : "OBR.9", + "valueQuantity" : { + "value" : 1771 + } + }, { + "url" : "OBR.10", + "valueReference" : { + "reference" : "Practitioner/1731705743506205000.6d891283-9c0e-44e8-8a51-70c9ed6d468e" + } + }, { + "url" : "OBR.10", + "valueReference" : { + "reference" : "Practitioner/1731705743508699000.a4c084d9-f46c-4229-be7b-49996c81bd52" + } + }, { + "url" : "OBR.14", + "valueDateTime" : "2024-02-20T09:00:00Z", + "_valueDateTime" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202402200900" + } ] + } + } ] + } ], + "status" : "unknown", + "subject" : { + "reference" : "Patient/1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d" + } + } + }, { + "fullUrl" : "Practitioner/1731705743506205000.6d891283-9c0e-44e8-8a51-70c9ed6d468e", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1731705743506205000.6d891283-9c0e-44e8-8a51-70c9ed6d468e", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "LUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "Collector", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "LUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + }, { + "fullUrl" : "Practitioner/1731705743508699000.a4c084d9-f46c-4229-be7b-49996c81bd52", + "resource" : { + "resourceType" : "Practitioner", + "id" : "1731705743508699000.a4c084d9-f46c-4229-be7b-49996c81bd52", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString" : "AssigningSystem" + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode" : "ISO" + } ] + }, { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension" : [ { + "url" : "XCN.3", + "valueString" : "RUDWIG" + }, { + "url" : "XCN.4", + "valueString" : "B" + }, { + "url" : "XCN.20", + "valueString" : "20230501102531-0400" + }, { + "url" : "XCN.21", + "valueString" : "MD" + }, { + "url" : "XCN.22", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignJ" + } ] + } + }, { + "url" : "XCN.23", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "AssignA" + } ] + } + }, { + "url" : "XCN.5", + "valueString" : "2ND" + }, { + "url" : "XCN.7", + "valueString" : "MD" + }, { + "url" : "XCN.8", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "SRC" + } ] + } + }, { + "url" : "XCN.10", + "valueString" : "B" + }, { + "url" : "XCN.15", + "valueString" : "A" + }, { + "url" : "XCN.16", + "valueCodeableConcept" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString" : "coding" + } ], + "code" : "NameContext" + } ] + } + }, { + "url" : "XCN.19", + "valueString" : "20220501102531-0400" + } ] + } ], + "identifier" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString" : "A" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode" : "NPI" + } ], + "type" : { + "coding" : [ { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean" : true + } ], + "code" : "DL" + } ] + }, + "system" : "urn:oid:AssigningSystem", + "value" : "1" + } ], + "name" : [ { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode" : "G" + } ], + "use" : "official", + "family" : "Collector2", + "_family" : { + "extension" : [ { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString" : "VAN" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString" : "Identifier" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString" : "VAL" + }, { + "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString" : "ROGER" + } ] + }, + "given" : [ "RUDWIG", "B" ], + "prefix" : [ "DR" ], + "suffix" : [ "2ND", "MD", "MD" ], + "period" : { + "start" : "2022-05-01T10:25:31-04:00", + "end" : "2023-05-01T10:25:31-04:00" + } + } ] + } + }, { + "fullUrl" : "DiagnosticReport/1731705743513434000.3943869b-4a3d-461c-8013-5825f1241dba", + "resource" : { + "resourceType" : "DiagnosticReport", + "id" : "1731705743513434000.3943869b-4a3d-461c-8013-5825f1241dba", + "basedOn" : [ { + "reference" : "ServiceRequest/1731705743509696000.628e4632-6f4b-44cb-9596-d2d757413265" + } ], + "status" : "unknown", + "subject" : { + "reference" : "Patient/1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d" + }, + "effectivePeriod" : { + "start" : "2020-08-18T12:33:58-05:00", + "_start" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200818123358-0500" + } ] + }, + "end" : "2020-08-19T12:33:58-05:00", + "_end" : { + "extension" : [ { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "20200819123358-0500" + } ] + } + }, + "specimen" : [ { + "reference" : "Specimen/1731705743376541000.9d554d41-22bd-4bd9-9be3-6ffc05cfe7a8" + } ] + } + } ] +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.hl7 new file mode 100644 index 00000000000..f97e0f720e8 --- /dev/null +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.hl7 @@ -0,0 +1,3 @@ +MSH|^~\&#|||||20230816123358-0500||ORU^R01^ORU_R01|20230816123358||2.5.1 +PID|1 +OBR|1||||||20200818123358-0500|20200819123358-0500|1771|1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^Collector2&VAN&Identifier&VAL&ROGER^RUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||||202402200900|ID^BOUIN&Bouin's solution&HL70371^Collection Method^LN&Left Naris&HL70163^^CMMC&Collection Method Modifer Code&HL7||||||||||||||||||||||||4439^Collectors Comment~4438^Collectors Comment2 \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir index fad9945c732..dbd8ced6685 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir @@ -1,6469 +1,10517 @@ { - "resourceType" : "Bundle", - "id" : "1729291158390000000.d11499fc-4455-476a-a9e1-6e7620c2a0f5", - "meta" : { - "lastUpdated" : "2024-10-18T15:39:18.393-07:00" + "resourceType": "Bundle", + "id": "1731029041966102000.c61cae84-2e4a-4896-a1c9-606af60b8644", + "meta": { + "lastUpdated": "2024-11-07T17:24:01.970-08:00" }, - "identifier" : { - "system" : "https://reportstream.cdc.gov/prime-router", - "value" : "0123" + "identifier": { + "system": "https://reportstream.cdc.gov/prime-router", + "value": "0123" }, - "type" : "message", - "timestamp" : "2019-07-20T09:12:29.000-07:00", - "entry" : [ { - "fullUrl" : "MessageHeader/1729291158444509000.14825390-01fd-4f85-8bf3-8ab20936ce01", - "resource" : { - "resourceType" : "MessageHeader", - "id" : "1729291158444509000.14825390-01fd-4f85-8bf3-8ab20936ce01", - "meta" : { - "security" : [ { - "code" : "msh8placeholder" - } ], - "tag" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - }, { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0207", - "code" : "A" - } ] - }, - "language" : "ENG", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/character-set", - "valueString" : "UNICODE UTF-8" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", - "extension" : [ { - "url" : "MSH.7", - "valueString" : "20190720091229" - }, { - "url" : "MSH.13", - "valueString" : "42" - }, { - "url" : "MSH.14", - "valueString" : "msh14placeholder" - }, { - "url" : "MSH.15", - "valueString" : "AL" - }, { - "url" : "MSH.16", - "valueString" : "AL" - }, { - "url" : "MSH.19", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "ISO" - } ], - "version" : "131", - "code" : "ENG", - "display" : "English" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - } ], - "code" : "2ndalt", - "display" : "Second Alt" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "altISO" - } ], - "version" : "313", - "code" : "altE", - "display" : "altEnglish" - } ], - "text" : "originaltext" - } - }, { - "url" : "MSH.20", - "valueString" : "UNICODE UTF-16" - }, { - "url" : "MSH.21", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "PHIN" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.9.11" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "PHLabReport-NoAck" - } - }, { - "url" : "MSH.24", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SendingNetworkAddress" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.23.987.1.114222.XXX" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - } ] - } ], - "eventCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "O01", - "display" : "ORM^O01^ORM_O01" - }, - "destination" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.181960.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.5" - } ], - "name" : "txdshslabNBS", - "endpoint" : "urn:oid:2.16.840.1.114222.4.1.181960.2", - "receiver" : { - "reference" : "Organization/1729291158440524000.4a9a14e8-f667-463e-8dfe-e80f7a64c3bf" - } - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "9.87.123.1.114222.XXX" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.25" - } ], - "name" : "ReceivingNetworkAddress", - "endpoint" : "urn:oid:9.87.123.1.114222.XXX", - "receiver" : { - "reference" : "Organization/1729291158441463000.950c411b-bfda-4473-8570-5064f57ba569" - } - }, { - "receiver" : { - "reference" : "Organization/1729291158444286000.2ea093e2-1ae7-4c1f-9331-104b79a9e91b" - } - } ], - "sender" : { - "reference" : "Organization/1729291158420391000.aa4cfe52-4afd-48d9-9653-47f10e026deb" - }, - "source" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "OrderingFacilityApplicationName" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.XXX" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.3" - } ], - "endpoint" : "urn:oid:2.16.840.1.114222.XXX" - }, - "responsible" : { - "reference" : "Organization/1729291158439828000.203211ab-84b8-4b73-ab45-67fe89c77df6" - } - } - }, { - "fullUrl" : "Organization/1729291158420391000.aa4cfe52-4afd-48d9-9653-47f10e026deb", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158420391000.aa4cfe52-4afd-48d9-9653-47f10e026deb", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "OrderingFacilityName" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.XXX" - } ], - "address" : [ { - "country" : "FR" - } ] - } - }, { - "fullUrl" : "Location/1729291158436267000.263fda7b-0d24-4ea7-b7e6-a1655414829d", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158436267000.263fda7b-0d24-4ea7-b7e6-a1655414829d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "1.8.440.1.1138.9.22" - } ], - "name" : "Clinic A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Organization/1729291158439828000.203211ab-84b8-4b73-ab45-67fe89c77df6", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158439828000.203211ab-84b8-4b73-ab45-67fe89c77df6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1357-9", - "display" : "SomeText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "2468-5", - "display" : "SomeAltText" - } ], - "text" : "OriginalText" - } - } ], - "system" : "LN", - "version" : "1", - "code" : "1357-9", - "display" : "SomeText" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "1111" - }, { - "url" : "XON.10", - "valueString" : "OrgIdentifier2" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "9" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "The Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "4.2.8.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "BCV" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158436267000.263fda7b-0d24-4ea7-b7e6-a1655414829d" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "BC" - } ] - }, - "value" : "OrgIdentifier2" - } ], - "name" : "Sending Responsible Org" - } - }, { - "fullUrl" : "Organization/1729291158440524000.4a9a14e8-f667-463e-8dfe-e80f7a64c3bf", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158440524000.4a9a14e8-f667-463e-8dfe-e80f7a64c3bf", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.6" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "txdshslab" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.181960" - } ] - } - }, { - "fullUrl" : "Organization/1729291158441463000.950c411b-bfda-4473-8570-5064f57ba569", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158441463000.950c411b-bfda-4473-8570-5064f57ba569", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.6" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "txdshslab" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.181960" - } ] - } - }, { - "fullUrl" : "Location/1729291158442500000.906419f2-c65e-47de-92b4-cf09264b1a9c", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158442500000.906419f2-c65e-47de-92b4-cf09264b1a9c", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "10.10.40.10.11380.90.22" - } ], - "name" : "Clinic B", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Organization/1729291158444286000.2ea093e2-1ae7-4c1f-9331-104b79a9e91b", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158444286000.2ea093e2-1ae7-4c1f-9331-104b79a9e91b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1133-5", - "display" : "SomeOtherText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1298-7", - "display" : "SomeOtherAltText" - } ], - "text" : "TheOriginalText" + "type": "message", + "timestamp": "2019-07-20T09:12:29.000-07:00", + "entry": [ + { + "fullUrl": "MessageHeader/1731029042020936000.11b249e1-d39d-4c63-bf54-183be05520c6", + "resource": { + "resourceType": "MessageHeader", + "id": "1731029042020936000.11b249e1-d39d-4c63-bf54-183be05520c6", + "meta": { + "security": [ + { + "code": "msh8placeholder" } - } ], - "system" : "LN", - "version" : "1", - "code" : "1133-5", - "display" : "SomeOtherText" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "5555" - }, { - "url" : "XON.10", - "valueString" : "OrgIdentifier3" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.23" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "8" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "An Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "45.24.167.43" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "CCTV" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158442500000.906419f2-c65e-47de-92b4-cf09264b1a9c" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "BCVan" - } ] - }, - "value" : "OrgIdentifier3" - } ], - "name" : "Receiving Responsible Org" - } - }, { - "fullUrl" : "Provenance/1729291158682591000.3aa2f8db-3410-450c-922a-8e59ae3e2d94", - "resource" : { - "resourceType" : "Provenance", - "id" : "1729291158682591000.3aa2f8db-3410-450c-922a-8e59ae3e2d94", - "recorded" : "2019-07-20T09:12:29Z", - "activity" : { - "coding" : [ { - "display" : "ORM^O01^ORM_O01" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "author" - } ] - }, - "who" : { - "reference" : "Organization/1729291158682370000.46da5679-724b-429c-97f8-3f6b961676ca" - } - } ] - } - }, { - "fullUrl" : "Location/1729291158681333000.7e124791-1a6d-41fe-8b05-44fabe352116", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158681333000.7e124791-1a6d-41fe-8b05-44fabe352116", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "1.8.440.1.1138.9.22" - } ], - "name" : "Clinic A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Organization/1729291158682370000.46da5679-724b-429c-97f8-3f6b961676ca", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158682370000.46da5679-724b-429c-97f8-3f6b961676ca", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1357-9", - "display" : "SomeText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "2468-5", - "display" : "SomeAltText" - } ], - "text" : "OriginalText" + ], + "tag": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0103", + "code": "P" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0207", + "code": "A" } - } ], - "system" : "LN", - "version" : "1", - "code" : "1357-9", - "display" : "SomeText" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "1111" - }, { - "url" : "XON.10", - "valueString" : "OrgIdentifier2" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "9" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "The Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "4.2.8.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "BCV" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158681333000.7e124791-1a6d-41fe-8b05-44fabe352116" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "BC" - } ] - }, - "value" : "OrgIdentifier2" - } ], - "name" : "Sending Responsible Org" - } - }, { - "fullUrl" : "Provenance/1729291158692467000.81f00bf5-0d5f-40c5-87ab-00c9277644a3", - "resource" : { - "resourceType" : "Provenance", - "id" : "1729291158692467000.81f00bf5-0d5f-40c5-87ab-00c9277644a3", - "recorded" : "2024-10-18T15:39:18Z", - "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], - "activity" : { - "coding" : [ { - "code" : "v2-FHIR transformation" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "assembler" - } ] + ] }, - "who" : { - "reference" : "Organization/1729291158692202000.32900299-0e51-4355-80c3-88747c760f0c" - } - } ] - } - }, { - "fullUrl" : "Organization/1729291158692202000.32900299-0e51-4355-80c3-88747c760f0c", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158692202000.32900299-0e51-4355-80c3-88747c760f0c", - "identifier" : [ { - "value" : "CDC PRIME - Atlanta" - }, { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" - } ] + "language": "ENG", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/character-set", + "valueString": "UNICODE UTF-8" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension": [ + { + "url": "MSH.7", + "valueString": "20190720091229" + }, + { + "url": "MSH.13", + "valueString": "42" + }, + { + "url": "MSH.14", + "valueString": "msh14placeholder" + }, + { + "url": "MSH.15", + "valueString": "AL" + }, + { + "url": "MSH.16", + "valueString": "AL" + }, + { + "url": "MSH.19", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "ISO" + } + ], + "version": "131", + "code": "ENG", + "display": "English" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + } + ], + "code": "2ndalt", + "display": "Second Alt" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "altISO" + } + ], + "version": "313", + "code": "altE", + "display": "altEnglish" + } + ], + "text": "originaltext" + } + }, + { + "url": "MSH.20", + "valueString": "UNICODE UTF-16" + }, + { + "url": "MSH.21", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "PHIN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.9.11" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "PHLabReport-NoAck" + } + }, + { + "url": "MSH.24", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SendingNetworkAddress" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.23.987.1.114222.XXX" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + } + ] + } + ], + "eventCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v2-0003", + "code": "O01", + "display": "ORM^O01^ORM_O01" }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.237821" - } ] - } - }, { - "fullUrl" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca", - "resource" : { - "resourceType" : "Patient", - "id" : "1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca", - "meta" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", - "valueReference" : { - "reference" : "Organization/1729291158719836000.420f6702-d1f5-49e2-bfb0-0dfdd0e24071" - } - } ], - "lastUpdated" : "2024-08-21T11:38:00Z", - "_lastUpdated" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202408211138" - } ] - } - }, - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", - "valueAnnotation" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - }, { - "url" : "NTE.7", - "valueString" : "20230601" - }, { - "url" : "NTE.8", - "valueString" : "20350201" - }, { - "url" : "NTE.9", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "CC", - "display" : "Coded comment for patient note" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Accession level coment." - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "y" - } ], - "version" : "a", - "code" : "z", - "display" : "x" - } ], - "text" : "b" + "destination": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.181960.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.5" + } + ], + "name": "txdshslabNBS", + "endpoint": "urn:oid:2.16.840.1.114222.4.1.181960.2", + "receiver": { + "reference": "Organization/1731029042017362000.106c959b-9e9e-4d4f-a7e8-f24db85a4d8e" } - } ], - "authorReference" : { - "reference" : "Practitioner/1729291158701987000.8d216794-0ca5-45e5-a48f-c30bfe8f6ceb" - }, - "time" : "2023-05-31", - "_time" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230531" - } ] - }, - "text" : "Accession level coment." - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", - "extension" : [ { - "url" : "PID.8", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70001" - } ], - "code" : "F", - "display" : "Female" - } ] - } - }, { - "url" : "PID.18", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.18" - } ], - "value" : "32" - } - }, { - "url" : "PID.24", - "valueString" : "Y" - }, { - "url" : "PID.30", - "valueString" : "Y" - }, { - "url" : "PID.32", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70445" - } ], - "code" : "AL", - "display" : "Alias" - } ] - } - }, { - "url" : "PID.38", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70429" - } ], - "code" : "RA", - "display" : "Racing" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/veteran-military-status", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70172" - } ], - "code" : "NA", - "display" : "Not Applicable" - } ] - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-nationality", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.28" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70212" - } ], - "code" : "A", - "display" : "American" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identity-unknown", - "valueString" : "N" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-animal", - "extension" : [ { - "url" : "species", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.35" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70446" - } ], - "code" : "D", - "display" : "Dog" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/studentStatus", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70231" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Full-time student" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70231" - } ], - "version" : "2.5.1", - "code" : "N", - "display" : "Not a student" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70231" - } ], - "version" : "4", - "code" : "N", - "display" : "Not a student" - } ], - "text" : "TEST" - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-disability", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70295" - } ], - "version" : "2.5.1", - "code" : "T", - "display" : "TEST" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70295" - } ], - "version" : "2.5.1", - "code" : "D", - "display" : "Debug" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70295" - } ], - "version" : "4", - "code" : "P", - "display" : "Prod" - } ], - "text" : "TEST" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/livingWill", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70315" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Yes, patient has a living will but it is not on file" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70315" - } ], - "version" : "2.5.1", - "code" : "U", - "display" : "Unknown" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70315" - } ], - "version" : "4", - "code" : "I", - "display" : "No, patient does not have a living will but information was provided" - } ], - "text" : "TEST" - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-congregation", - "valueString" : "1st Ordering Facility" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-congregation", - "valueString" : "2nd Ordering Facility" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic", - "extension" : [ { - "url" : "PD1.1", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "2.5.1", - "code" : "C", - "display" : "Small Children Dependent" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "2.5.1", - "code" : "M", - "display" : "Medical Supervision Required" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "4", - "code" : "M", - "display" : "Medical Supervision Required" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.1", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "2.5.1", - "code" : "O", - "display" : "Other" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "2.5.1", - "code" : "M", - "display" : "Medical Supervision Required" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "4", - "code" : "U", - "display" : "Unknown" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.2", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70220" - } ], - "version" : "2.5.1", - "code" : "A", - "display" : "Alone" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70220" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Family" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70220" - } ], - "version" : "4", - "code" : "F", - "display" : "Family" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.16", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70441" - } ], - "version" : "2.5.1", - "code" : "A", - "display" : "Active" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70441" - } ], - "version" : "2.5.1", - "code" : "O", - "display" : "Other" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70441" - } ], - "version" : "4", - "code" : "I", - "display" : "Inactive" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.17", - "valueString" : "20230501102532-0400" - }, { - "url" : "PD1.18", - "valueString" : "20230501102533-0400" - }, { - "url" : "PD1.19", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70140" - } ], - "version" : "2.5.1", - "code" : "AUSA", - "display" : "Australian Army" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70140" - } ], - "version" : "2.5.1", - "code" : "AUSN", - "display" : "Australian Navy" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70140" - } ], - "version" : "4", - "code" : "AUSFA", - "display" : "Australian Air Force" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.20", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70141" - } ], - "version" : "2.5.1", - "code" : "E1... E9", - "display" : "Enlisted" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70141" - } ], - "version" : "2.5.1", - "code" : "W1 ... W4", - "display" : "Warrent Officers" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70141" - } ], - "version" : "4", - "code" : "O1 ... O9", - "display" : "Officers" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.21", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70142" - } ], - "version" : "2.5.1", - "code" : "ACT", - "display" : "Active duty" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70142" - } ], - "version" : "2.5.1", - "code" : "RET", - "display" : "Retired" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70142" - } ], - "version" : "4", - "code" : "DEC", - "display" : "Deceased" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.22", - "valueString" : "20230501102531-0400" - }, { - "url" : "PD1.8", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70316" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Yes, patient is a documented donor, but documentation is not on file" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70316" - } ], - "version" : "2.5.1", - "code" : "U", - "display" : "Unknown" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70316" - } ], - "version" : "4", - "code" : "I", - "display" : "No, patient is not a documented donor, but information was provided" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.9", - "valueString" : "N" - }, { - "url" : "PD1.10", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1729291158708547000.3bff1341-e3b5-4ca0-946c-2f376095a7fa" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "MR" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PD1.10" - } ], - "type" : { - "coding" : [ { - "code" : "MR" - } ] - }, - "system" : "NIST MPI", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NIST MPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.3.72.5.30.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, - "value" : "18547545" - } - }, { - "url" : "PD1.10", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1729291158709132000.8247efc1-33e5-4433-8fa3-e2c0e44d92d9" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "SS" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PD1.10" - } ], - "type" : { - "coding" : [ { - "code" : "SS" - } ] - }, - "system" : "SSN", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SSN" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, - "value" : "111111111" - } - }, { - "url" : "PD1.11", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70215" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Family only" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70215" - } ], - "version" : "2.5.1", - "code" : "U", - "display" : "Unknown" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70215" - } ], - "version" : "4", - "code" : "N", - "display" : "No Publicity" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.12", - "valueString" : "N" - }, { - "url" : "PD1.13", - "valueString" : "20230501102531-0400" - }, { - "url" : "PD1.14", - "valueReference" : { - "reference" : "Organization/1729291158710563000.6b230d40-3ab6-4443-85ca-216e7072104c" - } - }, { - "url" : "PD1.14", - "valueReference" : { - "reference" : "Organization/1729291158711467000.1dd13ee9-6787-4ba3-bc0f-ff8543978073" - } - }, { - "url" : "PD1.15", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "version" : "2.5.1", - "code" : "DNR", - "display" : "Do not resuscitate" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "version" : "2.5.1", - "code" : "N", - "display" : "No directive" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "version" : "4", - "code" : "N", - "display" : "No directive" - } ], - "text" : "TEST" - } - }, { - "url" : "PD1.15", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "version" : "2.5.1", - "code" : "DNR", - "display" : "Do not resuscitate" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "version" : "2.5.1", - "code" : "N", - "display" : "No directive" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "version" : "4", - "code" : "N", - "display" : "No directive" - } ], - "text" : "TEST" - } - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", - "valueHumanName" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ { - "url" : "XPN.2", - "valueString" : "FHIR" - }, { - "url" : "XPN.3", - "valueString" : "WI" - }, { - "url" : "XPN.7", - "valueString" : "L" - } ] - } ], - "use" : "official", - "family" : "Mind", - "given" : [ "FHIR", "WI" ] - } - }, { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70005" - } ], - "system" : "http://terminology.hl7.org/CodeSystem/v3-Race", - "code" : "2106-3", - "display" : "White" - } ] - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-religion", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70006" - } ], - "code" : "AGN", - "display" : "Agnostic" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70189" - } ], - "system" : "http://terminology.hl7.org/CodeSystem/v2-0189", - "code" : "U", - "display" : "Uknown" - } ] - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", - "valueAddress" : { - "text" : "Bayou" - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-citizenship", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.26" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70171" - } ], - "code" : "USA", - "display" : "United States" - } ] - } - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-citizenship", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.39" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70171" - } ], - "code" : "N", - "display" : "None" - } ] - } - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "forty" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueString" : "123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1729291158698371000.c4298f73-011e-4bdf-943c-3a6d3671089f" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "PI" - }, { - "url" : "CX.9", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL7123" - } ], - "code" : "IX", - "display" : "Ninth" - } ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "9.87.123.1.114222.XXX" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.25" + } + ], + "name": "ReceivingNetworkAddress", + "endpoint": "urn:oid:9.87.123.1.114222.XXX", + "receiver": { + "reference": "Organization/1731029042018204000.aee781f0-7046-460d-b453-df6eb98361fd" } - }, { - "url" : "CX.10", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL7123" - } ], - "code" : "X", - "display" : "Tenth" - } ] + }, + { + "receiver": { + "reference": "Organization/1731029042020729000.07d4fabb-3c13-4e3e-9073-139ea792def6" } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" - } ], - "type" : { - "coding" : [ { - "code" : "PI" - } ] - }, - "system" : "STARLIMS.CDC.Stag", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, - "value" : "Patidlist", - "period" : { - "start" : "2021-01-13", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210113" - } ] - }, - "end" : "2021-12-30", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20211230" - } ] } - } - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "PI" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" - } ], - "type" : { - "coding" : [ { - "code" : "PI" - } ] - }, - "system" : "SPHL-000048", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] + ], + "sender": { + "reference": "Organization/1731029041997646000.0e5c02cb-8c43-4143-9430-46e27ea77fe0" }, - "value" : "PID123" - } ], - "name" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ { - "url" : "XPN.2", - "valueString" : "HL7" - }, { - "url" : "XPN.3", - "valueString" : "MI" - }, { - "url" : "XPN.14", - "valueString" : "Prof" - }, { - "url" : "XPN.4", - "valueString" : "V" - }, { - "url" : "XPN.6", - "valueString" : "BCN" - }, { - "url" : "XPN.7", - "valueString" : "L" - }, { - "url" : "XPN.8", - "valueString" : "Naaame" - }, { - "url" : "XPN.9", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL7444" - } ], - "code" : "C", - "display" : "Name Context" - } ] + "source": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "OrderingFacilityApplicationName" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.XXX" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.3" } - }, { - "url" : "XPN.10", - "extension" : [ { - "url" : "XPN.10.2" - }, { - "url" : "XPN.10.1", - "valueString" : "Yes" - } ] - }, { - "url" : "XPN.12", - "valueString" : "19900503" - }, { - "url" : "XPN.13", - "valueString" : "20030503" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" - } ], - "use" : "official", - "family" : "Mega", - "_family" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "Mr" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "MrOwnMega" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "Mrs" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "MrsOwn" - } ] + ], + "endpoint": "urn:oid:2.16.840.1.114222.XXX" }, - "given" : [ "HL7", "MI" ], - "prefix" : [ "DR" ], - "suffix" : [ "V", "BCN", "Prof" ], - "period" : { - "start" : "1990-05-03", - "end" : "2003-05-03" + "responsible": { + "reference": "Organization/1731029042016675000.a4b74f1e-f4df-458a-ac8b-261f7f96e3d2" } - } ], - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "713" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5553861" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.1", - "valueString" : "12345" - }, { - "url" : "XTN.2", - "valueString" : "PRS" - }, { - "url" : "XTN.3", - "valueString" : "CP" - }, { - "url" : "XTN.4", - "valueString" : "real@example.com" - }, { - "url" : "XTN.7", - "valueString" : "5553861" - }, { - "url" : "XTN.9", - "valueString" : "himom" - }, { - "url" : "XTN.11", - "valueString" : "4" - }, { - "url" : "XTN.12", - "valueString" : "17135553862" - } ] - } ], - "system" : "phone", - "value" : "17135553862", - "use" : "home", - "rank" : 7, - "period" : { - "start" : "1999", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "1999" - } ] - }, - "end" : "2000", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "2000" - } ] + } + }, + { + "fullUrl": "Organization/1731029041997646000.0e5c02cb-8c43-4143-9430-46e27ea77fe0", + "resource": { + "resourceType": "Organization", + "id": "1731029041997646000.0e5c02cb-8c43-4143-9430-46e27ea77fe0", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "OrderingFacilityName" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.XXX" } - } - }, { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "281" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "5553861" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.1", - "valueString" : "9865" - }, { - "url" : "XTN.2", - "valueString" : "EMR" - }, { - "url" : "XTN.3", - "valueString" : "SAT" - }, { - "url" : "XTN.4", - "valueString" : "alsoreal@exmaple.com" - }, { - "url" : "XTN.7", - "valueString" : "5553861" - } ] - } ], - "system" : "other", - "use" : "work" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.1", - "valueString" : "40" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.40" - } ], - "_system" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/data-absent-reason", - "valueCode" : "unknown" - } ] - }, - "value" : "40" - } ], - "gender" : "female", - "birthDate" : "1640", - "_birthDate" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "1640" - } ] - }, - "deceasedDateTime" : "2031", - "_deceasedDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "2031" - } ] - }, - "address" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode" : "Census" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "123 Main St" - } ] - }, { - "url" : "XAD.2", - "valueString" : "Altxad" - }, { - "url" : "XAD.7", - "valueCode" : "H" - }, { - "url" : "XAD.8", - "valueString" : "MahHome" - }, { - "url" : "XAD.11", - "valueCode" : "A" - }, { - "url" : "XAD.12", - "extension" : [ { - "url" : "XAD.12.1", - "valueString" : "2020" - }, { - "url" : "XAD.12.2", - "valueString" : "2024" - } ] - }, { - "url" : "XAD.13", - "valueString" : "2022" - }, { - "url" : "XAD.14", - "valueString" : "2027" - }, { - "url" : "XAD.19", - "valueCode" : "MrSir" - } ] - } ], - "use" : "home", - "line" : [ "123 Main St", "Altxad", "MrSir" ], - "city" : "AnyTown", - "district" : "ThoCo", - "state" : "IG", - "postalCode" : "95802", - "country" : "USA", - "period" : { - "start" : "2022", - "end" : "2027" - } - } ], - "maritalStatus" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70002" - } ], - "code" : "P", - "display" : "Domestic Partnet" - } ] - }, - "multipleBirthInteger" : 11, - "communication" : [ { - "language" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70296" - } ], - "code" : "E", - "display" : "English" - } ] - } - } ], - "generalPractitioner" : [ { - "reference" : "Organization/1729291158701189000.1959ff7f-9a3c-458c-8d8e-d916a80ccda7" - } ], - "link" : [ { - "other" : { - "reference" : "RelatedPerson/1729291158716299000.b06139e1-28ca-4e80-9b3f-4fbf3dd8b5dd" - }, - "type" : "seealso" - } ] - } - }, { - "fullUrl" : "Organization/1729291158698371000.c4298f73-011e-4bdf-943c-3a6d3671089f", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158698371000.c4298f73-011e-4bdf-943c-3a6d3671089f", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "STARLINKED.CDC.Stag" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.9.8.7.6.3.2" - } ] - } - }, { - "fullUrl" : "Location/1729291158700380000.e59e52d8-e1d4-40c9-b0f9-16058865ad76", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158700380000.e59e52d8-e1d4-40c9-b0f9-16058865ad76", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "10.10.40.10.11380.90.22" - } ], - "name" : "Clinic B", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + ], + "address": [ + { + "country": "FR" + } + ] } - } - }, { - "fullUrl" : "Organization/1729291158701189000.1959ff7f-9a3c-458c-8d8e-d916a80ccda7", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158701189000.1959ff7f-9a3c-458c-8d8e-d916a80ccda7", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1133-5", - "display" : "SomeOtherText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1298-7", - "display" : "SomeOtherAltText" - } ], - "text" : "TheOriginalText" + }, + { + "fullUrl": "Location/1731029042013195000.465bf635-a79d-4108-b166-ad2dfd5d0106", + "resource": { + "resourceType": "Location", + "id": "1731029042013195000.465bf635-a79d-4108-b166-ad2dfd5d0106", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "1.8.440.1.1138.9.22" + } + ], + "name": "Clinic A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } - } ], - "system" : "LN", - "version" : "1", - "code" : "1133-5", - "display" : "SomeOtherText" + ] } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "5555" - }, { - "url" : "XON.10", - "valueString" : "OrgIdentifier3" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "8" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "An Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "45.24.167.43" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "CCTV" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158700380000.e59e52d8-e1d4-40c9-b0f9-16058865ad76" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "BCVan" - } ] - }, - "value" : "OrgIdentifier3" - } ], - "name" : "Receiving Responsible Org" - } - }, { - "fullUrl" : "Practitioner/1729291158701987000.8d216794-0ca5-45e5-a48f-c30bfe8f6ceb", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158701987000.8d216794-0ca5-45e5-a48f-c30bfe8f6ceb", - "identifier" : [ { - "value" : "Bob R.N." - } ] - } - }, { - "fullUrl" : "Organization/1729291158708547000.3bff1341-e3b5-4ca0-946c-2f376095a7fa", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158708547000.3bff1341-e3b5-4ca0-946c-2f376095a7fa", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "University H" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.113883.3.0" - } ] - } - }, { - "fullUrl" : "Organization/1729291158709132000.8247efc1-33e5-4433-8fa3-e2c0e44d92d9", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158709132000.8247efc1-33e5-4433-8fa3-e2c0e44d92d9", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "SSA" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.113883.3.184" - } ] - } - }, { - "fullUrl" : "Location/1729291158710057000.6597955e-70de-432a-9be6-7607f43ce58a", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158710057000.6597955e-70de-432a-9be6-7607f43ce58a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.113883.9.11" - } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] } - } - }, { - "fullUrl" : "Organization/1729291158710563000.6b230d40-3ab6-4443-85ca-216e7072104c", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158710563000.6b230d40-3ab6-4443-85ca-216e7072104c", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" - } ], - "text" : "OriginalText" + }, + { + "fullUrl": "Organization/1731029042016675000.a4b74f1e-f4df-458a-ac8b-261f7f96e3d2", + "resource": { + "resourceType": "Organization", + "id": "1731029042016675000.a4b74f1e-f4df-458a-ac8b-261f7f96e3d2", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1357-9", + "display": "SomeText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "2468-5", + "display": "SomeAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1357-9", + "display": "SomeText" } - } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "123" - }, { - "url" : "XON.10", - "valueString" : "1st OrgIdentifier" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158710057000.6597955e-70de-432a-9be6-7607f43ce58a" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" - } ] - }, - "value" : "1st OrgIdentifier" - } ], - "name" : "1st Ordering Facility" - } - }, { - "fullUrl" : "Location/1729291158710863000.3c694dae-359e-40f9-9970-4f1238b7348a", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158710863000.3c694dae-359e-40f9-9970-4f1238b7348a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.113883.9.11" - } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "1111" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier2" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "9" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "The Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "4.2.8.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "BCV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042013195000.465bf635-a79d-4108-b166-ad2dfd5d0106" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "BC" + } + ] + }, + "value": "OrgIdentifier2" + } + ], + "name": "Sending Responsible Org" } - } - }, { - "fullUrl" : "Organization/1729291158711467000.1dd13ee9-6787-4ba3-bc0f-ff8543978073", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158711467000.1dd13ee9-6787-4ba3-bc0f-ff8543978073", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" - } ], - "text" : "OriginalText" - } - } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "123" - }, { - "url" : "XON.10", - "valueString" : "2nd OrgIdentifier" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158710863000.3c694dae-359e-40f9-9970-4f1238b7348a" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" - } ] - }, - "value" : "2nd OrgIdentifier" - } ], - "name" : "2nd Ordering Facility" - } - }, { - "fullUrl" : "RelatedPerson/1729291158716299000.b06139e1-28ca-4e80-9b3f-4fbf3dd8b5dd", - "resource" : { - "resourceType" : "RelatedPerson", - "id" : "1729291158716299000.b06139e1-28ca-4e80-9b3f-4fbf3dd8b5dd", - "identifier" : [ { - "value" : "maybe" - } ] - } - }, { - "fullUrl" : "Organization/1729291158719836000.420f6702-d1f5-49e2-bfb0-0dfdd0e24071", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158719836000.420f6702-d1f5-49e2-bfb0-0dfdd0e24071", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "RSDT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "0.0.0.1.1138" - } ] - } - }, { - "fullUrl" : "Provenance/1729291158733312000.2aa254f0-1afa-44db-90dc-d51ad7f8549a", - "resource" : { - "resourceType" : "Provenance", - "id" : "1729291158733312000.2aa254f0-1afa-44db-90dc-d51ad7f8549a", - "target" : [ { - "reference" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca" - } ], - "occurredDateTime" : "2024-08-21T11:38:00Z", - "recorded" : "2024-10-18T15:39:18Z", - "activity" : { - "coding" : [ { - "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", - "code" : "UPDATE" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "performer" - } ] - }, - "who" : { - "reference" : "Organization/1729291158733087000.50565d7a-c138-4ad7-90c4-352ab5a17e37" - } - } ] - } - }, { - "fullUrl" : "Organization/1729291158733087000.50565d7a-c138-4ad7-90c4-352ab5a17e37", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158733087000.50565d7a-c138-4ad7-90c4-352ab5a17e37", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "RSDT" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "0.0.0.1.1138" - } ] - } - }, { - "fullUrl" : "Encounter/1729291158748523000.e6b583e7-17ac-422d-a986-97f72ad3bbda", - "resource" : { - "resourceType" : "Encounter", - "id" : "1729291158748523000.e6b583e7-17ac-422d-a986-97f72ad3bbda", - "meta" : { - "security" : [ { - "code" : "SEC" - } ] - }, - "text" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-visit-description", - "valueString" : "Description" - } ], - "div" : "
Description
" - }, - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "413", - "display" : "V" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "423", - "display" : "X" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-start-date", - "valueDateTime" : "2023-06-01T10:25:31-04:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230601102531-0400" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-discharge-date", - "valueDateTime" : "2023-07-01T10:25:31-04:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230701102531-0400" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/estimated-length", - "valueQuantity" : { - "value" : 5, - "unit" : "days", - "system" : "http://unitsofmeasure.org/", - "code" : "d" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/publicity-code", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "100", - "display" : "PublicCode" - } ] - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "444", - "display" : "MODE" - } ] - } - } ], - "code" : "444", - "display" : "MODE" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/admission-level-of-care", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "123", - "display" : "CARELEVEL1" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit", - "extension" : [ { - "url" : "PV1.12", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70087" - } ], - "code" : "P", - "display" : "Passed" - } ] - } - }, { - "url" : "PV1.18", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70018" - } ], - "code" : "H", - "display" : "Human Patient" - } ] - } - }, { - "url" : "PV1.46", - "valueDecimal" : 100 - }, { - "url" : "PV1.47", - "valueDecimal" : 199 - }, { - "url" : "PV1.48", - "valueDecimal" : 142 - }, { - "url" : "PV1.49", - "valueDecimal" : 130 - }, { - "url" : "PV1.51", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70326" - } ], - "code" : "A", - "display" : "Account Level" - } ] - } - }, { - "url" : "PV1.30", - "valueString" : "20020101" - }, { - "url" : "PV1.31", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70021" - } ], - "code" : "C", - "display" : "Collectors" - } ] - } - }, { - "url" : "PV1.32", - "valueDecimal" : 1 - }, { - "url" : "PV1.33", - "valueDecimal" : 0 - }, { - "url" : "PV1.34", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70111" - } ], - "code" : "Y", - "display" : "Yes" - } ] - } - }, { - "url" : "PV1.35", - "valueString" : "20080101" - }, { - "url" : "PV1.39", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70115" - } ], - "code" : "H", - "display" : "A Hospital Of Course" - } ] - } - }, { - "url" : "PV1.41", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70117" - } ], - "code" : "A", - "display" : "Active" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-patient-visit-additional-information", - "extension" : [ { - "url" : "PV2.15", - "valueString" : "EMP_ILL" - }, { - "url" : "PV2.23", - "valueReference" : { - "reference" : "Organization/1729291158738420000.6d04e7cc-b589-4c68-b86d-e696bdd9c79a" - } - }, { - "url" : "PV2.23", - "valueReference" : { - "reference" : "Organization/1729291158739092000.41467303-40b2-49a5-ad38-5a3005001aea" - } - }, { - "url" : "PV2.26", - "valueString" : "20230501102531-0400" - }, { - "url" : "PV2.29", - "valueString" : "20220501102531-0400" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.19" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "VN" - } ], - "text" : "visit number" - }, - "value" : "22" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.50" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203" - } ] - }, - "value" : "alternate visit" - } ], - "status" : "finished", - "class" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "O" - } ] - } - } ], - "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode", - "code" : "AMB", - "display" : "ambulatory" - }, - "type" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70007" - } ], - "code" : "R", - "display" : "Routine" - } ] - } ], - "serviceType" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70069" - } ], - "code" : "URO", - "display" : "Urology Service" - } ] - }, - "priority" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70217" - } ], - "code" : "3", - "display" : "Elective" - } ] - }, - "subject" : { - "reference" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca" - }, - "episodeOfCare" : [ { - "reference" : "EpisodeOfCare/1729291158748813000.c59d255f-d42b-43d4-8ede-0790a713c636" - } ], - "participant" : [ { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "ATND", - "display" : "attender" - } ] - } ], - "individual" : { - "reference" : "Practitioner/1729291158741030000.e55e13df-f30f-43bc-adc0-a73edeb12bc9" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "REF" - } ], - "text" : "referrer" - } ], - "individual" : { - "reference" : "Practitioner/1729291158741390000.bc08036e-cf62-4891-b2ce-29ad1424e1a1" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "CON" - } ], - "text" : "consultant" - } ], - "individual" : { - "reference" : "Practitioner/1729291158741726000.d67fc45e-a676-48e7-bcfb-8ccc71865d0b" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "ADM" - } ], - "text" : "admitter" - } ], - "individual" : { - "reference" : "Practitioner/1729291158742048000.34d785a5-c6e1-4e6f-8907-da22ccfc556f" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "REF" - } ], - "text" : "referrer" - } ], - "individual" : { - "reference" : "Practitioner/1729291158743468000.ed6f274b-d9e5-4ab6-b81f-ceaf451719b4" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "REF" - } ], - "text" : "referrer" - } ], - "individual" : { - "reference" : "Practitioner/1729291158745041000.19b24241-7c15-4c94-a76c-dcbc1c881736" - } - } ], - "period" : { - "start" : "2024-08-01T10:25:31-04:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20240801102531-0400" - } ] - }, - "end" : "2024-08-01T10:25:31-04:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20240801102531-0400" - } ] - } - }, - "length" : { - "value" : 12, - "unit" : "days", - "system" : "http://unitsofmeasure.org/", - "code" : "d" - }, - "reasonCode" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV2.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "1", - "display" : "AD" - } ] - } ], - "hospitalization" : { - "preAdmissionIdentifier" : { - "value" : "232323" - }, - "admitSource" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70023" - } ], - "code" : "RL", - "display" : "Real Life" - } ] - }, - "reAdmission" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70092" - } ], - "code" : "R", - "display" : "Re-admission" - } ] - }, - "dietPreference" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70114" - } ], - "code" : "F", - "display" : "Fed" - } ] - } ], - "specialCourtesy" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70099" - } ], - "code" : "VIP", - "display" : "Very Interesting Person" - } ] - } ], - "destination" : { - "reference" : "Location/1729291158739420000.8be22947-a2a6-49f1-af12-f9c74ea4c476" - }, - "dischargeDisposition" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70112" - } ], - "code" : "H", - "display" : "Happy" - } ] - } - }, - "location" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.3" - } ], - "location" : { - "reference" : "Location/1729291158746760000.e24b446c-5bda-4542-aabb-d04a01437571" - }, - "status" : "active" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.6" - } ], - "location" : { - "reference" : "Location/1729291158747320000.20ca44ca-d5b4-492a-a124-bab78f7f198d" - }, - "status" : "completed" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.11" - }, { - "url" : "https://hl7.org/fhir/StructureDefinition/temporary-location", - "valueBoolean" : true - } ], - "location" : { - "reference" : "Location/1729291158747527000.add84404-ebf5-43b7-9a4c-fcbed365fd19" - }, - "status" : "active" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.42" - } ], - "location" : { - "reference" : "Location/1729291158747717000.3aa3d8c3-8d88-4062-87ac-96d709e8d9da" - }, - "status" : "planned" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.43" - }, { - "url" : "https://hl7.org/fhir/StructureDefinition/temporary-location", - "valueBoolean" : true - } ], - "location" : { - "reference" : "Location/1729291158747913000.375006a0-e443-4da8-892f-93961957b78d" - }, - "status" : "completed" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV2.1" - }, { - "url" : "https://hl7.org/fhir/StructureDefinition/temporary-location", - "valueBoolean" : false - } ], - "location" : { - "reference" : "Location/1729291158748439000.e72f22c5-f524-4591-a3ea-3a428bac395d" - }, - "status" : "planned" - } ] - } - }, { - "fullUrl" : "Location/1729291158738011000.baff084e-f4e5-411f-98f0-299570ebf9e8", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158738011000.baff084e-f4e5-411f-98f0-299570ebf9e8", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.113883.9.11" - } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "fullUrl": "Organization/1731029042017362000.106c959b-9e9e-4d4f-a7e8-f24db85a4d8e", + "resource": { + "resourceType": "Organization", + "id": "1731029042017362000.106c959b-9e9e-4d4f-a7e8-f24db85a4d8e", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.6" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "txdshslab" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.181960" + } + ] } - } - }, { - "fullUrl" : "Organization/1729291158738420000.6d04e7cc-b589-4c68-b86d-e696bdd9c79a", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158738420000.6d04e7cc-b589-4c68-b86d-e696bdd9c79a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" - } ], - "text" : "OriginalText" - } - } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "123" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158738011000.baff084e-f4e5-411f-98f0-299570ebf9e8" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" - } ] - }, - "value" : "123" - } ], - "name" : "Org1" - } - }, { - "fullUrl" : "Location/1729291158738709000.6d090695-9048-4246-8a54-d16bd4e7233c", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158738709000.6d090695-9048-4246-8a54-d16bd4e7233c", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.113883.9.11" - } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "fullUrl": "Organization/1731029042018204000.aee781f0-7046-460d-b453-df6eb98361fd", + "resource": { + "resourceType": "Organization", + "id": "1731029042018204000.aee781f0-7046-460d-b453-df6eb98361fd", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.6" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "txdshslab" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.181960" + } + ] } - } - }, { - "fullUrl" : "Organization/1729291158739092000.41467303-40b2-49a5-ad38-5a3005001aea", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158739092000.41467303-40b2-49a5-ad38-5a3005001aea", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" - } ], - "text" : "OriginalText" + }, + { + "fullUrl": "Location/1731029042019265000.0e7b637a-eb35-412f-88d9-412d14965fd3", + "resource": { + "resourceType": "Location", + "id": "1731029042019265000.0e7b637a-eb35-412f-88d9-412d14965fd3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "10.10.40.10.11380.90.22" + } + ], + "name": "Clinic B", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } - } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "123" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158738709000.6d090695-9048-4246-8a54-d16bd4e7233c" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" - } ] - }, - "value" : "123" - } ], - "name" : "Org2" - } - }, { - "fullUrl" : "Location/1729291158739420000.8be22947-a2a6-49f1-af12-f9c74ea4c476", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158739420000.8be22947-a2a6-49f1-af12-f9c74ea4c476", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date", - "valueString" : "202305061200" - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158741030000.e55e13df-f30f-43bc-adc0-a73edeb12bc9", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158741030000.e55e13df-f30f-43bc-adc0-a73edeb12bc9", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Namespace" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "UUID" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" - }, { - "url" : "XCN.4", - "valueString" : "B" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.5", - "valueString" : "2ND" - }, { - "url" : "XCN.7", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "B" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.7" - } ], - "identifier" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "DL" - } ] - }, - "system" : "Namespace", - "value" : "1" - } ], - "name" : [ { - "use" : "official", - "family" : "BEETHOVEN", - "given" : [ "LUDWIG", "B" ], - "prefix" : [ "DR" ], - "suffix" : [ "2ND", "MD", "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158741390000.bc08036e-cf62-4891-b2ce-29ad1424e1a1", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158741390000.bc08036e-cf62-4891-b2ce-29ad1424e1a1", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.8" - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "MOZART" - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158741726000.d67fc45e-a676-48e7-bcfb-8ccc71865d0b", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158741726000.d67fc45e-a676-48e7-bcfb-8ccc71865d0b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.9" - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "CHOPIN" - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158742048000.34d785a5-c6e1-4e6f-8907-da22ccfc556f", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158742048000.34d785a5-c6e1-4e6f-8907-da22ccfc556f", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.17" - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "BACH" - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158743468000.ed6f274b-d9e5-4ab6-b81f-ceaf451719b4", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158743468000.ed6f274b-d9e5-4ab6-b81f-ceaf451719b4", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" - }, { - "url" : "XCN.4", - "valueString" : "B" - }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "AssignJ" - } ] - } - }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "AssignA" - } ] - } - }, { - "url" : "XCN.5", - "valueString" : "2ND" - }, { - "url" : "XCN.7", - "valueString" : "MD" - }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "SRC" - } ] - } - }, { - "url" : "XCN.10", - "valueString" : "B" - }, { - "url" : "XCN.15", - "valueString" : "A" - }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "NameContext" - } ] - } - }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV2.13" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "DL" - } ] - }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" - } ], - "name" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" - } ], - "use" : "official", - "family" : "BEETHOVEN", - "_family" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Referral Source Code1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" - } ] - }, - "given" : [ "LUDWIG", "B" ], - "prefix" : [ "DR" ], - "suffix" : [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" - } - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158745041000.19b24241-7c15-4c94-a76c-dcbc1c881736", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158745041000.19b24241-7c15-4c94-a76c-dcbc1c881736", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" - }, { - "url" : "XCN.4", - "valueString" : "B" - }, { - "url" : "XCN.20", - "valueString" : "20230501102531-0400" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.22", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "AssignJ" - } ] - } - }, { - "url" : "XCN.23", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "AssignA" - } ] - } - }, { - "url" : "XCN.5", - "valueString" : "2ND" - }, { - "url" : "XCN.7", - "valueString" : "MD" - }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "SRC" - } ] - } - }, { - "url" : "XCN.10", - "valueString" : "B" - }, { - "url" : "XCN.15", - "valueString" : "A" - }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "NameContext" - } ] - } - }, { - "url" : "XCN.19", - "valueString" : "20220501102531-0400" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV2.13" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "DL" - } ] - }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" - } ], - "name" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", - "valueCode" : "G" - } ], - "use" : "official", - "family" : "BEETHOVEN", - "_family" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Referral Source Code2" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" - } ] - }, - "given" : [ "LUDWIG", "B" ], - "prefix" : [ "DR" ], - "suffix" : [ "2ND", "MD", "MD" ], - "period" : { - "start" : "2022-05-01T10:25:31-04:00", - "end" : "2023-05-01T10:25:31-04:00" + ] } - } ] - } - }, { - "fullUrl" : "Organization/1729291158745373000.e136730d-a978-4ee2-b38d-9cd80cbe874c", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158745373000.e136730d-a978-4ee2-b38d-9cd80cbe874c", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "AA" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "AssigningAUTH" - } ] - } - }, { - "fullUrl" : "Location/1729291158746274000.47571273-436d-4895-b58f-49f432919b86", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158746274000.47571273-436d-4895-b58f-49f432919b86", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "Hospital Assigned" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "ISO" - } ] - }, - "value" : "2.4.4.4" - } ], - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Location/1729291158746352000.e5fc878f-3c1c-474d-9504-c651dbc0b331", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158746352000.e5fc878f-3c1c-474d-9504-c651dbc0b331", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "value" : "Building" - } ], - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" - } ] - }, - "partOf" : { - "reference" : "Location/1729291158746274000.47571273-436d-4895-b58f-49f432919b86" - } - } - }, { - "fullUrl" : "Location/1729291158746443000.a9eac0a3-bb7c-43be-a97e-f1b3958d34c2", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158746443000.a9eac0a3-bb7c-43be-a97e-f1b3958d34c2", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "value" : "Floor" - } ], - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" - } ] - }, - "partOf" : { - "reference" : "Location/1729291158746352000.e5fc878f-3c1c-474d-9504-c651dbc0b331" } - } - }, { - "fullUrl" : "Location/1729291158746534000.3cd19c04-bec3-4b1e-ba2e-3f13289884c1", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158746534000.3cd19c04-bec3-4b1e-ba2e-3f13289884c1", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "A" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "C" - } ] - }, - "value" : "Point OF Care" - } ], - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" - } ] - } - } ] - }, - "partOf" : { - "reference" : "Location/1729291158746443000.a9eac0a3-bb7c-43be-a97e-f1b3958d34c2" + }, + { + "fullUrl": "Organization/1731029042020729000.07d4fabb-3c13-4e3e-9073-139ea792def6", + "resource": { + "resourceType": "Organization", + "id": "1731029042020729000.07d4fabb-3c13-4e3e-9073-139ea792def6", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1133-5", + "display": "SomeOtherText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1298-7", + "display": "SomeOtherAltText" + } + ], + "text": "TheOriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1133-5", + "display": "SomeOtherText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "5555" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier3" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.23" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "8" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "An Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "45.24.167.43" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "CCTV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042019265000.0e7b637a-eb35-412f-88d9-412d14965fd3" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "BCVan" + } + ] + }, + "value": "OrgIdentifier3" + } + ], + "name": "Receiving Responsible Org" } - } - }, { - "fullUrl" : "Location/1729291158746616000.0607e80e-1ec1-45f5-8861-bcd9ca75caea", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158746616000.0607e80e-1ec1-45f5-8861-bcd9ca75caea", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "1" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "3" - } ] + }, + { + "fullUrl": "Provenance/1731029042255928000.7a039cd4-4b47-477e-afb0-4ed3bc68bb61", + "resource": { + "resourceType": "Provenance", + "id": "1731029042255928000.7a039cd4-4b47-477e-afb0-4ed3bc68bb61", + "recorded": "2019-07-20T09:12:29Z", + "activity": { + "coding": [ + { + "display": "ORM^O01^ORM_O01" + } + ] }, - "value" : "Room" - } ], - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" - } ] - }, - "partOf" : { - "reference" : "Location/1729291158746534000.3cd19c04-bec3-4b1e-ba2e-3f13289884c1" + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "author" + } + ] + }, + "who": { + "reference": "Organization/1731029042255695000.3cdd1b82-df0c-4f16-88d7-bf3f9455885b" + } + } + ] } - } - }, { - "fullUrl" : "Location/1729291158746760000.e24b446c-5bda-4542-aabb-d04a01437571", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158746760000.e24b446c-5bda-4542-aabb-d04a01437571", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", - "valueString" : "R" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "B" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "A" - } ] - }, - "value" : "Bed" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "UID4This" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", - "valueString" : "organization" - } ], - "value" : "Comprehensive", - "assigner" : { - "reference" : "Organization/1729291158745373000.e136730d-a978-4ee2-b38d-9cd80cbe874c" + }, + { + "fullUrl": "Location/1731029042254728000.e748abca-2697-4c52-9736-739a09f6c29b", + "resource": { + "resourceType": "Location", + "id": "1731029042254728000.e748abca-2697-4c52-9736-739a09f6c29b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "1.8.440.1.1138.9.22" + } + ], + "name": "Clinic A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] } - } ], - "description" : "Totally A Real Location", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" - } ] - }, - "partOf" : { - "reference" : "Location/1729291158746616000.0607e80e-1ec1-45f5-8861-bcd9ca75caea" } - } - }, { - "fullUrl" : "Organization/1729291158747044000.94e173a6-3244-489e-b58d-ec65b2c03d83", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158747044000.94e173a6-3244-489e-b58d-ec65b2c03d83", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "ASSIGNEE" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "UUID" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "222.1111.22222" - } ] - } - }, { - "fullUrl" : "Location/1729291158747320000.20ca44ca-d5b4-492a-a124-bab78f7f198d", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158747320000.20ca44ca-d5b4-492a-a124-bab78f7f198d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", - "valueString" : "location type" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "Hospital Prio" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "ISO" - } ] - }, - "value" : "2.4.4.4" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NAME" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "UNI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", - "valueString" : "organization" - } ], - "value" : "Entity ID", - "assigner" : { - "reference" : "Organization/1729291158747044000.94e173a6-3244-489e-b58d-ec65b2c03d83" - } - } ], - "status" : "active", - "description" : "Description", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "fullUrl": "Organization/1731029042255695000.3cdd1b82-df0c-4f16-88d7-bf3f9455885b", + "resource": { + "resourceType": "Organization", + "id": "1731029042255695000.3cdd1b82-df0c-4f16-88d7-bf3f9455885b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1357-9", + "display": "SomeText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "2468-5", + "display": "SomeAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1357-9", + "display": "SomeText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "1111" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier2" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "9" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "The Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "4.2.8.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "BCV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042254728000.e748abca-2697-4c52-9736-739a09f6c29b" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "BC" + } + ] + }, + "value": "OrgIdentifier2" + } + ], + "name": "Sending Responsible Org" } - } - }, { - "fullUrl" : "Location/1729291158747527000.add84404-ebf5-43b7-9a4c-fcbed365fd19", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158747527000.add84404-ebf5-43b7-9a4c-fcbed365fd19", - "description" : "Its Temporary", - "mode" : "instance" - } - }, { - "fullUrl" : "Location/1729291158747717000.3aa3d8c3-8d88-4062-87ac-96d709e8d9da", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158747717000.3aa3d8c3-8d88-4062-87ac-96d709e8d9da", - "description" : "Pending Location", - "mode" : "instance" - } - }, { - "fullUrl" : "Location/1729291158747913000.375006a0-e443-4da8-892f-93961957b78d", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158747913000.375006a0-e443-4da8-892f-93961957b78d", - "description" : "Prior Location", - "mode" : "instance" - } - }, { - "fullUrl" : "Organization/1729291158748165000.8e8db3a2-7ead-49cd-8137-111e1d7d43f2", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158748165000.8e8db3a2-7ead-49cd-8137-111e1d7d43f2", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "ASSIGNEE" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "UUID" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "222.1111.22222" - } ] - } - }, { - "fullUrl" : "Location/1729291158748439000.e72f22c5-f524-4591-a3ea-3a428bac395d", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158748439000.e72f22c5-f524-4591-a3ea-3a428bac395d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", - "valueString" : "location type" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "Hospital PriorPending" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "ISO" - } ] + }, + { + "fullUrl": "Provenance/1731029042266187000.70e81727-b4fe-47f7-91b1-5d121def562d", + "resource": { + "resourceType": "Provenance", + "id": "1731029042266187000.70e81727-b4fe-47f7-91b1-5d121def562d", + "recorded": "2024-11-07T17:24:02Z", + "policy": [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity": { + "coding": [ + { + "code": "v2-FHIR transformation" + } + ] }, - "value" : "2.4.4.4" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NAME" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "UNI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", - "valueString" : "organization" - } ], - "value" : "Entity ID", - "assigner" : { - "reference" : "Organization/1729291158748165000.8e8db3a2-7ead-49cd-8137-111e1d7d43f2" - } - } ], - "status" : "active", - "description" : "Description", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" + } + ] + }, + "who": { + "reference": "Organization/1731029042265934000.c0677c2f-a995-46c8-8b69-60bc3b2815ad" + } + } + ] } - } - }, { - "fullUrl" : "EpisodeOfCare/1729291158748813000.c59d255f-d42b-43d4-8ede-0790a713c636", - "resource" : { - "resourceType" : "EpisodeOfCare", - "id" : "1729291158748813000.c59d255f-d42b-43d4-8ede-0790a713c636", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.54" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/episode-of-care-name", - "valueString" : "Service Description" - } ], - "identifier" : [ { - "value" : "episode identifier" - } ] - } - }, { - "fullUrl" : "Observation/1729291158910998000.27dcecd6-0296-4d0e-9d34-a9b2cdc172a3", - "resource" : { - "resourceType" : "Observation", - "id" : "1729291158910998000.27dcecd6-0296-4d0e-9d34-a9b2cdc172a3", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "subid" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test", - "valueId" : "ST" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2023-09-12T18:08:02-04:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230912180802-0400" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode" : "30" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL79999" - } ], - "code" : "g", - "display" : "gram" - } ] - } - }, { - "url" : "OBX.27", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL79900" - } ], - "code" : "RC", - "display" : "root cause" - } ] - } - }, { - "url" : "OBX.28", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL79900" - } ], - "code" : "LPC", - "display" : "Local Process" - } ] - } - }, { - "url" : "OBX.29", - "valueId" : "QST" - }, { - "url" : "OBX.31", - "valueId" : "31" - }, { - "url" : "OBX.32", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "32", - "display" : "value absent reason" - } ] - } - }, { - "url" : "OBX.33", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "eip" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] + }, + { + "fullUrl": "Organization/1731029042265934000.c0677c2f-a995-46c8-8b69-60bc3b2815ad", + "resource": { + "resourceType": "Organization", + "id": "1731029042265934000.c0677c2f-a995-46c8-8b69-60bc3b2815ad", + "identifier": [ + { + "value": "CDC PRIME - Atlanta" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] }, - "value" : "33" - } - }, { - "url" : "OBX.9", - "valueString" : "99" - }, { - "url" : "OBX.11", - "valueString" : "F" - }, { - "url" : "OBX.12", - "valueString" : "20000101" - }, { - "url" : "OBX.13", - "valueString" : "user defined" - }, { - "url" : "OBX.17", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2" - } ] - } - }, { - "url" : "OBX.18", - "valueReference" : { - "reference" : "Device/1729291158910103000.91225479-ceca-43b2-b057-ba4d4db721da" - } - }, { - "url" : "OBX.20", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70163" - } ], - "system" : "http://terminology.hl7.org/CodeSystem/v2-0163", - "code" : "BE", - "display" : "Bilateral Ears" - } ] - } - }, { - "url" : "OBX.26", - "valueId" : "26" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.21" - } ], - "type" : { - "coding" : [ { - "code" : "FILL" - } ] - }, - "value" : "entity id" - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "code" : "80383-3", - "display" : "Flu B" - } ] - }, - "subject" : { - "reference" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca" - }, - "encounter" : { - "reference" : "Encounter/1729291158748523000.e6b583e7-17ac-422d-a986-97f72ad3bbda" - }, - "effectiveDateTime" : "2023-01-01T00:00:00Z", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230101000000" - } ] - }, - "performer" : [ { - "reference" : "Organization/1729291158911367000.7a49c034-9660-433b-b57b-c3e28f1add68" - }, { - "reference" : "PractitionerRole/1729291158911505000.58d7f57a-a296-4c05-b24a-1e613f552e0f" - }, { - "reference" : "PractitionerRole/1729291158912015000.887b6c87-2497-4a38-945e-807a6c3cb6a9" - } ], - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "code" : "260415000", - "display" : "Not detected" - } ] - }, - "interpretation" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "UP", - "display" : "Up to you" - } ] - } ], - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - }, { - "url" : "NTE.7", - "valueString" : "20230202" - }, { - "url" : "NTE.8", - "valueString" : "20230203" - }, { - "url" : "NTE.9", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "CC", - "display" : "This is a coded comment for an observation note" - } ] + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896", + "resource": { + "resourceType": "Patient", + "id": "1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896", + "meta": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", + "valueReference": { + "reference": "Organization/1731029042296068000.218e21be-9d09-4b28-9860-d821b93ca3b2" + } } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "OBX Note" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "RE", - "display" : "Remark" - } ] - } - } ], - "authorReference" : { - "reference" : "Practitioner/1729291158913363000.75217d83-e1ab-44f6-95ec-af347663a462" - }, - "time" : "2023-02-01", - "_time" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230201" - } ] - }, - "text" : "OBX Note" - } ], - "bodySite" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70163" - } ], - "system" : "http://terminology.hl7.org/CodeSystem/v2-0163", - "code" : "BE", - "display" : "Bilateral Ears" - } ] - }, - "method" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2" - } ] - }, - "device" : { - "reference" : "Device/1729291158914164000.6895e08f-76fc-4155-b584-5362fd325e1a" - }, - "referenceRange" : [ { - "text" : "range of a few" - } ] - } - }, { - "fullUrl" : "Device/1729291158910103000.91225479-ceca-43b2-b057-ba4d4db721da", - "resource" : { - "resourceType" : "Device", - "id" : "1729291158910103000.91225479-ceca-43b2-b057-ba4d4db721da", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPTRDEV-001" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.17.840" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "Device 001" - } ] - } - }, { - "fullUrl" : "Organization/1729291158911367000.7a49c034-9660-433b-b57b-c3e28f1add68", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158911367000.7a49c034-9660-433b-b57b-c3e28f1add68", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "CLIA" - } ], - "code" : "11D1111111", - "display" : "CSV uploads" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "CLIA", - "value" : "11D1111111" - } ], - "name" : "CSV uploads" - } - }, { - "fullUrl" : "Practitioner/1729291158911855000.98f68938-0ab1-49a5-8b0f-30c5511db7f5", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158911855000.98f68938-0ab1-49a5-8b0f-30c5511db7f5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Quinlen" - } ] - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "Frances", - "given" : [ "Quinlen" ] - } ] - } - }, { - "fullUrl" : "PractitionerRole/1729291158911505000.58d7f57a-a296-4c05-b24a-1e613f552e0f", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1729291158911505000.58d7f57a-a296-4c05-b24a-1e613f552e0f", - "practitioner" : { - "reference" : "Practitioner/1729291158911855000.98f68938-0ab1-49a5-8b0f-30c5511db7f5" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/practitioner-role", - "code" : "responsibleObserver" - } ] - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158912293000.d3a1870f-41a5-4bcb-a8d9-8e66238e9465", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158912293000.d3a1870f-41a5-4bcb-a8d9-8e66238e9465", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Quinlen" - } ] - } ], - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "Mark", - "given" : [ "Quinlen" ] - } ] - } - }, { - "fullUrl" : "Organization/1729291158912791000.80a47615-5d9e-4b9c-8dfa-37f91af387c6", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158912791000.80a47615-5d9e-4b9c-8dfa-37f91af387c6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "11D1111111" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CLIA" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.7" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + ], + "lastUpdated": "2024-08-21T11:38:00Z", + "_lastUpdated": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202408211138" + } + ] + } }, - "value" : "11D1111111" - } ], - "name" : "CSV uploads-11D1111111", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "2 Second Dr" - } ] - } ] - } ], - "line" : [ "2 Second Dr" ], - "state" : "IG", - "postalCode" : "94553", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1729291158912015000.887b6c87-2497-4a38-945e-807a6c3cb6a9", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1729291158912015000.887b6c87-2497-4a38-945e-807a6c3cb6a9", - "practitioner" : { - "reference" : "Practitioner/1729291158912293000.d3a1870f-41a5-4bcb-a8d9-8e66238e9465" - }, - "organization" : { - "reference" : "Organization/1729291158912791000.80a47615-5d9e-4b9c-8dfa-37f91af387c6" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158913363000.75217d83-e1ab-44f6-95ec-af347663a462", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158913363000.75217d83-e1ab-44f6-95ec-af347663a462", - "identifier" : [ { - "value" : "Bob R.N.A." - } ] - } - }, { - "fullUrl" : "Device/1729291158914164000.6895e08f-76fc-4155-b584-5362fd325e1a", - "resource" : { - "resourceType" : "Device", - "id" : "1729291158914164000.6895e08f-76fc-4155-b584-5362fd325e1a", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPTRDEV-001" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.17.840" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "Device 001" - } ] - } - }, { - "fullUrl" : "ServiceRequest/1729291158936263000.5f403463-87f3-4c92-9f47-e5f0d48e7186", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1729291158936263000.5f403463-87f3-4c92-9f47-e5f0d48e7186", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "RE" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "20230725" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL79999" - } ], - "code" : "OS", - "display" : "order status" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ { - "url" : "ORC.5", - "valueString" : "CM" - }, { - "url" : "ORC.6", - "valueString" : "E" - }, { - "url" : "ORC.19", - "valueReference" : { - "reference" : "Practitioner/1729291158920752000.024c5626-05c5-45f7-a14c-30b7c81c7700" - } - }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1729291158921164000.d9c2a1ef-fa84-403d-ae73-b9cd9dc7aa6d" - } - }, { - "url" : "orc-22-ordering-facility-address", - "valueAddress" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "111 Street St" - } ] - } ] - } ], - "line" : [ "111 Street St" ], - "city" : "Streetsville", - "state" : "ST" - } - }, { - "url" : "orc-24-ordering-provider-address", - "valueAddress" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "111 Road Rd" - } ] - } ] - } ], - "line" : [ "111 Road Rd" ], - "city" : "Roadsville", - "state" : "RD" - } - }, { - "url" : "ORC.27", - "valueString" : "20260404" - }, { - "url" : "ORC.28", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70177" - } ], - "code" : "EMP", - "display" : "Employee" - } ] - } - }, { - "url" : "ORC.30", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding-system", - "valueString" : "HL70483" - } ], - "code" : "EL", - "display" : "Electronic" - } ] - } - }, { - "url" : "ORC.31", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70000" - } ], - "code" : "UMM", - "display" : "Universal Modifier" - } ] - } - }, { - "url" : "ORC.32", - "valueString" : "20250403" - }, { - "url" : "ORC.8", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "Specimen12333454" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "Specimen12333" - } - }, { - "url" : "ORC.10", - "valueReference" : { - "reference" : "Practitioner/1729291158922473000.c533de3e-d2ba-44e0-8b6b-453b1576663e" - } - }, { - "url" : "ORC.11", - "valueReference" : { - "reference" : "Practitioner/1729291158922799000.5359badb-22f7-48ba-9960-6e64b3441c64" - } - }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1729291158923141000.1b20e06c-4c1e-45ab-bb17-2a0f784195bd" - } - }, { - "url" : "ORC.13", - "valueReference" : { - "reference" : "Location/1729291158923690000.bce36e37-6828-4d55-ac5e-c84b72ed8864" - } - }, { - "url" : "ORC.15", - "valueString" : "202101021000" - }, { - "url" : "ORC.17", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL79999" - } ], - "code" : "EO", - "display" : "entering org text" - } ] - } - }, { - "url" : "ORC.18", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL79999" - } ], - "code" : "ED", - "display" : "entering device text" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Placer Identifier Namespace" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Placer Universal ID" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "Placer Identifier" - } - }, { - "url" : "OBR.3", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Filler Identifier Namespace" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "Filler Universal ID" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "Filler Identifier" - } - }, { - "url" : "OBR.20", - "valueString" : "filler1" - }, { - "url" : "OBR.21", - "valueString" : "filler2" - }, { - "url" : "OBR.23", - "extension" : [ { - "url" : "moc-1-1-monetary-amount", - "valueString" : "100" - }, { - "url" : "moc-1-2-monetary-denomination", - "valueString" : "$" - }, { - "url" : "moc-2-charge-code", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "16", - "display" : "code" - } ] + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", + "valueAnnotation": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230601" + }, + { + "url": "NTE.8", + "valueString": "20350201" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "Coded comment for patient note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Accession level coment." + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "y" + } + ], + "version": "a", + "code": "z", + "display": "x" + } + ], + "text": "b" + } + } + ], + "authorReference": { + "reference": "Practitioner/1731029042278089000.dcac21f6-7843-4a7d-9e94-f835c89dd949" + }, + "time": "2023-05-31", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230531" + } + ] + }, + "text": "Accession level coment." } - } ] - }, { - "url" : "OBR.24", - "valueId" : "OTH" - }, { - "url" : "OBR.25", - "valueId" : "F" - }, { - "url" : "OBR.26", - "extension" : [ { - "url" : "prl-1-parent-observation-identifier", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "444", - "display" : "ParentId" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", + "valueAnnotation": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230601" + }, + { + "url": "NTE.8", + "valueString": "20350201" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "Coded comment for patient note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Accession level coment 2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "y" + } + ], + "version": "a", + "code": "z", + "display": "x" + } + ], + "text": "b" + } + } + ], + "authorReference": { + "reference": "Practitioner/1731029042279250000.30d1176d-d94b-48a5-bda0-b965e559f312" + }, + "time": "2023-05-31", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230531" + } + ] + }, + "text": "Accession level coment 2" } - }, { - "url" : "prl-2-parent-observation-sub-identifier", - "valueString" : "888" - }, { - "url" : "prl-3-parent-observation-descriptor", - "valueString" : "ParentOBSdescriptor" - } ] - }, { - "url" : "OBR.28", - "valueReference" : { - "reference" : "Practitioner/1729291158924936000.f7d9f43a-4887-49ab-8756-ef1d1d1f9e1f" - } - }, { - "url" : "OBR.29", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CSV" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "11D1111111" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Other CSV" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "22D2222222" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA2" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", + "extension": [ + { + "url": "PID.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70001" + } + ], + "code": "F", + "display": "Female" + } + ] + } + }, + { + "url": "PID.18", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.18" + } + ], + "value": "32" + } + }, + { + "url": "PID.24", + "valueString": "Y" + }, + { + "url": "PID.30", + "valueString": "Y" + }, + { + "url": "PID.32", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70445" + } + ], + "code": "AL", + "display": "Alias" + } + ] + } + }, + { + "url": "PID.32", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70445" + } + ], + "code": "UA", + "display": "Unknown" + } + ] + } + }, + { + "url": "PID.38", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70429" + } + ], + "code": "RA", + "display": "Racing" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/veteran-military-status", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70172" + } + ], + "code": "NA", + "display": "Not Applicable" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-nationality", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.28" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70212" + } + ], + "code": "A", + "display": "American" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identity-unknown", + "valueString": "N" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-animal", + "extension": [ + { + "url": "species", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.35" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70446" + } + ], + "code": "D", + "display": "Dog" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/studentStatus", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Full-time student" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" + } + ], + "version": "2.5.1", + "code": "N", + "display": "Not a student" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" + } + ], + "version": "4", + "code": "N", + "display": "Not a student" + } + ], + "text": "TEST" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-disability", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" + } + ], + "version": "2.5.1", + "code": "T", + "display": "TEST" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" + } + ], + "version": "2.5.1", + "code": "D", + "display": "Debug" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" + } + ], + "version": "4", + "code": "P", + "display": "Prod" + } + ], + "text": "TEST" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/livingWill", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Yes, patient has a living will but it is not on file" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" + } + ], + "version": "2.5.1", + "code": "U", + "display": "Unknown" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" + } + ], + "version": "4", + "code": "I", + "display": "No, patient does not have a living will but information was provided" + } + ], + "text": "TEST" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString": "1st Ordering Facility" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString": "2nd Ordering Facility" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic", + "extension": [ + { + "url": "PD1.1", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "C", + "display": "Small Children Dependent" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "M", + "display": "Medical Supervision Required" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "4", + "code": "M", + "display": "Medical Supervision Required" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.1", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "O", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "M", + "display": "Medical Supervision Required" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "4", + "code": "U", + "display": "Unknown" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.2", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" + } + ], + "version": "2.5.1", + "code": "A", + "display": "Alone" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Family" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" + } + ], + "version": "4", + "code": "F", + "display": "Family" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.16", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" + } + ], + "version": "2.5.1", + "code": "A", + "display": "Active" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" + } + ], + "version": "2.5.1", + "code": "O", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" + } + ], + "version": "4", + "code": "I", + "display": "Inactive" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.17", + "valueString": "20230501102532-0400" + }, + { + "url": "PD1.18", + "valueString": "20230501102533-0400" + }, + { + "url": "PD1.19", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" + } + ], + "version": "2.5.1", + "code": "AUSA", + "display": "Australian Army" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" + } + ], + "version": "2.5.1", + "code": "AUSN", + "display": "Australian Navy" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" + } + ], + "version": "4", + "code": "AUSFA", + "display": "Australian Air Force" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.20", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" + } + ], + "version": "2.5.1", + "code": "E1... E9", + "display": "Enlisted" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" + } + ], + "version": "2.5.1", + "code": "W1 ... W4", + "display": "Warrent Officers" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" + } + ], + "version": "4", + "code": "O1 ... O9", + "display": "Officers" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.21", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" + } + ], + "version": "2.5.1", + "code": "ACT", + "display": "Active duty" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" + } + ], + "version": "2.5.1", + "code": "RET", + "display": "Retired" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" + } + ], + "version": "4", + "code": "DEC", + "display": "Deceased" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.22", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.8", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Yes, patient is a documented donor, but documentation is not on file" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" + } + ], + "version": "2.5.1", + "code": "U", + "display": "Unknown" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" + } + ], + "version": "4", + "code": "I", + "display": "No, patient is not a documented donor, but information was provided" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.9", + "valueString": "N" + }, + { + "url": "PD1.10", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1731029042283964000.e3b1bba3-e4f7-405e-89e1-d733a478c1b9" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "MR" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PD1.10" + } + ], + "type": { + "coding": [ + { + "code": "MR" + } + ] + }, + "system": "NIST MPI", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NIST MPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.3.72.5.30.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "18547545" + } + }, + { + "url": "PD1.10", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1731029042284454000.a74b8594-2b75-4b7e-b40a-21703482cbd3" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "SS" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PD1.10" + } + ], + "type": { + "coding": [ + { + "code": "SS" + } + ] + }, + "system": "SSN", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SSN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "111111111" + } + }, + { + "url": "PD1.11", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Family only" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" + } + ], + "version": "2.5.1", + "code": "U", + "display": "Unknown" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" + } + ], + "version": "4", + "code": "N", + "display": "No Publicity" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.12", + "valueString": "N" + }, + { + "url": "PD1.13", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.14", + "valueReference": { + "reference": "Organization/1731029042285778000.f0325b07-69bd-43a4-b608-75926ed76ef9" + } + }, + { + "url": "PD1.14", + "valueReference": { + "reference": "Organization/1731029042286633000.1d3d00af-d0be-4208-b248-cb16b26bcd0b" + } + }, + { + "url": "PD1.15", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "DNR", + "display": "Do not resuscitate" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "N", + "display": "No directive" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "4", + "code": "N", + "display": "No directive" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.15", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "DNR", + "display": "Do not resuscitate" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "N", + "display": "No directive" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "4", + "code": "N", + "display": "No directive" + } + ], + "text": "TEST" + } + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", + "valueHumanName": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "FHIR" + }, + { + "url": "XPN.3", + "valueString": "WI" + }, + { + "url": "XPN.7", + "valueString": "L" + } + ] + } + ], + "use": "official", + "family": "Mind", + "given": [ + "FHIR", + "WI" + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName", + "valueHumanName": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "FHIR" + }, + { + "url": "XPN.3", + "valueString": "WI" + }, + { + "url": "XPN.7", + "valueString": "L" + } + ] + } + ], + "use": "official", + "family": "Mind2x", + "given": [ + "FHIR", + "WI" + ] + } + }, + { + "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70005" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v3-Race", + "code": "2106-3", + "display": "White" + } + ] + } + }, + { + "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70005" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v3-Race", + "code": "2131-1", + "display": "Other Race" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-religion", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70006" + } + ], + "code": "AGN", + "display": "Agnostic" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70189" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0189", + "code": "U", + "display": "Uknown" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70189" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0189", + "code": "AU", + "display": "Also Uknown" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace", + "valueAddress": { + "text": "Bayou" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-citizenship", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.26" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70171" + } + ], + "code": "USA", + "display": "United States" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.26" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70171" + } + ], + "code": "CAN", + "display": "Canada" + } + ] + } + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-citizenship", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.39" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70171" + } + ], + "code": "N", + "display": "None" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.39" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70171" + } + ], + "code": "SN", + "display": "Still None" + } + ] + } + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "forty" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueString": "123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1731029042272209000.1cef4d16-bd86-473b-b83c-1ab46ba1f0fc" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "PI" + }, + { + "url": "CX.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7123" + } + ], + "code": "IX", + "display": "Ninth" + } + ] + } + }, + { + "url": "CX.10", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7123" + } + ], + "code": "X", + "display": "Tenth" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "PI" + } + ] + }, + "system": "STARLIMS.CDC.Stag", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "Patidlist", + "period": { + "start": "2021-01-13", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210113" + } + ] + }, + "end": "2021-12-30", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20211230" + } + ] + } + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "PI" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "PI" + } + ] + }, + "system": "SPHL-000048", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "PID123" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1731029042274008000.c9730404-84b5-4280-aa11-aeae7230d310" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "PI" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "PI" + } + ] + }, + "system": "STARLIMS.CDC.Stag", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "test" + } + ], + "name": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "HL7" + }, + { + "url": "XPN.3", + "valueString": "MI" + }, + { + "url": "XPN.14", + "valueString": "Prof" + }, + { + "url": "XPN.4", + "valueString": "V" + }, + { + "url": "XPN.6", + "valueString": "BCN" + }, + { + "url": "XPN.7", + "valueString": "L" + }, + { + "url": "XPN.8", + "valueString": "Naaame" + }, + { + "url": "XPN.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7444" + } + ], + "code": "C", + "display": "Name Context" + } + ] + } + }, + { + "url": "XPN.10", + "extension": [ + { + "url": "XPN.10.2" + }, + { + "url": "XPN.10.1", + "valueString": "Yes" + } + ] + }, + { + "url": "XPN.12", + "valueString": "19900503" + }, + { + "url": "XPN.13", + "valueString": "20030503" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "Mega", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "Mr" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "MrOwnMega" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "Mrs" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "MrsOwn" + } + ] + }, + "given": [ + "HL7", + "MI" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "V", + "BCN", + "Prof" + ], + "period": { + "start": "1990-05-03", + "end": "2003-05-03" + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "HL7" + }, + { + "url": "XPN.3", + "valueString": "MI" + }, + { + "url": "XPN.14", + "valueString": "Prof" + }, + { + "url": "XPN.4", + "valueString": "V" + }, + { + "url": "XPN.6", + "valueString": "BCN" + }, + { + "url": "XPN.7", + "valueString": "L" + }, + { + "url": "XPN.8", + "valueString": "Naaame" + }, + { + "url": "XPN.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL7444" + } + ], + "code": "C", + "display": "Name Context" + } + ] + } + }, + { + "url": "XPN.10", + "extension": [ + { + "url": "XPN.10.2" + }, + { + "url": "XPN.10.1", + "valueString": "Yes" + } + ] + }, + { + "url": "XPN.12", + "valueString": "19900503" + }, + { + "url": "XPN.13", + "valueString": "20030503" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "Mega", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "Mr" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "MrOwnMega" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "Mrs" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "MrsOwn" + } + ] + }, + "given": [ + "HL7", + "MI" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "V", + "BCN", + "Prof" + ], + "period": { + "start": "1990-05-03", + "end": "2003-05-03" + } + } + ], + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "713" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553861" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "12345" + }, + { + "url": "XTN.2", + "valueString": "PRS" + }, + { + "url": "XTN.3", + "valueString": "CP" + }, + { + "url": "XTN.4", + "valueString": "real@example.com" + }, + { + "url": "XTN.7", + "valueString": "5553861" + }, + { + "url": "XTN.9", + "valueString": "himom" + }, + { + "url": "XTN.11", + "valueString": "4" + }, + { + "url": "XTN.12", + "valueString": "17145553862" + } + ] + } + ], + "system": "phone", + "value": "17145553862", + "use": "home", + "rank": 7, + "period": { + "start": "1999", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "1999" + } + ] + }, + "end": "2000", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2000" + } + ] + } + } + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "714" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553861" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension", + "valueString": "1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "12345" + }, + { + "url": "XTN.2", + "valueString": "PRS" + }, + { + "url": "XTN.3", + "valueString": "CP" + }, + { + "url": "XTN.4", + "valueString": "notreal@example.com" + }, + { + "url": "XTN.7", + "valueString": "5553861" + }, + { + "url": "XTN.9", + "valueString": "himom" + }, + { + "url": "XTN.11", + "valueString": "4" + }, + { + "url": "XTN.12", + "valueString": "17135553862" + } + ] + } + ], + "system": "phone", + "value": "17135553862", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "281" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553861" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "9865" + }, + { + "url": "XTN.2", + "valueString": "EMR" + }, + { + "url": "XTN.3", + "valueString": "SAT" + }, + { + "url": "XTN.4", + "valueString": "alsoreal@exmaple.com" + }, + { + "url": "XTN.7", + "valueString": "5553861" + } + ] + } + ], + "system": "other", + "use": "work" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "40" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.40" + } + ], + "_system": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCode": "unknown" + } + ] + }, + "value": "40" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "41" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.40" + } + ], + "_system": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCode": "unknown" + } + ] + }, + "value": "41" + } + ], + "gender": "female", + "birthDate": "1640", + "_birthDate": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "1640" + } + ] + }, + "deceasedDateTime": "2031", + "_deceasedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2031" + } + ] + }, + "address": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "Census" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "123 Main St" + } + ] + }, + { + "url": "XAD.2", + "valueString": "Altxad" + }, + { + "url": "XAD.7", + "valueCode": "H" + }, + { + "url": "XAD.8", + "valueString": "MahHome" + }, + { + "url": "XAD.11", + "valueCode": "A" + }, + { + "url": "XAD.12", + "extension": [ + { + "url": "XAD.12.1", + "valueString": "2020" + }, + { + "url": "XAD.12.2", + "valueString": "2024" + } + ] + }, + { + "url": "XAD.13", + "valueString": "2022" + }, + { + "url": "XAD.14", + "valueString": "2027" + }, + { + "url": "XAD.19", + "valueCode": "MrSir" + } + ] + } + ], + "use": "home", + "line": [ + "123 Main St", + "Altxad", + "MrSir" + ], + "city": "AnyTown", + "district": "ThoCo", + "state": "IG", + "postalCode": "95802", + "country": "USA", + "period": { + "start": "2022", + "end": "2027" + } + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1234 Main St" + } + ] + }, + { + "url": "XAD.2", + "valueString": "Address 2x" + }, + { + "url": "XAD.7", + "valueCode": "H" + }, + { + "url": "XAD.12", + "extension": [ + { + "url": "XAD.12.1", + "valueString": "2020" + }, + { + "url": "XAD.12.2", + "valueString": "2024" + } + ] + } + ] + } + ], + "use": "home", + "line": [ + "1234 Main St", + "Address 2x" + ], + "city": "AnyTown", + "district": "Thurston County", + "state": "IG", + "postalCode": "95802", + "country": "USA", + "period": { + "start": "2020", + "end": "2024" + } + } + ], + "maritalStatus": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70002" + } + ], + "code": "P", + "display": "Domestic Partnet" + } + ] + }, + "multipleBirthInteger": 11, + "communication": [ + { + "language": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70296" + } + ], + "code": "E", + "display": "English" + } + ] + } + } + ], + "generalPractitioner": [ + { + "reference": "Organization/1731029042275811000.e30e89df-3168-48e5-a793-7f3bca1892b9" + }, + { + "reference": "Organization/1731029042277151000.608595c1-1031-4aff-95ef-28cd62805833" + } + ], + "link": [ + { + "other": { + "reference": "RelatedPerson/1731029042292411000.661fa483-f834-4f80-9850-7b88e6d5bf07" + }, + "type": "seealso" + }, + { + "other": { + "reference": "RelatedPerson/1731029042292650000.97d6703f-1989-480e-be9c-f0d017e0ef9e" + }, + "type": "seealso" + } + ] + } + }, + { + "fullUrl": "Organization/1731029042272209000.1cef4d16-bd86-473b-b83c-1ab46ba1f0fc", + "resource": { + "resourceType": "Organization", + "id": "1731029042272209000.1cef4d16-bd86-473b-b83c-1ab46ba1f0fc", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "STARLINKED.CDC.Stag" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.9.8.7.6.3.2" + } + ] + } + }, + { + "fullUrl": "Organization/1731029042274008000.c9730404-84b5-4280-aa11-aeae7230d310", + "resource": { + "resourceType": "Organization", + "id": "1731029042274008000.c9730404-84b5-4280-aa11-aeae7230d310", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "STARLINKED.CDC.Stag" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.9.8.7.6.3.2" + } + ] + } + }, + { + "fullUrl": "Location/1731029042275069000.ddcf45c9-3c4a-4ce6-9a72-929cd8cab495", + "resource": { + "resourceType": "Location", + "id": "1731029042275069000.ddcf45c9-3c4a-4ce6-9a72-929cd8cab495", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "10.10.40.10.11380.90.22" + } + ], + "name": "Clinic B", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731029042275811000.e30e89df-3168-48e5-a793-7f3bca1892b9", + "resource": { + "resourceType": "Organization", + "id": "1731029042275811000.e30e89df-3168-48e5-a793-7f3bca1892b9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1133-5", + "display": "SomeOtherText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1298-7", + "display": "SomeOtherAltText" + } + ], + "text": "TheOriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1133-5", + "display": "SomeOtherText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "5555" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier3" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "8" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "An Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "45.24.167.43" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "CCTV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042275069000.ddcf45c9-3c4a-4ce6-9a72-929cd8cab495" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "BCVan" + } + ] + }, + "value": "OrgIdentifier3" + } + ], + "name": "Receiving Responsible Org" + } + }, + { + "fullUrl": "Location/1731029042276287000.885d46fb-a834-4cf4-9b84-b8885351e052", + "resource": { + "resourceType": "Location", + "id": "1731029042276287000.885d46fb-a834-4cf4-9b84-b8885351e052", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "10.10.40.10.11380.90.22" + } + ], + "name": "Clinic B", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731029042277151000.608595c1-1031-4aff-95ef-28cd62805833", + "resource": { + "resourceType": "Organization", + "id": "1731029042277151000.608595c1-1031-4aff-95ef-28cd62805833", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1133-5", + "display": "SomeOtherText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1298-7", + "display": "SomeOtherAltText" + } + ], + "text": "TheOriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1133-5", + "display": "SomeOtherText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "5555" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier3" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "8" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "An Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "45.24.167.43" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "CCTV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042276287000.885d46fb-a834-4cf4-9b84-b8885351e052" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "BCVan" + } + ] + }, + "value": "OrgIdentifier3" + } + ], + "name": "Receiving Responsible Org" + } + }, + { + "fullUrl": "Practitioner/1731029042278089000.dcac21f6-7843-4a7d-9e94-f835c89dd949", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042278089000.dcac21f6-7843-4a7d-9e94-f835c89dd949", + "identifier": [ + { + "value": "Bob R.N." + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042279250000.30d1176d-d94b-48a5-bda0-b965e559f312", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042279250000.30d1176d-d94b-48a5-bda0-b965e559f312", + "identifier": [ + { + "value": "Bob R.N." + } + ] + } + }, + { + "fullUrl": "Organization/1731029042283964000.e3b1bba3-e4f7-405e-89e1-d733a478c1b9", + "resource": { + "resourceType": "Organization", + "id": "1731029042283964000.e3b1bba3-e4f7-405e-89e1-d733a478c1b9", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "University H" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.0" + } + ] + } + }, + { + "fullUrl": "Organization/1731029042284454000.a74b8594-2b75-4b7e-b40a-21703482cbd3", + "resource": { + "resourceType": "Organization", + "id": "1731029042284454000.a74b8594-2b75-4b7e-b40a-21703482cbd3", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "SSA" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.184" + } + ] + } + }, + { + "fullUrl": "Location/1731029042285256000.8a4e6c7d-7f23-49a8-93b4-492994dc0f67", + "resource": { + "resourceType": "Location", + "id": "1731029042285256000.8a4e6c7d-7f23-49a8-93b4-492994dc0f67", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731029042285778000.f0325b07-69bd-43a4-b608-75926ed76ef9", + "resource": { + "resourceType": "Organization", + "id": "1731029042285778000.f0325b07-69bd-43a4-b608-75926ed76ef9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "1st OrgIdentifier" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042285256000.8a4e6c7d-7f23-49a8-93b4-492994dc0f67" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "1st OrgIdentifier" + } + ], + "name": "1st Ordering Facility" + } + }, + { + "fullUrl": "Location/1731029042286162000.32b8295e-1c7c-4137-a033-a19ea733c565", + "resource": { + "resourceType": "Location", + "id": "1731029042286162000.32b8295e-1c7c-4137-a033-a19ea733c565", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731029042286633000.1d3d00af-d0be-4208-b248-cb16b26bcd0b", + "resource": { + "resourceType": "Organization", + "id": "1731029042286633000.1d3d00af-d0be-4208-b248-cb16b26bcd0b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "2nd OrgIdentifier" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042286162000.32b8295e-1c7c-4137-a033-a19ea733c565" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "2nd OrgIdentifier" + } + ], + "name": "2nd Ordering Facility" + } + }, + { + "fullUrl": "RelatedPerson/1731029042292411000.661fa483-f834-4f80-9850-7b88e6d5bf07", + "resource": { + "resourceType": "RelatedPerson", + "id": "1731029042292411000.661fa483-f834-4f80-9850-7b88e6d5bf07", + "identifier": [ + { + "value": "maybe" + } + ] + } + }, + { + "fullUrl": "RelatedPerson/1731029042292650000.97d6703f-1989-480e-be9c-f0d017e0ef9e", + "resource": { + "resourceType": "RelatedPerson", + "id": "1731029042292650000.97d6703f-1989-480e-be9c-f0d017e0ef9e", + "identifier": [ + { + "value": "maybe not" + } + ] + } + }, + { + "fullUrl": "Organization/1731029042296068000.218e21be-9d09-4b28-9860-d821b93ca3b2", + "resource": { + "resourceType": "Organization", + "id": "1731029042296068000.218e21be-9d09-4b28-9860-d821b93ca3b2", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "RSDT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "0.0.0.1.1138" + } + ] + } + }, + { + "fullUrl": "Provenance/1731029042311258000.d22bb015-09b4-4420-ad85-3985d2838fae", + "resource": { + "resourceType": "Provenance", + "id": "1731029042311258000.d22bb015-09b4-4420-ad85-3985d2838fae", + "target": [ + { + "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" + } + ], + "occurredDateTime": "2024-08-21T11:38:00Z", + "recorded": "2024-11-07T17:24:02Z", + "activity": { + "coding": [ + { + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "performer" + } + ] + }, + "who": { + "reference": "Organization/1731029042311028000.c8e18451-6def-4300-8585-9061dc6d7d98" + } + } + ] + } + }, + { + "fullUrl": "Organization/1731029042311028000.c8e18451-6def-4300-8585-9061dc6d7d98", + "resource": { + "resourceType": "Organization", + "id": "1731029042311028000.c8e18451-6def-4300-8585-9061dc6d7d98", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "RSDT" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "0.0.0.1.1138" + } + ] + } + }, + { + "fullUrl": "Encounter/1731029042331483000.6ae6a93b-42d4-4a92-978f-005dfe836104", + "resource": { + "resourceType": "Encounter", + "id": "1731029042331483000.6ae6a93b-42d4-4a92-978f-005dfe836104", + "meta": { + "security": [ + { + "code": "SEC" + } + ] + }, + "text": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-visit-description", + "valueString": "Description" + } + ], + "div": "\u003cdiv xmlns\u003d\"http://www.w3.org/1999/xhtml\"\u003eDescription\u003c/div\u003e" + }, + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "413", + "display": "V" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "423", + "display": "X" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-start-date", + "valueDateTime": "2023-06-01T10:25:31-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230601102531-0400" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-discharge-date", + "valueDateTime": "2023-07-01T10:25:31-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230701102531-0400" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/estimated-length", + "valueQuantity": { + "value": 5, + "unit": "days", + "system": "http://unitsofmeasure.org/", + "code": "d" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/publicity-code", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "100", + "display": "PublicCode" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "444", + "display": "MODE" + } + ] + } + } + ], + "code": "444", + "display": "MODE" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/admission-level-of-care", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "123", + "display": "CARELEVEL1" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit", + "extension": [ + { + "url": "PV1.12", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70087" + } + ], + "code": "P", + "display": "Passed" + } + ] + } + }, + { + "url": "PV1.18", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70018" + } + ], + "code": "H", + "display": "Human Patient" + } + ] + } + }, + { + "url": "PV1.46", + "valueDecimal": 100 + }, + { + "url": "PV1.47", + "valueDecimal": 199 + }, + { + "url": "PV1.48", + "valueDecimal": 142 + }, + { + "url": "PV1.49", + "valueDecimal": 130 + }, + { + "url": "PV1.51", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70326" + } + ], + "code": "A", + "display": "Account Level" + } + ] + } + }, + { + "url": "PV1.30", + "valueString": "20020101" + }, + { + "url": "PV1.31", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70021" + } + ], + "code": "C", + "display": "Collectors" + } + ] + } + }, + { + "url": "PV1.32", + "valueDecimal": 1 + }, + { + "url": "PV1.33", + "valueDecimal": 0 + }, + { + "url": "PV1.34", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70111" + } + ], + "code": "Y", + "display": "Yes" + } + ] + } + }, + { + "url": "PV1.35", + "valueString": "20080101" + }, + { + "url": "PV1.39", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70115" + } + ], + "code": "H", + "display": "A Hospital Of Course" + } + ] + } + }, + { + "url": "PV1.41", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70117" + } + ], + "code": "A", + "display": "Active" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-patient-visit-additional-information", + "extension": [ + { + "url": "PV2.15", + "valueString": "EMP_ILL" + }, + { + "url": "PV2.23", + "valueReference": { + "reference": "Organization/1731029042317379000.57926e6d-cb39-43b3-b333-92e2fc4e4d60" + } + }, + { + "url": "PV2.23", + "valueReference": { + "reference": "Organization/1731029042318219000.dba7f4ef-0d77-4a6c-b829-e27e678abd92" + } + }, + { + "url": "PV2.26", + "valueString": "20230501102531-0400" + }, + { + "url": "PV2.29", + "valueString": "20220501102531-0400" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.19" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "VN" + } + ], + "text": "visit number" + }, + "value": "22" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.50" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203" + } + ] + }, + "value": "alternate visit" + } + ], + "status": "finished", + "class": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "O" + } + ] + } + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70007" + } + ], + "code": "R", + "display": "Routine" + } + ] + } + ], + "serviceType": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70069" + } + ], + "code": "URO", + "display": "Urology Service" + } + ] + }, + "priority": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70217" + } + ], + "code": "3", + "display": "Elective" + } + ] + }, + "subject": { + "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" + }, + "episodeOfCare": [ + { + "reference": "EpisodeOfCare/1731029042331847000.1c9c85d5-02ea-481d-8ce5-ca0310f1232f" + } + ], + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ATND", + "display": "attender" + } + ] + } + ], + "individual": { + "reference": "Practitioner/1731029042321088000.86bea183-992c-47f8-8a90-a2882e6020b5" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "REF" + } + ], + "text": "referrer" + } + ], + "individual": { + "reference": "Practitioner/1731029042321600000.0bd1f945-58f3-407b-8f76-58fa7c24e2d5" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "CON" + } + ], + "text": "consultant" + } + ], + "individual": { + "reference": "Practitioner/1731029042322118000.1fd2385d-d3ba-448d-8043-ed9498e9147b" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ADM" + } + ], + "text": "admitter" + } + ], + "individual": { + "reference": "Practitioner/1731029042322587000.cbcaafb8-c6dd-433e-a765-a7fef57754e3" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "REF" + } + ], + "text": "referrer" + } + ], + "individual": { + "reference": "Practitioner/1731029042324738000.6f9e8651-3dbf-4b26-83cc-493209901f1f" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "REF" + } + ], + "text": "referrer" + } + ], + "individual": { + "reference": "Practitioner/1731029042326851000.4ef46635-aadf-44c8-96c9-1002140f0c02" + } + } + ], + "period": { + "start": "2024-08-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20240801102531-0400" + } + ] + }, + "end": "2024-08-01T10:25:31-04:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20240801102531-0400" + } + ] + } + }, + "length": { + "value": 12, + "unit": "days", + "system": "http://unitsofmeasure.org/", + "code": "d" + }, + "reasonCode": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV2.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "1", + "display": "AD" + } + ] + } + ], + "hospitalization": { + "preAdmissionIdentifier": { + "value": "232323" + }, + "admitSource": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70023" + } + ], + "code": "RL", + "display": "Real Life" + } + ] + }, + "reAdmission": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70092" + } + ], + "code": "R", + "display": "Re-admission" + } + ] + }, + "dietPreference": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70114" + } + ], + "code": "F", + "display": "Fed" + } + ] + } + ], + "specialCourtesy": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70099" + } + ], + "code": "VIP", + "display": "Very Interesting Person" + } + ] + } + ], + "destination": { + "reference": "Location/1731029042318728000.71c7d82b-a37b-40e0-8d41-7a5b4a4c853f" + }, + "dischargeDisposition": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70112" + } + ], + "code": "H", + "display": "Happy" + } + ] + } + }, + "location": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.3" + } + ], + "location": { + "reference": "Location/1731029042329136000.d59be87f-e677-4ffb-95b9-168e179c5929" + }, + "status": "active" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.6" + } + ], + "location": { + "reference": "Location/1731029042329907000.6521e046-6cd3-4b61-bb3f-36abf644e146" + }, + "status": "completed" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.11" + }, + { + "url": "https://hl7.org/fhir/StructureDefinition/temporary-location", + "valueBoolean": true + } + ], + "location": { + "reference": "Location/1731029042330143000.deda941e-7806-40ff-b7da-53dc1bac0424" + }, + "status": "active" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.42" + } + ], + "location": { + "reference": "Location/1731029042330364000.f47d2828-8a4f-482e-8903-3cc2c49e240f" + }, + "status": "planned" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.43" + }, + { + "url": "https://hl7.org/fhir/StructureDefinition/temporary-location", + "valueBoolean": true + } + ], + "location": { + "reference": "Location/1731029042330629000.059cde0e-7206-4d2c-8cc8-76af4aa8dc30" + }, + "status": "completed" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV2.1" + }, + { + "url": "https://hl7.org/fhir/StructureDefinition/temporary-location", + "valueBoolean": false + } + ], + "location": { + "reference": "Location/1731029042331393000.1b0a0aef-0bb2-409a-b1b3-4e9a9f79868d" + }, + "status": "planned" + } + ] + } + }, + { + "fullUrl": "Location/1731029042316845000.b1bd2555-f637-4436-94f2-31de851dd740", + "resource": { + "resourceType": "Location", + "id": "1731029042316845000.b1bd2555-f637-4436-94f2-31de851dd740", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731029042317379000.57926e6d-cb39-43b3-b333-92e2fc4e4d60", + "resource": { + "resourceType": "Organization", + "id": "1731029042317379000.57926e6d-cb39-43b3-b333-92e2fc4e4d60", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042316845000.b1bd2555-f637-4436-94f2-31de851dd740" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "123" + } + ], + "name": "Org1" + } + }, + { + "fullUrl": "Location/1731029042317733000.d410255c-e32c-4682-8c53-7bb49f03d289", + "resource": { + "resourceType": "Location", + "id": "1731029042317733000.d410255c-e32c-4682-8c53-7bb49f03d289", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1731029042318219000.dba7f4ef-0d77-4a6c-b829-e27e678abd92", + "resource": { + "resourceType": "Organization", + "id": "1731029042318219000.dba7f4ef-0d77-4a6c-b829-e27e678abd92", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042317733000.d410255c-e32c-4682-8c53-7bb49f03d289" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "123" + } + ], + "name": "Org2" + } + }, + { + "fullUrl": "Location/1731029042318728000.71c7d82b-a37b-40e0-8d41-7a5b4a4c853f", + "resource": { + "resourceType": "Location", + "id": "1731029042318728000.71c7d82b-a37b-40e0-8d41-7a5b4a4c853f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date", + "valueString": "202305061200" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042321088000.86bea183-992c-47f8-8a90-a2882e6020b5", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042321088000.86bea183-992c-47f8-8a90-a2882e6020b5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "UUID" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "B" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.7" + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "Namespace", + "value": "1" + } + ], + "name": [ + { + "use": "official", + "family": "BEETHOVEN", + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042321600000.0bd1f945-58f3-407b-8f76-58fa7c24e2d5", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042321600000.0bd1f945-58f3-407b-8f76-58fa7c24e2d5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.8" + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "MOZART" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042322118000.1fd2385d-d3ba-448d-8043-ed9498e9147b", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042322118000.1fd2385d-d3ba-448d-8043-ed9498e9147b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.9" + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "CHOPIN" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042322587000.cbcaafb8-c6dd-433e-a765-a7fef57754e3", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042322587000.cbcaafb8-c6dd-433e-a765-a7fef57754e3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.17" + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "BACH" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042324738000.6f9e8651-3dbf-4b26-83cc-493209901f1f", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042324738000.6f9e8651-3dbf-4b26-83cc-493209901f1f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.20", + "valueString": "20230501102531-0400" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignJ" + } + ] + } + }, + { + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignA" + } + ] + } + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + }, + { + "url": "XCN.19", + "valueString": "20220501102531-0400" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV2.13" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "BEETHOVEN", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Referral Source Code1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042326851000.4ef46635-aadf-44c8-96c9-1002140f0c02", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042326851000.4ef46635-aadf-44c8-96c9-1002140f0c02", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.20", + "valueString": "20230501102531-0400" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignJ" + } + ] + } + }, + { + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignA" + } + ] + } + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + }, + { + "url": "XCN.19", + "valueString": "20220501102531-0400" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV2.13" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "BEETHOVEN", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Referral Source Code2" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "MD" + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "end": "2023-05-01T10:25:31-04:00" + } + } + ] + } + }, + { + "fullUrl": "Organization/1731029042327268000.d27b16f8-707f-4a7a-a453-fa5ae0640d87", + "resource": { + "resourceType": "Organization", + "id": "1731029042327268000.d27b16f8-707f-4a7a-a453-fa5ae0640d87", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "AA" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "AssigningAUTH" + } + ] + } + }, + { + "fullUrl": "Location/1731029042328589000.972ca0a9-5fd1-4fc9-bf0f-7a6e5a0733a9", + "resource": { + "resourceType": "Location", + "id": "1731029042328589000.972ca0a9-5fd1-4fc9-bf0f-7a6e5a0733a9", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Hospital Assigned" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "ISO" + } + ] + }, + "value": "2.4.4.4" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Location/1731029042328669000.8fdf7293-0845-4db4-8425-88754a36de5a", + "resource": { + "resourceType": "Location", + "id": "1731029042328669000.8fdf7293-0845-4db4-8425-88754a36de5a", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "value": "Building" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" + } + ] + }, + "partOf": { + "reference": "Location/1731029042328589000.972ca0a9-5fd1-4fc9-bf0f-7a6e5a0733a9" + } + } + }, + { + "fullUrl": "Location/1731029042328768000.f827eaa8-19de-4595-a756-1ad8023c0a86", + "resource": { + "resourceType": "Location", + "id": "1731029042328768000.f827eaa8-19de-4595-a756-1ad8023c0a86", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "value": "Floor" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" + } + ] + }, + "partOf": { + "reference": "Location/1731029042328669000.8fdf7293-0845-4db4-8425-88754a36de5a" + } + } + }, + { + "fullUrl": "Location/1731029042328870000.7aa55881-4e74-4ca8-a055-5488cee1ed0f", + "resource": { + "resourceType": "Location", + "id": "1731029042328870000.7aa55881-4e74-4ca8-a055-5488cee1ed0f", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "A" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "C" + } + ] + }, + "value": "Point OF Care" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] + }, + "partOf": { + "reference": "Location/1731029042328768000.f827eaa8-19de-4595-a756-1ad8023c0a86" + } + } + }, + { + "fullUrl": "Location/1731029042328963000.38730984-8c87-4e50-b141-bfb8aa2e11c2", + "resource": { + "resourceType": "Location", + "id": "1731029042328963000.38730984-8c87-4e50-b141-bfb8aa2e11c2", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "1" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "3" + } + ] + }, + "value": "Room" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" + } + ] + }, + "partOf": { + "reference": "Location/1731029042328870000.7aa55881-4e74-4ca8-a055-5488cee1ed0f" + } + } + }, + { + "fullUrl": "Location/1731029042329136000.d59be87f-e677-4ffb-95b9-168e179c5929", + "resource": { + "resourceType": "Location", + "id": "1731029042329136000.d59be87f-e677-4ffb-95b9-168e179c5929", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString": "R" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "B" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "A" + } + ] + }, + "value": "Bed" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "UID4This" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString": "organization" + } + ], + "value": "Comprehensive", + "assigner": { + "reference": "Organization/1731029042327268000.d27b16f8-707f-4a7a-a453-fa5ae0640d87" + } + } + ], + "description": "Totally A Real Location", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" + } + ] + }, + "partOf": { + "reference": "Location/1731029042328963000.38730984-8c87-4e50-b141-bfb8aa2e11c2" + } + } + }, + { + "fullUrl": "Organization/1731029042329521000.1b77c0d0-98fa-46dc-ab3c-dc90ad720cba", + "resource": { + "resourceType": "Organization", + "id": "1731029042329521000.1b77c0d0-98fa-46dc-ab3c-dc90ad720cba", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "ASSIGNEE" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "UUID" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "222.1111.22222" + } + ] + } + }, + { + "fullUrl": "Location/1731029042329907000.6521e046-6cd3-4b61-bb3f-36abf644e146", + "resource": { + "resourceType": "Location", + "id": "1731029042329907000.6521e046-6cd3-4b61-bb3f-36abf644e146", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString": "location type" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Hospital Prio" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "ISO" + } + ] + }, + "value": "2.4.4.4" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NAME" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "UNI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString": "organization" + } + ], + "value": "Entity ID", + "assigner": { + "reference": "Organization/1731029042329521000.1b77c0d0-98fa-46dc-ab3c-dc90ad720cba" + } + } + ], + "status": "active", + "description": "Description", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Location/1731029042330143000.deda941e-7806-40ff-b7da-53dc1bac0424", + "resource": { + "resourceType": "Location", + "id": "1731029042330143000.deda941e-7806-40ff-b7da-53dc1bac0424", + "description": "Its Temporary", + "mode": "instance" + } + }, + { + "fullUrl": "Location/1731029042330364000.f47d2828-8a4f-482e-8903-3cc2c49e240f", + "resource": { + "resourceType": "Location", + "id": "1731029042330364000.f47d2828-8a4f-482e-8903-3cc2c49e240f", + "description": "Pending Location", + "mode": "instance" + } + }, + { + "fullUrl": "Location/1731029042330629000.059cde0e-7206-4d2c-8cc8-76af4aa8dc30", + "resource": { + "resourceType": "Location", + "id": "1731029042330629000.059cde0e-7206-4d2c-8cc8-76af4aa8dc30", + "description": "Prior Location", + "mode": "instance" + } + }, + { + "fullUrl": "Organization/1731029042330973000.322dedc4-abdd-4886-8f07-c7539d8635f7", + "resource": { + "resourceType": "Organization", + "id": "1731029042330973000.322dedc4-abdd-4886-8f07-c7539d8635f7", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "ASSIGNEE" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "UUID" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "222.1111.22222" + } + ] + } + }, + { + "fullUrl": "Location/1731029042331393000.1b0a0aef-0bb2-409a-b1b3-4e9a9f79868d", + "resource": { + "resourceType": "Location", + "id": "1731029042331393000.1b0a0aef-0bb2-409a-b1b3-4e9a9f79868d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", + "valueString": "location type" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Hospital PriorPending" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "ISO" + } + ] + }, + "value": "2.4.4.4" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NAME" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "UNI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString": "organization" + } + ], + "value": "Entity ID", + "assigner": { + "reference": "Organization/1731029042330973000.322dedc4-abdd-4886-8f07-c7539d8635f7" + } + } + ], + "status": "active", + "description": "Description", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "EpisodeOfCare/1731029042331847000.1c9c85d5-02ea-481d-8ce5-ca0310f1232f", + "resource": { + "resourceType": "EpisodeOfCare", + "id": "1731029042331847000.1c9c85d5-02ea-481d-8ce5-ca0310f1232f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.54" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/episode-of-care-name", + "valueString": "Service Description" + } + ], + "identifier": [ + { + "value": "episode identifier" + } + ] + } + }, + { + "fullUrl": "Observation/1731029042509217000.62819b92-2016-4e46-a275-e51fddda8685", + "resource": { + "resourceType": "Observation", + "id": "1731029042509217000.62819b92-2016-4e46-a275-e51fddda8685", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "subid" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test", + "valueId": "ST" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2023-09-12T18:08:02-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230912180802-0400" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "30" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "g", + "display": "gram" + } + ] + } + }, + { + "url": "OBX.27", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79900" + } + ], + "code": "RC", + "display": "root cause" + } + ] + } + }, + { + "url": "OBX.28", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79900" + } + ], + "code": "LPC", + "display": "Local Process" + } + ] + } + }, + { + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.31", + "valueId": "31" + }, + { + "url": "OBX.32", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "32", + "display": "value absent reason" + } + ] + } + }, + { + "url": "OBX.33", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "eip" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "33" + } + }, + { + "url": "OBX.9", + "valueString": "99" + }, + { + "url": "OBX.11", + "valueString": "F" + }, + { + "url": "OBX.12", + "valueString": "20000101" + }, + { + "url": "OBX.13", + "valueString": "user defined" + }, + { + "url": "OBX.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2" + } + ] + } + }, + { + "url": "OBX.18", + "valueReference": { + "reference": "Device/1731029042507173000.2a3e87ca-0da8-4722-b2eb-381bb60e03bf" + } + }, + { + "url": "OBX.20", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "BE", + "display": "Bilateral Ears" + } + ] + } + }, + { + "url": "OBX.26", + "valueId": "26" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.21" + } + ], + "type": { + "coding": [ + { + "code": "FILL" + } + ] + }, + "value": "entity id" + } + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "80383-3", + "display": "Flu B" + } + ] + }, + "subject": { + "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" + }, + "encounter": { + "reference": "Encounter/1731029042331483000.6ae6a93b-42d4-4a92-978f-005dfe836104" + }, + "effectiveDateTime": "2023-01-01T00:00:00Z", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230101000000" + } + ] + }, + "performer": [ + { + "reference": "Organization/1731029042509560000.7c7d07fa-8135-4f91-8f8a-964cd46aa264" + }, + { + "reference": "PractitionerRole/1731029042509684000.e81163de-d00b-4aa9-b6f2-0358240f6108" + }, + { + "reference": "PractitionerRole/1731029042510153000.13b0fc8f-7091-4c15-bb3b-0486c3a1ce5a" + } + ], + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "code": "260415000", + "display": "Not detected" + } + ] + }, + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "UP", + "display": "Up to you" + } + ] + } + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230202" + }, + { + "url": "NTE.8", + "valueString": "20230203" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "This is a coded comment for an observation note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "OBX Note" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "second comment" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "RE", + "display": "Remark" + } + ] + } + } + ], + "authorReference": { + "reference": "Practitioner/1731029042511716000.7b03a377-85af-48ee-98a1-98a6247d56cc" + }, + "time": "2023-02-01", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230201" + } + ] + }, + "text": "OBX Note" + } + ], + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "BE", + "display": "Bilateral Ears" + } + ] + }, + "method": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2" + } + ] + }, + "device": { + "reference": "Device/1731029042512703000.da124198-ccd1-42b6-b3e0-c100f8fcf8e5" + }, + "referenceRange": [ + { + "text": "range of a few" + } + ] + } + }, + { + "fullUrl": "Device/1731029042507173000.2a3e87ca-0da8-4722-b2eb-381bb60e03bf", + "resource": { + "resourceType": "Device", + "id": "1731029042507173000.2a3e87ca-0da8-4722-b2eb-381bb60e03bf", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPTRDEV-001" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.17.840" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Device 001" + } + ] + } + }, + { + "fullUrl": "Organization/1731029042509560000.7c7d07fa-8135-4f91-8f8a-964cd46aa264", + "resource": { + "resourceType": "Organization", + "id": "1731029042509560000.7c7d07fa-8135-4f91-8f8a-964cd46aa264", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "CLIA" + } + ], + "code": "11D1111111", + "display": "CSV uploads" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "CLIA", + "value": "11D1111111" + } + ], + "name": "CSV uploads" + } + }, + { + "fullUrl": "Practitioner/1731029042510009000.f98f138f-5671-44ed-a022-d0eb862ca60c", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042510009000.f98f138f-5671-44ed-a022-d0eb862ca60c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Quinlen" + } + ] + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Frances", + "given": [ + "Quinlen" + ] + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731029042509684000.e81163de-d00b-4aa9-b6f2-0358240f6108", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731029042509684000.e81163de-d00b-4aa9-b6f2-0358240f6108", + "practitioner": { + "reference": "Practitioner/1731029042510009000.f98f138f-5671-44ed-a022-d0eb862ca60c" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/practitioner-role", + "code": "responsibleObserver" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042510466000.d6c46621-d63e-4ace-91b6-7575d3c5b887", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042510466000.d6c46621-d63e-4ace-91b6-7575d3c5b887", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Quinlen" + } + ] + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Mark", + "given": [ + "Quinlen" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1731029042511006000.0e1a49dc-a6ba-4510-88f7-7e207f9a7b45", + "resource": { + "resourceType": "Organization", + "id": "1731029042511006000.0e1a49dc-a6ba-4510-88f7-7e207f9a7b45", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "11D1111111" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CLIA" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.7" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] }, - "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" - } - }, { - "url" : "OBR.33", - "valueReference" : { - "reference" : "PractitionerRole/1729291158931548000.0a58e2a6-5f45-48e8-8eb7-b8331a7c6350" - } - }, { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1729291158932532000.051e3555-203d-4835-9150-46847e25ffcd" - } - }, { - "url" : "OBR.36", - "valueString" : "20230806123359-0500" - }, { - "url" : "OBR.39", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "4438", - "display" : "Collectors Comment" - } ] - } - }, { - "url" : "OBR.39", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "4438", - "display" : "Collectors Comment2" - } ] - } - }, { - "url" : "OBR.44", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" - } ], - "code" : "5019", - "display" : "Procedure Code" - } ] - } - }, { - "url" : "obr-45-procedure-code-modifier", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" - } ], - "code" : "887766", - "display" : "Procedure Code Modifier" - } ] - } - }, { - "url" : "obr-45-procedure-code-modifier", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", - "valueString" : "coding" - } ], - "code" : "887766", - "display" : "Procedure Code Modifier2" - } ] - } - }, { - "url" : "OBR.48", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "71435", - "display" : "Medically Necessary Duplicate Procedure" - } ] - } - }, { - "url" : "OBR.49", - "valueString" : "N" - }, { - "url" : "OBR.50", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "443331", - "display" : "Parent Universal Service Identifier" - } ] - } - }, { - "url" : "OBR.53", - "valueIdentifier" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Placer Order" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.53" - } ], - "value" : "Alt" - } - }, { - "url" : "OBR.53", - "valueIdentifier" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Placer Order2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.53" - } ], - "value" : "Alt" - } - }, { - "url" : "OBR.54", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CSV" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "11D1111111" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Other CSV" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "22D2222222" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "CLIA2" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] + "value": "11D1111111" + } + ], + "name": "CSV uploads-11D1111111", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "2 Second Dr" + } + ] + } + ] + } + ], + "line": [ + "2 Second Dr" + ], + "state": "IG", + "postalCode": "94553", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731029042510153000.13b0fc8f-7091-4c15-bb3b-0486c3a1ce5a", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731029042510153000.13b0fc8f-7091-4c15-bb3b-0486c3a1ce5a", + "practitioner": { + "reference": "Practitioner/1731029042510466000.d6c46621-d63e-4ace-91b6-7575d3c5b887" + }, + "organization": { + "reference": "Organization/1731029042511006000.0e1a49dc-a6ba-4510-88f7-7e207f9a7b45" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042511716000.7b03a377-85af-48ee-98a1-98a6247d56cc", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042511716000.7b03a377-85af-48ee-98a1-98a6247d56cc", + "identifier": [ + { + "value": "Bob R.N.A." + } + ] + } + }, + { + "fullUrl": "Device/1731029042512703000.da124198-ccd1-42b6-b3e0-c100f8fcf8e5", + "resource": { + "resourceType": "Device", + "id": "1731029042512703000.da124198-ccd1-42b6-b3e0-c100f8fcf8e5", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPTRDEV-001" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.17.840" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Device 001" + } + ] + } + }, + { + "fullUrl": "Observation/1731029042514598000.c8593529-7867-45af-8586-0c6a09b4b45e", + "resource": { + "resourceType": "Observation", + "id": "1731029042514598000.c8593529-7867-45af-8586-0c6a09b4b45e", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "subid" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test", + "valueId": "ST" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2023-09-12T18:08:02-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230912180802-0400" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "30" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "g", + "display": "gram" + } + ] + } + }, + { + "url": "OBX.27", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79900" + } + ], + "code": "RC", + "display": "root cause" + } + ] + } + }, + { + "url": "OBX.28", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79900" + } + ], + "code": "LPC", + "display": "Local Process" + } + ] + } + }, + { + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.31", + "valueId": "31" + }, + { + "url": "OBX.32", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "32", + "display": "value absent reason" + } + ] + } + }, + { + "url": "OBX.33", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "eip" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "33" + } + }, + { + "url": "OBX.9", + "valueString": "99" + }, + { + "url": "OBX.11", + "valueString": "F" + }, + { + "url": "OBX.12", + "valueString": "20000101" + }, + { + "url": "OBX.13", + "valueString": "user defined" + }, + { + "url": "OBX.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2" + } + ] + } + }, + { + "url": "OBX.18", + "valueReference": { + "reference": "Device/1731029042513924000.740dfbab-302c-45a8-91e5-e274d06cc3f3" + } + }, + { + "url": "OBX.20", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "BE", + "display": "Bilateral Ears" + } + ] + } + }, + { + "url": "OBX.26", + "valueId": "26" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.21" + } + ], + "type": { + "coding": [ + { + "code": "FILL" + } + ] }, - "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" - } - }, { - "url" : "OBR.11", - "valueString" : "G" - }, { - "url" : "OBR.12", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "512", - "display" : "Danger code" - } ] - } - }, { - "url" : "OBR.13", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "relevent info" - } ] - } - }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1729291158934431000.fd15a4f2-9549-4ee5-832d-709bc029246a" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "260" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "7595016" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "BP" - }, { - "url" : "XTN.7", - "valueString" : "7595016" - }, { - "url" : "XTN.12", - "valueString" : "+1 260 759 5016" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" - } ], - "system" : "pager", - "value" : "+1 260 759 5016", - "use" : "work" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "Internet" - }, { - "url" : "XTN.4", - "valueString" : "order.callback@email.com" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" - } ], - "system" : "email", - "value" : "order.callback@email.com", - "use" : "work" - } - }, { - "url" : "OBR.18", - "valueString" : "placer1" - }, { - "url" : "OBR.19", - "valueString" : "placer2" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } ] + "value": "entity id" + } + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", + "valueCoding": { + "system": "SNOMEDCT", + "code": "6142004", + "display": "Influenza (disorder)" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", + "valueCoding": { + "system": "SNOMEDCT", + "code": "6142004", + "display": "Influenza (disorder)" + } + } + ], + "system": "http://loinc.org", + "code": "80383-3", + "display": "Flu B" + } + ] + }, + "subject": { + "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" }, - "value" : "Specimen123" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] + "encounter": { + "reference": "Encounter/1731029042331483000.6ae6a93b-42d4-4a92-978f-005dfe836104" }, - "value" : "Specimen12311" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] + "effectiveDateTime": "2023-01-01T00:00:00Z", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230101000000" + } + ] + }, + "performer": [ + { + "reference": "Organization/1731029042514917000.99085b5a-c4a7-4f80-bb84-dba529f7031c" + }, + { + "reference": "PractitionerRole/1731029042515031000.5ae3ee26-552d-423f-a62b-cb8480a9dbbf" + }, + { + "reference": "PractitionerRole/1731029042515450000.277df620-686c-4ff8-b771-961b2811afc8" + } + ], + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "code": "260415000", + "display": "Not detected" + } + ] }, - "value" : "Specimen12322" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "UP", + "display": "Up to you" + } + ] + } + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + }, + { + "url": "NTE.7", + "valueString": "20230202" + }, + { + "url": "NTE.8", + "valueString": "20230203" + }, + { + "url": "NTE.9", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "CC", + "display": "This is a coded comment for an observation note" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "OBX Note" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "second comment" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "RE", + "display": "Remark" + } + ] + } + } + ], + "authorReference": { + "reference": "Practitioner/1731029042516892000.5fdb9531-b2fe-44db-889a-12d633a8b5ee" + }, + "time": "2023-02-01", + "_time": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230201" + } + ] + }, + "text": "OBX Note" + } + ], + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70163" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0163", + "code": "BE", + "display": "Bilateral Ears" + } + ] }, - "value" : "Specimen12322" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.33" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } ] + "method": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2" + } + ] }, - "value" : "33" - } ], - "status" : "completed", - "intent" : "order", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "123", - "display" : "Universal service identifier" - } ] - }, - "orderDetail" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.46" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "7461", - "display" : "Placer Supplemental" - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.46" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "7461", - "display" : "Placer Supplemental2" - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.47" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "8811", - "display" : "Fillter Supplemental" - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.47" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "8811", - "display" : "Fillter Supplemental2" - } ] - } ], - "subject" : { - "reference" : "Patient/1729291158722364000.e8c01fe7-7d55-4eaf-b52d-9df910c647ca" - }, - "occurrenceDateTime" : "2022-02-02T10:22:00Z", - "_occurrenceDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202202021022" - } ] - }, - "requester" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.1", - "valueString" : "123" - }, { - "url" : "XTN.4", - "valueString" : "+123" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" - } ], - "system" : "email", - "value" : "123" - } - } ], - "reference" : "PractitionerRole/1729291158917089000.11c90c5e-0ed2-4f77-b6ba-7eedcf0195d9" - }, - "locationCode" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70482" - } ], - "code" : "I", - "display" : "Inpatient Order" - } ] - } ], - "reasonCode" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "3216", - "display" : "ReasonForStudy" - } ] - }, { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "3216", - "display" : "ReasonForStudy2" - } ] - } ], - "supportingInfo" : [ { - "reference" : "Observation/1729291158910998000.27dcecd6-0296-4d0e-9d34-a9b2cdc172a3" - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158917713000.cab4cddf-a711-40a0-a063-4ad646ddf375", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158917713000.cab4cddf-a711-40a0-a063-4ad646ddf375", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "ORC.12Name" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" - } ], - "identifier" : [ { - "value" : "93" - } ], - "name" : [ { - "given" : [ "ORC.12Name" ] - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "111 Road Rd" - } ] - } ] - } ], - "line" : [ "111 Road Rd" ], - "city" : "Roadsville", - "state" : "RD" - } ] - } - }, { - "fullUrl" : "Location/1729291158918001000.d47fb820-ae92-4621-a8e3-b1053ae79193", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158918001000.d47fb820-ae92-4621-a8e3-b1053ae79193", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.114222.8.7.6.5.4.1" - } ], - "name" : "STARLINKS.CDC.Stag", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + "device": { + "reference": "Device/1731029042517591000.2a509bad-1960-461f-8ca5-4bd97dfcd7bf" + }, + "referenceRange": [ + { + "text": "range of a few" + } + ] } - } - }, { - "fullUrl" : "Organization/1729291158918665000.f64034a5-85f2-407e-bc34-76b5da8e2570", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158918665000.f64034a5-85f2-407e-bc34-76b5da8e2570", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "A" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "SPHL-000048" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158918001000.d47fb820-ae92-4621-a8e3-b1053ae79193" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + }, + { + "fullUrl": "Device/1731029042513924000.740dfbab-302c-45a8-91e5-e274d06cc3f3", + "resource": { + "resourceType": "Device", + "id": "1731029042513924000.740dfbab-302c-45a8-91e5-e274d06cc3f3", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPTRDEV-001" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.17.840" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Device 001" + } + ] + } + }, + { + "fullUrl": "Organization/1731029042514917000.99085b5a-c4a7-4f80-bb84-dba529f7031c", + "resource": { + "resourceType": "Organization", + "id": "1731029042514917000.99085b5a-c4a7-4f80-bb84-dba529f7031c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "CLIA" + } + ], + "code": "11D1111111", + "display": "CSV uploads" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "CLIA", + "value": "11D1111111" + } + ], + "name": "CSV uploads" + } + }, + { + "fullUrl": "Practitioner/1731029042515302000.b79b047a-c88f-4830-b0ef-4e6f5acfb947", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042515302000.b79b047a-c88f-4830-b0ef-4e6f5acfb947", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Quinlen" + } + ] + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Frances", + "given": [ + "Quinlen" + ] + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731029042515031000.5ae3ee26-552d-423f-a62b-cb8480a9dbbf", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731029042515031000.5ae3ee26-552d-423f-a62b-cb8480a9dbbf", + "practitioner": { + "reference": "Practitioner/1731029042515302000.b79b047a-c88f-4830-b0ef-4e6f5acfb947" }, - "value" : "SPHL-000048" - } ], - "name" : "CDPH, Viral and Rickettsial Disease Laboratory", - "telecom" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.1", - "valueString" : "456" - }, { - "url" : "XTN.4", - "valueString" : "+456" - } ] - } ], - "system" : "email", - "value" : "456" - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "111 Street St" - } ] - } ] - } ], - "line" : [ "111 Street St" ], - "city" : "Streetsville", - "state" : "ST" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1729291158917089000.11c90c5e-0ed2-4f77-b6ba-7eedcf0195d9", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1729291158917089000.11c90c5e-0ed2-4f77-b6ba-7eedcf0195d9", - "practitioner" : { - "reference" : "Practitioner/1729291158917713000.cab4cddf-a711-40a0-a063-4ad646ddf375" - }, - "organization" : { - "reference" : "Organization/1729291158918665000.f64034a5-85f2-407e-bc34-76b5da8e2570" + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/practitioner-role", + "code": "responsibleObserver" + } + ] + } + ] } - } - }, { - "fullUrl" : "Practitioner/1729291158920752000.024c5626-05c5-45f7-a14c-30b7c81c7700", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158920752000.024c5626-05c5-45f7-a14c-30b7c81c7700", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "ORC.19Name" - } ] - } ], - "identifier" : [ { - "value" : "60" - } ], - "name" : [ { - "given" : [ "ORC.19Name" ] - } ] - } - }, { - "fullUrl" : "Location/1729291158920994000.1f23c2c7-b4de-418c-8a4c-51530300d30e", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158920994000.1f23c2c7-b4de-418c-8a4c-51530300d30e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.114222.8.7.6.5.4.1" - } ], - "name" : "STARLINKS.CDC.Stag", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "fullUrl": "Practitioner/1731029042515771000.5ca8401e-6ed3-4aeb-b197-7a125cb8d510", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042515771000.5ca8401e-6ed3-4aeb-b197-7a125cb8d510", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Quinlen" + } + ] + } + ], + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Mark", + "given": [ + "Quinlen" + ] + } + ] } - } - }, { - "fullUrl" : "Organization/1729291158921164000.d9c2a1ef-fa84-403d-ae73-b9cd9dc7aa6d", - "resource" : { - "resourceType" : "Organization", - "id" : "1729291158921164000.d9c2a1ef-fa84-403d-ae73-b9cd9dc7aa6d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "A" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "SPHL-000048" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1729291158920994000.1f23c2c7-b4de-418c-8a4c-51530300d30e" - } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + }, + { + "fullUrl": "Organization/1731029042516268000.b1a908b0-2a73-4c88-bc19-a4396e9a66b5", + "resource": { + "resourceType": "Organization", + "id": "1731029042516268000.b1a908b0-2a73-4c88-bc19-a4396e9a66b5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "11D1111111" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CLIA" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.7" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "11D1111111" + } + ], + "name": "CSV uploads-11D1111111", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "2 Second Dr" + } + ] + } + ] + } + ], + "line": [ + "2 Second Dr" + ], + "state": "IG", + "postalCode": "94553", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731029042515450000.277df620-686c-4ff8-b771-961b2811afc8", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731029042515450000.277df620-686c-4ff8-b771-961b2811afc8", + "practitioner": { + "reference": "Practitioner/1731029042515771000.5ca8401e-6ed3-4aeb-b197-7a125cb8d510" }, - "value" : "SPHL-000048" - } ], - "name" : "CDPH, Viral and Rickettsial Disease Laboratory" - } - }, { - "fullUrl" : "Practitioner/1729291158922473000.c533de3e-d2ba-44e0-8b6b-453b1576663e", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158922473000.c533de3e-d2ba-44e0-8b6b-453b1576663e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "ORC.10Name" - } ] - } ], - "identifier" : [ { - "value" : "71" - } ], - "name" : [ { - "given" : [ "ORC.10Name" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158922799000.5359badb-22f7-48ba-9960-6e64b3441c64", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158922799000.5359badb-22f7-48ba-9960-6e64b3441c64", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "ORC.11Name" - } ] - } ], - "identifier" : [ { - "value" : "82" - } ], - "name" : [ { - "given" : [ "ORC.11Name" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158923141000.1b20e06c-4c1e-45ab-bb17-2a0f784195bd", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158923141000.1b20e06c-4c1e-45ab-bb17-2a0f784195bd", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "ORC.12Name" - } ] - } ], - "identifier" : [ { - "value" : "93" - } ], - "name" : [ { - "given" : [ "ORC.12Name" ] - } ] - } - }, { - "fullUrl" : "Location/1729291158923548000.01d5590c-8270-4b72-b3c6-37d52d174108", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158923548000.01d5590c-8270-4b72-b3c6-37d52d174108", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "12.12.12" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "L" - } ] + "organization": { + "reference": "Organization/1731029042516268000.b1a908b0-2a73-4c88-bc19-a4396e9a66b5" }, - "value" : "enter location id" - } ], - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" - } ] - } - } ] + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] } - } - }, { - "fullUrl" : "Location/1729291158923690000.bce36e37-6828-4d55-ac5e-c84b72ed8864", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158923690000.bce36e37-6828-4d55-ac5e-c84b72ed8864", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "12.12.12" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Practitioner/1731029042516892000.5fdb9531-b2fe-44db-889a-12d633a8b5ee", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042516892000.5fdb9531-b2fe-44db-889a-12d633a8b5ee", + "identifier": [ + { + "value": "Bob R.N.A." + } + ] + } + }, + { + "fullUrl": "Device/1731029042517591000.2a509bad-1960-461f-8ca5-4bd97dfcd7bf", + "resource": { + "resourceType": "Device", + "id": "1731029042517591000.2a509bad-1960-461f-8ca5-4bd97dfcd7bf", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPTRDEV-001" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.17.840" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Device 001" + } + ] + } + }, + { + "fullUrl": "ServiceRequest/1731029042542077000.4dc1bbff-9f98-4119-acfd-865c22f07f30", + "resource": { + "resourceType": "ServiceRequest", + "id": "1731029042542077000.4dc1bbff-9f98-4119-acfd-865c22f07f30", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "RE" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "20230725" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "OS", + "display": "order status" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ + { + "url": "ORC.5", + "valueString": "CM" + }, + { + "url": "ORC.6", + "valueString": "E" + }, + { + "url": "ORC.19", + "valueReference": { + "reference": "Practitioner/1731029042525342000.150e5a31-c0ff-46d4-a6c4-b0e3e878e291" + } + }, + { + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1731029042527044000.bfa7a20e-da05-41a9-bad1-76fcec5abe1b" + } + }, + { + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "111 Street St" + } + ] + } + ] + } + ], + "line": [ + "111 Street St" + ], + "city": "Streetsville", + "state": "ST" + } + }, + { + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "111 Road Rd" + } + ] + } + ] + } + ], + "line": [ + "111 Road Rd" + ], + "city": "Roadsville", + "state": "RD" + } + }, + { + "url": "ORC.27", + "valueString": "20260404" + }, + { + "url": "ORC.28", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70177" + } + ], + "code": "EMP", + "display": "Employee" + } + ] + } + }, + { + "url": "ORC.30", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding-system", + "valueString": "HL70483" + } + ], + "code": "EL", + "display": "Electronic" + } + ] + } + }, + { + "url": "ORC.31", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70000" + } + ], + "code": "UMM", + "display": "Universal Modifier" + } + ] + } + }, + { + "url": "ORC.32", + "valueString": "20250403" + }, + { + "url": "ORC.8", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "Specimen12333454" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "Specimen12333" + } + }, + { + "url": "ORC.10", + "valueReference": { + "reference": "Practitioner/1731029042528224000.226de79f-df33-46bb-a83d-87e75cdf4b9e" + } + }, + { + "url": "ORC.11", + "valueReference": { + "reference": "Practitioner/1731029042528539000.0cc82500-af2b-416c-a7d3-3ff96fd4c5e4" + } + }, + { + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1731029042528837000.1dc5284b-fc12-46b8-b850-90532cc012a9" + } + }, + { + "url": "ORC.13", + "valueReference": { + "reference": "Location/1731029042529379000.75bcbc72-ac41-4adb-bd62-5b50075ad8e8" + } + }, + { + "url": "ORC.15", + "valueString": "202101021000" + }, + { + "url": "ORC.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "EO", + "display": "entering org text" + } + ] + } + }, + { + "url": "ORC.18", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL79999" + } + ], + "code": "ED", + "display": "entering device text" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.2", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Placer Identifier Namespace" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Placer Universal ID" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Placer Identifier" + } + }, + { + "url": "OBR.3", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Filler Identifier Namespace" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "Filler Universal ID" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "Filler Identifier" + } + }, + { + "url": "OBR.20", + "valueString": "filler1" + }, + { + "url": "OBR.21", + "valueString": "filler2" + }, + { + "url": "OBR.23", + "extension": [ + { + "url": "moc-1-1-monetary-amount", + "valueString": "100" + }, + { + "url": "moc-1-2-monetary-denomination", + "valueString": "$" + }, + { + "url": "moc-2-charge-code", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "16", + "display": "code" + } + ] + } + } + ] + }, + { + "url": "OBR.24", + "valueId": "OTH" + }, + { + "url": "OBR.25", + "valueId": "F" + }, + { + "url": "OBR.26", + "extension": [ + { + "url": "prl-1-parent-observation-identifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "444", + "display": "ParentId" + } + ] + } + }, + { + "url": "prl-2-parent-observation-sub-identifier", + "valueString": "888" + }, + { + "url": "prl-3-parent-observation-descriptor", + "valueString": "ParentOBSdescriptor" + } + ] + }, + { + "url": "OBR.28", + "valueReference": { + "reference": "Practitioner/1731029042530699000.d7f77636-969a-4c51-9188-b32affa94391" + } + }, + { + "url": "OBR.29", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CSV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "11D1111111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Other CSV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "22D2222222" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA2" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + } + }, + { + "url": "OBR.33", + "valueReference": { + "reference": "PractitionerRole/1731029042537733000.6b028e3d-fcd8-456a-8106-8ef2a984bacb" + } + }, + { + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1731029042538572000.90dbb60c-9bb6-4ec0-aec2-341f36e90f04" + } + }, + { + "url": "OBR.36", + "valueString": "20230806123359-0500" + }, + { + "url": "OBR.39", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "4438", + "display": "Collectors Comment" + } + ] + } + }, + { + "url": "OBR.39", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "4438", + "display": "Collectors Comment2" + } + ] + } + }, + { + "url": "OBR.44", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" + } + ], + "code": "5019", + "display": "Procedure Code" + } + ] + } + }, + { + "url": "obr-45-procedure-code-modifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" + } + ], + "code": "887766", + "display": "Procedure Code Modifier" + } + ] + } + }, + { + "url": "obr-45-procedure-code-modifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding", + "valueString": "coding" + } + ], + "code": "887766", + "display": "Procedure Code Modifier2" + } + ] + } + }, + { + "url": "OBR.48", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "71435", + "display": "Medically Necessary Duplicate Procedure" + } + ] + } + }, + { + "url": "OBR.49", + "valueString": "N" + }, + { + "url": "OBR.50", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "443331", + "display": "Parent Universal Service Identifier" + } + ] + } + }, + { + "url": "OBR.53", + "valueIdentifier": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.53" + } + ], + "value": "Alt" + } + }, + { + "url": "OBR.53", + "valueIdentifier": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Placer Order2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.53" + } + ], + "value": "Alt" + } + }, + { + "url": "OBR.54", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CSV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "11D1111111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Other CSV" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "22D2222222" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "CLIA2" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" + } + }, + { + "url": "OBR.11", + "valueString": "G" + }, + { + "url": "OBR.12", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "512", + "display": "Danger code" + } + ] + } + }, + { + "url": "OBR.13", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "relevent info" + } + ] + } + }, + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1731029042540210000.f5efdbc1-b15c-4e43-9db3-089878040a8e" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "BP" + }, + { + "url": "XTN.7", + "valueString": "7595016" + }, + { + "url": "XTN.12", + "valueString": "+1 260 759 5016" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "pager", + "value": "+1 260 759 5016", + "use": "work" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "Internet" + }, + { + "url": "XTN.4", + "valueString": "order.callback@email.com" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "email", + "value": "order.callback@email.com", + "use": "work" + } + }, + { + "url": "OBR.18", + "valueString": "placer1" + }, + { + "url": "OBR.19", + "valueString": "placer2" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" + } + ] + }, + "value": "Specimen123" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" + } + ] + }, + "value": "Specimen12311" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "Specimen12322" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "Specimen12322" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.33" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" + } + ] + }, + "value": "33" + } + ], + "status": "completed", + "intent": "order", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "123", + "display": "Universal service identifier" + } + ] + }, + "orderDetail": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.46" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "7461", + "display": "Placer Supplemental" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.46" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "7461", + "display": "Placer Supplemental2" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.47" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "8811", + "display": "Fillter Supplemental" + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.47" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "8811", + "display": "Fillter Supplemental2" + } + ] + } + ], + "subject": { + "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" + }, + "occurrenceDateTime": "2022-02-02T10:22:00Z", + "_occurrenceDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202202021022" + } + ] + }, + "requester": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "123" + }, + { + "url": "XTN.4", + "valueString": "+123" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" + } + ], + "system": "email", + "value": "123" + } + } + ], + "reference": "PractitionerRole/1731029042522064000.0b6e4396-559d-449f-8457-a4ad44884a34" }, - "value" : "enter location id" - } ], - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" - } ] - } - } ] - }, - "partOf" : { - "reference" : "Location/1729291158923548000.01d5590c-8270-4b72-b3c6-37d52d174108" + "locationCode": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70482" + } + ], + "code": "I", + "display": "Inpatient Order" + } + ] + } + ], + "reasonCode": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "3216", + "display": "ReasonForStudy" + } + ] + }, + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "3216", + "display": "ReasonForStudy2" + } + ] + } + ], + "supportingInfo": [ + { + "reference": "Observation/1731029042509217000.62819b92-2016-4e46-a275-e51fddda8685" + }, + { + "reference": "Observation/1731029042514598000.c8593529-7867-45af-8586-0c6a09b4b45e" + } + ] } - } - }, { - "fullUrl" : "Practitioner/1729291158924936000.f7d9f43a-4887-49ab-8756-ef1d1d1f9e1f", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158924936000.f7d9f43a-4887-49ab-8756-ef1d1d1f9e1f", - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "result", - "_family" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "copiesto" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "NotSoJollyROGER" - } ] + }, + { + "fullUrl": "Practitioner/1731029042522657000.080972e9-fe45-4c4a-8303-15adf38345e5", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042522657000.080972e9-fe45-4c4a-8303-15adf38345e5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.12Name" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" + } + ], + "identifier": [ + { + "value": "93" + } + ], + "name": [ + { + "given": [ + "ORC.12Name" + ] + } + ], + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "111 Road Rd" + } + ] + } + ] + } + ], + "line": [ + "111 Road Rd" + ], + "city": "Roadsville", + "state": "RD" + } + ] + } + }, + { + "fullUrl": "Location/1731029042522912000.df643ba6-84f0-4a74-bf99-c7f16b4a898d", + "resource": { + "resourceType": "Location", + "id": "1731029042522912000.df643ba6-84f0-4a74-bf99-c7f16b4a898d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.114222.8.7.6.5.4.1" + } + ], + "name": "STARLINKS.CDC.Stag", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] } - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158925581000.1c33c538-0576-485b-ad9d-06b8150ba604", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158925581000.1c33c538-0576-485b-ad9d-06b8150ba604", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", - "extension" : [ { - "url" : "CNN.3", - "valueString" : "Results Interpreter" - }, { - "url" : "CNN.4", - "valueString" : "S" - }, { - "url" : "CNN.5", - "valueString" : "ESQ" - }, { - "url" : "CNN.7", - "valueString" : "MD" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "123" - } ], - "name" : [ { - "family" : "Assistant", - "given" : [ "Results Interpreter", "S" ], - "prefix" : [ "DR" ], - "suffix" : [ "ESQ", "MD" ] - } ] - } - }, { - "fullUrl" : "Location/1729291158926027000.dee5bea7-5a46-4d21-821a-4bf064becb60", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158926027000.dee5bea7-5a46-4d21-821a-4bf064becb60", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "Hospital A" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "ISO" - } ] + } + }, + { + "fullUrl": "Organization/1731029042523476000.b6af097c-7449-4c56-a417-0caf14cc1fda", + "resource": { + "resourceType": "Organization", + "id": "1731029042523476000.b6af097c-7449-4c56-a417-0caf14cc1fda", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "A" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "SPHL-000048" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042522912000.df643ba6-84f0-4a74-bf99-c7f16b4a898d" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "SPHL-000048" + } + ], + "name": "CDPH, Viral and Rickettsial Disease Laboratory", + "telecom": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.1", + "valueString": "456" + }, + { + "url": "XTN.4", + "valueString": "+456" + } + ] + } + ], + "system": "email", + "value": "456" + } + ], + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "111 Street St" + } + ] + } + ] + } + ], + "line": [ + "111 Street St" + ], + "city": "Streetsville", + "state": "ST" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1731029042522064000.0b6e4396-559d-449f-8457-a4ad44884a34", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731029042522064000.0b6e4396-559d-449f-8457-a4ad44884a34", + "practitioner": { + "reference": "Practitioner/1731029042522657000.080972e9-fe45-4c4a-8303-15adf38345e5" }, - "value" : "2.16.840.1.113883.9.11" - } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + "organization": { + "reference": "Organization/1731029042523476000.b6af097c-7449-4c56-a417-0caf14cc1fda" + } } - } - }, { - "fullUrl" : "Location/1729291158930548000.af295f16-53b5-4748-b98a-562de34612cd", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158930548000.af295f16-53b5-4748-b98a-562de34612cd", - "identifier" : [ { - "value" : "Building 123" - } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bu" - } ] + }, + { + "fullUrl": "Practitioner/1731029042525342000.150e5a31-c0ff-46d4-a6c4-b0e3e878e291", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042525342000.150e5a31-c0ff-46d4-a6c4-b0e3e878e291", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.19Name" + } + ] + } + ], + "identifier": [ + { + "value": "60" + } + ], + "name": [ + { + "given": [ + "ORC.19Name" + ] + } + ] } - } - }, { - "fullUrl" : "Location/1729291158930874000.8b958775-eb86-426e-beff-0ab25bcd1849", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158930874000.8b958775-eb86-426e-beff-0ab25bcd1849", - "identifier" : [ { - "value" : "Point of Care" - } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" - } ] - } - } ] + }, + { + "fullUrl": "Location/1731029042525561000.55a3f93f-3592-4945-b81d-5c8f584dbb62", + "resource": { + "resourceType": "Location", + "id": "1731029042525561000.55a3f93f-3592-4945-b81d-5c8f584dbb62", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.114222.8.7.6.5.4.1" + } + ], + "name": "STARLINKS.CDC.Stag", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } - } - }, { - "fullUrl" : "Location/1729291158931094000.0c7579ad-e3cb-4868-bb29-a9ade5bcd506", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158931094000.0c7579ad-e3cb-4868-bb29-a9ade5bcd506", - "identifier" : [ { - "value" : "Floor A" - } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "lvl" - } ] + }, + { + "fullUrl": "Organization/1731029042527044000.bfa7a20e-da05-41a9-bad1-76fcec5abe1b", + "resource": { + "resourceType": "Organization", + "id": "1731029042527044000.bfa7a20e-da05-41a9-bad1-76fcec5abe1b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "A" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "SPHL-000048" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1731029042525561000.55a3f93f-3592-4945-b81d-5c8f584dbb62" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "SPHL-000048" + } + ], + "name": "CDPH, Viral and Rickettsial Disease Laboratory" } - } - }, { - "fullUrl" : "Location/1729291158931277000.14b089ea-b623-406c-a101-c2ad4674f37f", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158931277000.14b089ea-b623-406c-a101-c2ad4674f37f", - "identifier" : [ { - "value" : "Room 101" - } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" - } ] + }, + { + "fullUrl": "Practitioner/1731029042528224000.226de79f-df33-46bb-a83d-87e75cdf4b9e", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042528224000.226de79f-df33-46bb-a83d-87e75cdf4b9e", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.10Name" + } + ] + } + ], + "identifier": [ + { + "value": "71" + } + ], + "name": [ + { + "given": [ + "ORC.10Name" + ] + } + ] } - } - }, { - "fullUrl" : "Location/1729291158931473000.923f8586-db44-42a2-b826-9443f81b36ab", - "resource" : { - "resourceType" : "Location", - "id" : "1729291158931473000.923f8586-db44-42a2-b826-9443f81b36ab", - "identifier" : [ { - "value" : "Bed A" - } ], - "status" : "active", - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" - } ] + }, + { + "fullUrl": "Practitioner/1731029042528539000.0cc82500-af2b-416c-a7d3-3ff96fd4c5e4", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042528539000.0cc82500-af2b-416c-a7d3-3ff96fd4c5e4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.11Name" + } + ] + } + ], + "identifier": [ + { + "value": "82" + } + ], + "name": [ + { + "given": [ + "ORC.11Name" + ] + } + ] } - } - }, { - "fullUrl" : "PractitionerRole/1729291158931548000.0a58e2a6-5f45-48e8-8eb7-b8331a7c6350", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1729291158931548000.0a58e2a6-5f45-48e8-8eb7-b8331a7c6350", - "period" : { - "start" : "2023-04-01T10:25:31-04:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230401102531-0400" - } ] + }, + { + "fullUrl": "Practitioner/1731029042528837000.1dc5284b-fc12-46b8-b850-90532cc012a9", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042528837000.1dc5284b-fc12-46b8-b850-90532cc012a9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "ORC.12Name" + } + ] + } + ], + "identifier": [ + { + "value": "93" + } + ], + "name": [ + { + "given": [ + "ORC.12Name" + ] + } + ] + } + }, + { + "fullUrl": "Location/1731029042529208000.e690adea-886e-49eb-bc2d-9aadf32e191f", + "resource": { + "resourceType": "Location", + "id": "1731029042529208000.e690adea-886e-49eb-bc2d-9aadf32e191f", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "12.12.12" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "L" + } + ] + }, + "value": "enter location id" + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] + } + } + }, + { + "fullUrl": "Location/1731029042529379000.75bcbc72-ac41-4adb-bd62-5b50075ad8e8", + "resource": { + "resourceType": "Location", + "id": "1731029042529379000.75bcbc72-ac41-4adb-bd62-5b50075ad8e8", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "12.12.12" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "L" + } + ] + }, + "value": "enter location id" + } + ], + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] }, - "end" : "2023-05-01T10:25:31-04:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230501102531-0400" - } ] + "partOf": { + "reference": "Location/1731029042529208000.e690adea-886e-49eb-bc2d-9aadf32e191f" } - }, - "practitioner" : { - "reference" : "Practitioner/1729291158925581000.1c33c538-0576-485b-ad9d-06b8150ba604" - }, - "location" : [ { - "reference" : "Location/1729291158926027000.dee5bea7-5a46-4d21-821a-4bf064becb60" - }, { - "reference" : "Location/1729291158930548000.af295f16-53b5-4748-b98a-562de34612cd" - }, { - "reference" : "Location/1729291158930874000.8b958775-eb86-426e-beff-0ab25bcd1849" - }, { - "reference" : "Location/1729291158931094000.0c7579ad-e3cb-4868-bb29-a9ade5bcd506" - }, { - "reference" : "Location/1729291158931277000.14b089ea-b623-406c-a101-c2ad4674f37f" - }, { - "reference" : "Location/1729291158931473000.923f8586-db44-42a2-b826-9443f81b36ab" - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158932532000.051e3555-203d-4835-9150-46847e25ffcd", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158932532000.051e3555-203d-4835-9150-46847e25ffcd", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "AssigningSystem" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "LUDWIG" - }, { - "url" : "XCN.4", - "valueString" : "B" - }, { - "url" : "XCN.5", - "valueString" : "2ND" - }, { - "url" : "XCN.7", - "valueString" : "MD" - }, { - "url" : "XCN.8", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "SRC" - } ] - } - }, { - "url" : "XCN.10", - "valueString" : "B" - }, { - "url" : "XCN.15", - "valueString" : "A" - }, { - "url" : "XCN.16", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "NameContext" - } ] - } - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "A" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "NPI" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "DL" - } ] + } + }, + { + "fullUrl": "Practitioner/1731029042530699000.d7f77636-969a-4c51-9188-b32affa94391", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042530699000.d7f77636-969a-4c51-9188-b32affa94391", + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "result", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "copiesto" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "NotSoJollyROGER" + } + ] + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042531298000.2c40837c-9a34-4ba8-80df-254b9cfc56ba", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042531298000.2c40837c-9a34-4ba8-80df-254b9cfc56ba", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", + "extension": [ + { + "url": "CNN.3", + "valueString": "Results Interpreter" + }, + { + "url": "CNN.4", + "valueString": "S" + }, + { + "url": "CNN.5", + "valueString": "ESQ" + }, + { + "url": "CNN.7", + "valueString": "MD" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "123" + } + ], + "name": [ + { + "family": "Assistant", + "given": [ + "Results Interpreter", + "S" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "ESQ", + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Location/1731029042531739000.ff593e46-fba9-4ab8-b081-14f110197901", + "resource": { + "resourceType": "Location", + "id": "1731029042531739000.ff593e46-fba9-4ab8-b081-14f110197901", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Hospital A" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "ISO" + } + ] + }, + "value": "2.16.840.1.113883.9.11" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Location/1731029042536429000.63204f0c-9090-4d6c-b357-8a741dc150e7", + "resource": { + "resourceType": "Location", + "id": "1731029042536429000.63204f0c-9090-4d6c-b357-8a741dc150e7", + "identifier": [ + { + "value": "Building 123" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bu" + } + ] + } + } + }, + { + "fullUrl": "Location/1731029042536823000.932a63be-8d92-41c9-a014-2c148ce90a7d", + "resource": { + "resourceType": "Location", + "id": "1731029042536823000.932a63be-8d92-41c9-a014-2c148ce90a7d", + "identifier": [ + { + "value": "Point of Care" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] + } + } + }, + { + "fullUrl": "Location/1731029042537307000.c51fce2f-bfa1-4a89-bd3b-34d61e6f199c", + "resource": { + "resourceType": "Location", + "id": "1731029042537307000.c51fce2f-bfa1-4a89-bd3b-34d61e6f199c", + "identifier": [ + { + "value": "Floor A" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "lvl" + } + ] + } + } + }, + { + "fullUrl": "Location/1731029042537492000.be6c8864-6928-49ee-b594-c60c731fa7d6", + "resource": { + "resourceType": "Location", + "id": "1731029042537492000.be6c8864-6928-49ee-b594-c60c731fa7d6", + "identifier": [ + { + "value": "Room 101" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" + } + ] + } + } + }, + { + "fullUrl": "Location/1731029042537660000.246e80fe-663d-455a-bad0-cf4072c015d0", + "resource": { + "resourceType": "Location", + "id": "1731029042537660000.246e80fe-663d-455a-bad0-cf4072c015d0", + "identifier": [ + { + "value": "Bed A" + } + ], + "status": "active", + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" + } + ] + } + } + }, + { + "fullUrl": "PractitionerRole/1731029042537733000.6b028e3d-fcd8-456a-8106-8ef2a984bacb", + "resource": { + "resourceType": "PractitionerRole", + "id": "1731029042537733000.6b028e3d-fcd8-456a-8106-8ef2a984bacb", + "period": { + "start": "2023-04-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230401102531-0400" + } + ] + }, + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" + } + ] + } }, - "system" : "urn:oid:AssigningSystem", - "value" : "1" - } ], - "name" : [ { - "use" : "official", - "family" : "Collector", - "_family" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Identifier" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "ROGER" - } ] + "practitioner": { + "reference": "Practitioner/1731029042531298000.2c40837c-9a34-4ba8-80df-254b9cfc56ba" }, - "given" : [ "LUDWIG", "B" ], - "prefix" : [ "DR" ], - "suffix" : [ "2ND", "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1729291158934431000.fd15a4f2-9549-4ee5-832d-709bc029246a", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1729291158934431000.fd15a4f2-9549-4ee5-832d-709bc029246a", - "identifier" : [ { - "value" : "1" - } ], - "name" : [ { - "family" : "Ordering", - "_family" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString" : "VAN" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString" : "Provider" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString" : "VAL" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString" : "JollyROGER" - } ] - } - } ] + "location": [ + { + "reference": "Location/1731029042531739000.ff593e46-fba9-4ab8-b081-14f110197901" + }, + { + "reference": "Location/1731029042536429000.63204f0c-9090-4d6c-b357-8a741dc150e7" + }, + { + "reference": "Location/1731029042536823000.932a63be-8d92-41c9-a014-2c148ce90a7d" + }, + { + "reference": "Location/1731029042537307000.c51fce2f-bfa1-4a89-bd3b-34d61e6f199c" + }, + { + "reference": "Location/1731029042537492000.be6c8864-6928-49ee-b594-c60c731fa7d6" + }, + { + "reference": "Location/1731029042537660000.246e80fe-663d-455a-bad0-cf4072c015d0" + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042538572000.90dbb60c-9bb6-4ec0-aec2-341f36e90f04", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042538572000.90dbb60c-9bb6-4ec0-aec2-341f36e90f04", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "AssigningSystem" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "system": "urn:oid:AssigningSystem", + "value": "1" + } + ], + "name": [ + { + "use": "official", + "family": "Collector", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Identifier" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1731029042540210000.f5efdbc1-b15c-4e43-9db3-089878040a8e", + "resource": { + "resourceType": "Practitioner", + "id": "1731029042540210000.f5efdbc1-b15c-4e43-9db3-089878040a8e", + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Ordering", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Provider" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "JollyROGER" + } + ] + } + } + ] + } } - } ] + ] } \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7 index 44981ed2f2f..003877c1bbe 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7 +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7 @@ -1,10 +1,13 @@ MSH|^~\&|OrderingFacilityApplicationName^2.16.840.1.114222.XXX^ISO|OrderingFacilityName^2.16.840.1.114222.XXX^ISO|txdshslabNBS^2.16.840.1.114222.4.1.181960.2^ISO|txdshslab^2.16.840.1.114222.4.1.181960^ISO|20190720091229|msh8placeholder|ORM^O01^ORM_O01|0123|P^A|2.5.1|42|msh14placeholder|AL|AL|FR|UNICODE UTF-8|ENG^English^ISO^altE^altEnglish^altISO^131^313^originaltext^2ndalt^Second Alt|UNICODE UTF-16|PHLabReport-NoAck^PHIN^2.16.840.1.113883.9.11^ISO|Sending Responsible Org^1357-9&SomeText&LN&2468-5&SomeAltText&LN&1&2&OriginalText^1111^9^BCV^The Authority&4.2.8.2&ISO^BC^Clinic A&1.8.440.1.1138.9.22&ISO^NameRepCode1^OrgIdentifier2|Receiving Responsible Org^1133-5&SomeOtherText&LN&1298-7&SomeOtherAltText&LN&1&2&TheOriginalText^5555^8^CCTV^An Authority&45.24.167.43&ISO^BCVan^Clinic B&10.10.40.10.11380.90.22&ISO^NameRepCode2^OrgIdentifier3|SendingNetworkAddress^1.23.987.1.114222.XXX^ISO|ReceivingNetworkAddress^9.87.123.1.114222.XXX^ISO -PID|1||Patidlist^forty^123^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO^20210113^20211230^IX&Ninth&HL7123^X&Tenth&HL7123~PID123^^^SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^PI||Mega&Mr&MrOwnMega&Mrs&MrsOwn^HL7^MI^V^DR^BCN^L^Naaame^C&Name Context&HL7444^Yes^G^19900503^20030503^Prof|Mind^FHIR^WI^^^^L|1640|F^Female^HL70001||2106-3^White^HL70005|123 Main St^Altxad^AnyTown^IG^95802^USA^H^MahHome^ThoCo^Census^A^2020&2024^2022^2027^^^^^MrSir||12345^PRS^CP^real@example.com^1^713^5553861^1^himom^^4^17135553862^1999^2000^^^^7|9865^EMR^SAT^alsoreal@exmaple.com^1^281^5553861|E^English^HL70296|P^Domestic Partnet^HL70002|AGN^Agnostic^HL70006|32|||maybe|U^Uknown^HL70189|Bayou|Y|11|USA^United States^HL70171|NA^Not Applicable^HL70172|A^American^HL70212|2031|Y|N|AL^Alias^HL70445|202408211138|RSDT^0.0.0.1.1138^ISO|D^Dog^HL70446|||RA^Racing^HL70429|N^None^HL70171|40 -PD1|C^Small Children Dependent^HL70223^M^Medical Supervision Required^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3~O^Other^HL70223^U^Unknown^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3|A^Alone^HL70220^F^Family^HL70220^2.5.1^4^TEST^F^Family^HL70220^2.5.1^8.44.235.1.113883.3.3|Receiving Responsible Org^1133-5&SomeOtherText&LN&1298-7&SomeOtherAltText&LN&1&2&TheOriginalText^5555^8^CCTV^An Authority&45.24.167.43&ISO^BCVan^Clinic B&10.10.40.10.11380.90.22&ISO^NameRepCode2^OrgIdentifier3||F^Full-time student^HL70231^N^Not a student^HL70231^2.5.1^4^TEST^N^Not a student^HL70231^2.5.1^8.44.235.1.113883.3.3|T^TEST^HL70295^P^Prod^HL70295^2.5.1^4^TEST^D^Debug^HL70295^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient has a living will but it is not on file^HL70315^I^No, patient does not have a living will but information was provided^HL70315^2.5.1^4^TEST^U^Unknown^HL70315^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient is a documented donor, but documentation is not on file^HL70316^I^No, patient is not a documented donor, but information was provided^HL70316^2.5.1^4^TEST^U^Unknown^HL70316^2.5.1^8.44.235.1.113883.3.3|N|18547545^^^NIST MPI&2.16.840.1.113883.3.72.5.30.2&ISO^MR^University H&2.16.840.1.113883.3.0&ISO~111111111^^^SSN&2.16.840.1.113883.4.1&ISO^SS^SSA&2.16.840.1.113883.3.184&ISO|F^Family only^HL70215^N^No Publicity^HL70215^2.5.1^4^TEST^U^Unknown^HL70215^2.5.1^8.44.235.1.113883.3.3|N|20230501102531-0400|1st Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^1st OrgIdentifier~2nd Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^2nd OrgIdentifier|DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3~DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3|A^Active^HL70441^I^Inactive^HL70441^2.5.1^4^TEST^O^Other^HL70441^2.5.1^8.44.235.1.113883.3.3|20230501102532-0400|20230501102533-0400|AUSA^Australian Army^HL70140^AUSFA^Australian Air Force^HL70140^2.5.1^4^TEST^AUSN^Australian Navy^HL70140^2.5.1^8.44.235.1.113883.3.3|E1... E9^Enlisted^HL70141^O1 ... O9^Officers^HL70141^2.5.1^4^TEST^W1 ... W4^Warrent Officers^HL70141^2.5.1^8.44.235.1.113883.3.3|ACT^Active duty^HL70142^DEC^Deceased^HL70142^2.5.1^4^TEST^RET^Retired^HL70142^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400 +PID|1||Patidlist^forty^123^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO^20210113^20211230^IX&Ninth&HL7123^X&Tenth&HL7123~PID123^^^SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^PI~test^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO||Mega&Mr&MrOwnMega&Mrs&MrsOwn^HL7^MI^V^DR^BCN^L^Naaame^C&Name Context&HL7444^Yes^G^19900503^20030503^Prof~Mega&Mr&MrOwnMega&Mrs&MrsOwn^HL7^MI^V^DR^BCN^L^Naaame^C&Name Context&HL7444^Yes^G^19900503^20030503^Prof|Mind^FHIR^WI^^^^L~Mind2x^FHIR^WI^^^^L|1640|F^Female^HL70001||2106-3^White^HL70005~2131-1^Other Race^HL70005|123 Main St^Altxad^AnyTown^IG^95802^USA^H^MahHome^ThoCo^Census^A^2020&2024^2022^2027^^^^^MrSir~1234 Main St^Address 2x^AnyTown^IG^95802^USA^H^^Thurston County^^^2020&2024||12345^PRS^CP^real@example.com^1^713^5553861^1^himom^^4^17145553862^1999^2000^^^^7~12345^PRS^CP^notreal@example.com^1^714^5553861^1^himom^^4^17135553862|9865^EMR^SAT^alsoreal@exmaple.com^1^281^5553861|E^English^HL70296|P^Domestic Partnet^HL70002|AGN^Agnostic^HL70006|32|||maybe~maybe not|U^Uknown^HL70189~AU^Also Uknown^HL70189|Bayou|Y|11|USA^United States^HL70171~CAN^Canada^HL70171|NA^Not Applicable^HL70172|A^American^HL70212|2031|Y|N|AL^Alias^HL70445~UA^Unknown^HL70445|202408211138|RSDT^0.0.0.1.1138^ISO|D^Dog^HL70446|||RA^Racing^HL70429|N^None^HL70171~SN^Still None^HL70171|40~41 +PD1|C^Small Children Dependent^HL70223^M^Medical Supervision Required^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3~O^Other^HL70223^U^Unknown^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3|A^Alone^HL70220^F^Family^HL70220^2.5.1^4^TEST^F^Family^HL70220^2.5.1^8.44.235.1.113883.3.3|Receiving Responsible Org^1133-5&SomeOtherText&LN&1298-7&SomeOtherAltText&LN&1&2&TheOriginalText^5555^8^CCTV^An Authority&45.24.167.43&ISO^BCVan^Clinic B&10.10.40.10.11380.90.22&ISO^NameRepCode2^OrgIdentifier3~Receiving Responsible Org^1133-5&SomeOtherText&LN&1298-7&SomeOtherAltText&LN&1&2&TheOriginalText^5555^8^CCTV^An Authority&45.24.167.43&ISO^BCVan^Clinic B&10.10.40.10.11380.90.22&ISO^NameRepCode2^OrgIdentifier3||F^Full-time student^HL70231^N^Not a student^HL70231^2.5.1^4^TEST^N^Not a student^HL70231^2.5.1^8.44.235.1.113883.3.3|T^TEST^HL70295^P^Prod^HL70295^2.5.1^4^TEST^D^Debug^HL70295^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient has a living will but it is not on file^HL70315^I^No, patient does not have a living will but information was provided^HL70315^2.5.1^4^TEST^U^Unknown^HL70315^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient is a documented donor, but documentation is not on file^HL70316^I^No, patient is not a documented donor, but information was provided^HL70316^2.5.1^4^TEST^U^Unknown^HL70316^2.5.1^8.44.235.1.113883.3.3|N|18547545^^^NIST MPI&2.16.840.1.113883.3.72.5.30.2&ISO^MR^University H&2.16.840.1.113883.3.0&ISO~111111111^^^SSN&2.16.840.1.113883.4.1&ISO^SS^SSA&2.16.840.1.113883.3.184&ISO|F^Family only^HL70215^N^No Publicity^HL70215^2.5.1^4^TEST^U^Unknown^HL70215^2.5.1^8.44.235.1.113883.3.3|N|20230501102531-0400|1st Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^1st OrgIdentifier~2nd Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^2nd OrgIdentifier|DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3~DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3|A^Active^HL70441^I^Inactive^HL70441^2.5.1^4^TEST^O^Other^HL70441^2.5.1^8.44.235.1.113883.3.3|20230501102532-0400|20230501102533-0400|AUSA^Australian Army^HL70140^AUSFA^Australian Air Force^HL70140^2.5.1^4^TEST^AUSN^Australian Navy^HL70140^2.5.1^8.44.235.1.113883.3.3|E1... E9^Enlisted^HL70141^O1 ... O9^Officers^HL70141^2.5.1^4^TEST^W1 ... W4^Warrent Officers^HL70141^2.5.1^8.44.235.1.113883.3.3|ACT^Active duty^HL70142^DEC^Deceased^HL70142^2.5.1^4^TEST^RET^Retired^HL70142^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400 NTE|1|L|Accession level coment.|RE^Remark^HL70364^z^x^y^2.5.1^a^b|Bob R.N.|20230531|20230601|20350201|CC^Coded comment for patient note +NTE|2|L|Accession level coment 2|RE^Remark^HL70364^z^x^y^2.5.1^a^b|Bob R.N.|20230531|20230601|20350201|CC^Coded comment for patient note PV1|1|O|A&Point OF Care&C^1&Room&3^B&Bed&A^Hospital Assigned&2.4.4.4&ISO^^R^&Building^&Floor^Totally A Real Location^Comprehensive&&UID4This^AA&AssigningAUTH&ISO|R^Routine^HL70007|232323|^^^Hospital Prio&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID|1^BEETHOVEN^LUDWIG^B^2ND^DR^MD^^Namespace&AssigningSystem&UUID^B^^^DL^^^^^^^^MD|1^MOZART|1^CHOPIN|URO^Urology Service^HL70069|^^^^^^^^Its Temporary|P^Passed^HL70087|R^Re-admission^HL70092|RL^Real Life^HL70023||VIP^Very Interesting Person^HL70099|1^BACH|H^Human Patient^HL70018|22|||||||||||20020101|C^Collectors^HL70021|1|0|Y^Yes^HL70111|20080101|H^Happy^HL70112|^202305061200|F^Fed^HL70114|H^A Hospital Of Course^HL70115||A^Active^HL70117|^^^^^^^^Pending Location|^^^^^^^^Prior Location|20240801102531-0400|20240801102531-0400|100|199|142|130|alternate visit|A^Account Level^HL70326||Service Description|episode identifier PV2|^^^Hospital PriorPending&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID||1^AD||||413^V~423^X|20230601102531-0400|20230701102531-0400|5|12|Description|1^BEETHOVEN&VAN&Referral Source Code1&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^BEETHOVEN&VAN&Referral Source Code2&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||EMP_ILL||||||100^PublicCode|SEC|Org1^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO~Org2^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO||3^Elective^HL70217|20230501102531-0400|||20220501102531-0400|||||||||444^MODE||123^CARELEVEL1 ORC|RE|Specimen123^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12311^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12322^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|CM|E||Specimen12333&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^Specimen12333454&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO|20230725|71^^ORC.10Name|82^^ORC.11Name|93^^ORC.12Name|12.12.12&enter location id&L|123^^^+123|202101021000||EO^entering org text^HL79999|ED^entering device text^HL79999|60^^ORC.19Name||CDPH, Viral and Rickettsial Disease Laboratory^^^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^XX^STARLINKS.CDC.Stag&2.16.840.1.114222.8.7.6.5.4.1&ISO^A^SPHL-000048|111 Street St^^Streetsville^ST|456^^^+456|111 Road Rd^^Roadsville^RD|OS^order status^HL79999||20260404|EMP^Employee^HL70177|I^Inpatient Order^HL70482|EL^Electronic^HL70483|UMM^Universal Modifier^HL70000|20250403|33 OBR|1|Placer Identifier^Placer Identifier Namespace^Placer Universal ID^ISO|Filler Identifier^Filler Identifier Namespace^Filler Universal ID^ISO|123^Universal service identifier||202202021022||||1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext|G|512^Danger code|relevent info|||1^Ordering&VAN&Provider&VAL&JollyROGER|^WPN^BP^^1^260^7595016^^^^^+1 260 759 5016~^WPN^Internet^order.callback@email.com|placer1|placer2|filler1|filler2||100&$^16&code|OTH|F|444&ParentId^888^ParentOBSdescriptor||1^result&VAN&copiesto&VAL&NotSoJollyROGER|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2||3216^ReasonForStudy~3216^ReasonForStudy2||123&Assistant&Results Interpreter&S&ESQ&DR&MD&&Assigning Authority&2.1.4.1&ISO^20230401102531-0400^20230501102531-0400^Point of Care^Room 101^Bed A^Hospital A&2.16.840.1.113883.9.11&ISO^active^^Building 123^Floor A|||20230806123359-0500|||4438^Collectors Comment~4438^Collectors Comment2|||||5019^Procedure Code|887766^Procedure Code Modifier~887766^Procedure Code Modifier2|7461^Placer Supplemental~7461^Placer Supplemental2|8811^Fillter Supplemental~8811^Fillter Supplemental2|71435^Medically Necessary Duplicate Procedure|N|443331^Parent Universal Service Identifier|||Alt^Placer Order~Alt^Placer Order2|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2 OBX|1|CWE|80383-3^Flu B^LN|subid|260415000^Not detected^SCT|g^gram^HL79999|range of a few|UP^Up to you|99|ST|F|20000101|user defined|20230101000000|11D1111111^CSV uploads^CLIA|1^Frances^Quinlen|^BD Veritor System for Rapid Detection of SARS-CoV-2|Device 001^SPTRDEV-001^2.17.840^ISO|20230912180802-0400|BE^Bilateral Ears^HL70163|entity id||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen|26|RC^root cause^HL79900|LPC^Local Process^HL79900|QST|30|31|32^value absent reason|33^eip -NTE|1|L|OBX Note|RE^Remark|Bob R.N.A.|20230201|20230202|20230203|CC^This is a coded comment for an observation note \ No newline at end of file +NTE|1|L|OBX Note~second comment|RE^Remark|Bob R.N.A.|20230201|20230202|20230203|CC^This is a coded comment for an observation note +OBX|2|CWE|80383-3^Flu B^LN|subid|260415000^Not detected^SCT|g^gram^HL79999|range of a few|UP^Up to you|99|ST|F|20000101|user defined|20230101000000|11D1111111^CSV uploads^CLIA|1^Frances^Quinlen|^BD Veritor System for Rapid Detection of SARS-CoV-2|Device 001^SPTRDEV-001^2.17.840^ISO|20230912180802-0400|BE^Bilateral Ears^HL70163|entity id||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen|26|RC^root cause^HL79900|LPC^Local Process^HL79900|QST|30|31|32^value absent reason|33^eip +NTE|1|L|OBX Note~second comment|RE^Remark|Bob R.N.A.|20230201|20230202|20230203|CC^This is a coded comment for an observation note \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir index 650ccf43797..1165b38bc18 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir @@ -5635,6 +5635,18 @@ "system" : "email", "value" : "MWaKabon@placer.ca.gov" } + }, + { + "url" : "OBR.7", + "valueDateTime" : "2023-07-24T15:24:00Z", + "_valueDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202307241524" + } + ] + } } ] } @@ -6224,6 +6236,12 @@ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", "extension" : [ + { + "url" : "OBR.16", + "valueReference" : { + "reference" : "Practitioner/1731693452435563000.a1c0b0dd-bd8a-4229-a55c-a3f6f0cea9ec" + } + }, { "url" : "OBR.22", "valueString" : "202308021726-0400" @@ -6233,9 +6251,15 @@ "valueId" : "F" }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1716964508680805000.39455907-1413-4e43-9f80-c88959094250" + "url" : "OBR.7", + "valueDateTime" : "2023-07-24T15:24:00Z", + "_valueDateTime" : { + "extension" : [ + { + "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString" : "202307241524" + } + ] } } ] @@ -6558,10 +6582,10 @@ } }, { - "fullUrl" : "Practitioner/1716964508680805000.39455907-1413-4e43-9f80-c88959094250", + "fullUrl" : "Practitioner/1731693452435563000.a1c0b0dd-bd8a-4229-a55c-a3f6f0cea9ec", "resource" : { "resourceType" : "Practitioner", - "id" : "1716964508680805000.39455907-1413-4e43-9f80-c88959094250", + "id" : "1731693452435563000.a1c0b0dd-bd8a-4229-a55c-a3f6f0cea9ec", "extension" : [ { "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", From 5b0d24ada7dbee41a1e877cc0f8dfe126f7ffd60 Mon Sep 17 00:00:00 2001 From: david-navapbc <165852085+david-navapbc@users.noreply.github.com> Date: Fri, 22 Nov 2024 12:04:25 -0700 Subject: [PATCH 18/34] 21 nov 24 dependabot (#16625) * Bump jacksonVersion from 2.18.0 to 2.18.1 in /prime-router Bumps `jacksonVersion` from 2.18.0 to 2.18.1. Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-yaml` from 2.18.0 to 2.18.1 - [Commits](https://github.com/FasterXML/jackson-dataformats-text/compare/jackson-dataformats-text-2.18.0...jackson-dataformats-text-2.18.1) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.18.0 to 2.18.1 - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Bump com.microsoft.azure:applicationinsights-web in /submissions Bumps [com.microsoft.azure:applicationinsights-web](https://github.com/Microsoft/ApplicationInsights-Java) from 3.5.4 to 3.6.2. - [Release notes](https://github.com/Microsoft/ApplicationInsights-Java/releases) - [Changelog](https://github.com/microsoft/ApplicationInsights-Java/blob/main/CHANGELOG.md) - [Commits](https://github.com/Microsoft/ApplicationInsights-Java/compare/3.5.4...3.6.2) --- updated-dependencies: - dependency-name: com.microsoft.azure:applicationinsights-web dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Bump com.microsoft.azure:applicationinsights-runtime-attach Bumps [com.microsoft.azure:applicationinsights-runtime-attach](https://github.com/Microsoft/ApplicationInsights-Java) from 3.5.4 to 3.6.2. - [Release notes](https://github.com/Microsoft/ApplicationInsights-Java/releases) - [Changelog](https://github.com/microsoft/ApplicationInsights-Java/blob/main/CHANGELOG.md) - [Commits](https://github.com/Microsoft/ApplicationInsights-Java/compare/3.5.4...3.6.2) --- updated-dependencies: - dependency-name: com.microsoft.azure:applicationinsights-runtime-attach dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Bump com.azure.spring:spring-cloud-azure-dependencies in /auth Bumps [com.azure.spring:spring-cloud-azure-dependencies](https://github.com/Azure/azure-sdk-for-java) from 5.16.0 to 5.18.0. - [Release notes](https://github.com/Azure/azure-sdk-for-java/releases) - [Commits](https://github.com/Azure/azure-sdk-for-java/compare/spring-cloud-azure_5.16.0...spring-messaging-azure_5.18.0) --- updated-dependencies: - dependency-name: com.azure.spring:spring-cloud-azure-dependencies dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Bump the hapifhir group across 1 directory with 3 updates Bumps the hapifhir group with 3 updates in the /prime-router directory: ca.uhn.hapi.fhir:hapi-fhir-structures-r4, ca.uhn.hapi.fhir:hapi-fhir-caching-caffeine and ca.uhn.hapi.fhir:hapi-fhir-client. Updates `ca.uhn.hapi.fhir:hapi-fhir-structures-r4` from 7.4.2 to 7.4.5 Updates `ca.uhn.hapi.fhir:hapi-fhir-caching-caffeine` from 7.4.2 to 7.4.5 Updates `ca.uhn.hapi.fhir:hapi-fhir-client` from 7.4.2 to 7.4.5 --- updated-dependencies: - dependency-name: ca.uhn.hapi.fhir:hapi-fhir-structures-r4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: hapifhir - dependency-name: ca.uhn.hapi.fhir:hapi-fhir-caching-caffeine dependency-type: direct:production update-type: version-update:semver-patch dependency-group: hapifhir - dependency-name: ca.uhn.hapi.fhir:hapi-fhir-client dependency-type: direct:production update-type: version-update:semver-patch dependency-group: hapifhir ... Signed-off-by: dependabot[bot] * Bump the bouncycastle group in /prime-router with 3 updates Bumps the bouncycastle group in /prime-router with 3 updates: [org.bouncycastle:bcprov-jdk15to18](https://github.com/bcgit/bc-java), [org.bouncycastle:bcprov-jdk18on](https://github.com/bcgit/bc-java) and [org.bouncycastle:bcmail-jdk15to18](https://github.com/bcgit/bc-java). Updates `org.bouncycastle:bcprov-jdk15to18` from 1.78.1 to 1.79 - [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html) - [Commits](https://github.com/bcgit/bc-java/commits) Updates `org.bouncycastle:bcprov-jdk18on` from 1.78.1 to 1.79 - [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html) - [Commits](https://github.com/bcgit/bc-java/commits) Updates `org.bouncycastle:bcmail-jdk15to18` from 1.78.1 to 1.79 - [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html) - [Commits](https://github.com/bcgit/bc-java/commits) --- updated-dependencies: - dependency-name: org.bouncycastle:bcprov-jdk15to18 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: bouncycastle - dependency-name: org.bouncycastle:bcprov-jdk18on dependency-type: direct:production update-type: version-update:semver-minor dependency-group: bouncycastle - dependency-name: org.bouncycastle:bcmail-jdk15to18 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: bouncycastle ... Signed-off-by: dependabot[bot] * Bump the flyway group across 1 directory with 3 updates Bumps the flyway group with 3 updates in the /prime-router directory: org.flywaydb:flyway-database-postgresql, [org.flywaydb:flyway-core](https://github.com/flyway/flyway) and org.flywaydb.flyway. Updates `org.flywaydb:flyway-database-postgresql` from 10.18.2 to 10.21.0 Updates `org.flywaydb:flyway-core` from 10.18.2 to 10.21.0 - [Release notes](https://github.com/flyway/flyway/releases) - [Commits](https://github.com/flyway/flyway/compare/flyway-10.18.2...flyway-10.21.0) Updates `org.flywaydb.flyway` from 10.18.2 to 10.21.0 --- updated-dependencies: - dependency-name: org.flywaydb:flyway-database-postgresql dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flyway - dependency-name: org.flywaydb:flyway-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flyway - dependency-name: org.flywaydb.flyway dependency-type: direct:production update-type: version-update:semver-minor dependency-group: flyway ... Signed-off-by: dependabot[bot] * Bump com.googlecode.libphonenumber:libphonenumber in /prime-router Bumps [com.googlecode.libphonenumber:libphonenumber](https://github.com/google/libphonenumber) from 8.13.46 to 8.13.50. - [Release notes](https://github.com/google/libphonenumber/releases) - [Changelog](https://github.com/google/libphonenumber/blob/master/making-metadata-changes.md) - [Commits](https://github.com/google/libphonenumber/compare/v8.13.46...v8.13.50) --- updated-dependencies: - dependency-name: com.googlecode.libphonenumber:libphonenumber dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Bump com.nimbusds:nimbus-jose-jwt from 9.41.1 to 9.47 in /prime-router Bumps [com.nimbusds:nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.41.1 to 9.47. - [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt) - [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.47..9.41.1) --- updated-dependencies: - dependency-name: com.nimbusds:nimbus-jose-jwt dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Bump com.azure:azure-identity from 1.14.0 to 1.14.2 in /prime-router Bumps [com.azure:azure-identity](https://github.com/Azure/azure-sdk-for-java) from 1.14.0 to 1.14.2. - [Release notes](https://github.com/Azure/azure-sdk-for-java/releases) - [Commits](https://github.com/Azure/azure-sdk-for-java/compare/azure-core_1.14.0...azure-identity_1.14.2) --- updated-dependencies: - dependency-name: com.azure:azure-identity dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Bump com.zaxxer:HikariCP from 6.0.0 to 6.2.0 in /prime-router Bumps [com.zaxxer:HikariCP](https://github.com/brettwooldridge/HikariCP) from 6.0.0 to 6.2.0. - [Changelog](https://github.com/brettwooldridge/HikariCP/blob/dev/CHANGES) - [Commits](https://github.com/brettwooldridge/HikariCP/compare/HikariCP-6.0.0...HikariCP-6.2.0) --- updated-dependencies: - dependency-name: com.zaxxer:HikariCP dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Holiday Co-authored-by: Jack Wang --- auth/build.gradle.kts | 2 +- prime-router/build.gradle.kts | 30 +++++++++++++++--------------- submissions/build.gradle.kts | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/auth/build.gradle.kts b/auth/build.gradle.kts index 6331fb35e76..7984f5cc768 100644 --- a/auth/build.gradle.kts +++ b/auth/build.gradle.kts @@ -48,7 +48,7 @@ configurations.all { dependencyManagement { imports { - mavenBom("com.azure.spring:spring-cloud-azure-dependencies:5.17.1") + mavenBom("com.azure.spring:spring-cloud-azure-dependencies:5.18.0") mavenBom("org.springframework.cloud:spring-cloud-dependencies:2023.0.3") } } diff --git a/prime-router/build.gradle.kts b/prime-router/build.gradle.kts index 66f83c3a1f8..d489a8564d7 100644 --- a/prime-router/build.gradle.kts +++ b/prime-router/build.gradle.kts @@ -35,7 +35,7 @@ apply(from = rootProject.file("buildSrc/shared.gradle.kts")) plugins { val kotlinVersion by System.getProperties() id("reportstream.project-conventions") - id("org.flywaydb.flyway") version "10.18.2" + id("org.flywaydb.flyway") version "10.21.0" id("nu.studer.jooq") version "9.0" id("com.github.johnrengelman.shadow") version "8.1.1" id("com.microsoft.azure.azurefunctions") version "1.16.1" @@ -75,7 +75,7 @@ val javaVersion = when (appJvmTarget) { } val ktorVersion = "2.3.12" val kotlinVersion by System.getProperties() -val jacksonVersion = "2.18.0" +val jacksonVersion = "2.18.1" jacoco.toolVersion = "0.8.12" // Local database information, first one wins: @@ -840,7 +840,7 @@ buildscript { // will need to be removed once this issue is resolved in Maven. classpath("net.minidev:json-smart:2.5.1") // as per flyway v10 docs the postgres flyway module must be on the project buildpath - classpath("org.flywaydb:flyway-database-postgresql:10.18.2") + classpath("org.flywaydb:flyway-database-postgresql:10.21.0") } } @@ -872,11 +872,11 @@ dependencies { exclude(group = "com.azure", module = "azure-core") exclude(group = "com.azure", module = "azure-core-http-netty") } - implementation("com.azure:azure-identity:1.14.0") { + implementation("com.azure:azure-identity:1.14.2") { exclude(group = "com.azure", module = "azure-core") exclude(group = "com.azure", module = "azure-core-http-netty") } - implementation("com.nimbusds:nimbus-jose-jwt:9.41.1") + implementation("com.nimbusds:nimbus-jose-jwt:9.47") implementation("org.apache.logging.log4j:log4j-api:2.24.0") implementation("org.apache.logging.log4j:log4j-core:2.24.0") implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.24.0") @@ -898,17 +898,17 @@ dependencies { branch = "master" } } - implementation("ca.uhn.hapi.fhir:hapi-fhir-structures-r4:7.4.2") + implementation("ca.uhn.hapi.fhir:hapi-fhir-structures-r4:7.4.5") // https://mvnrepository.com/artifact/ca.uhn.hapi.fhir/hapi-fhir-caching-caffeine - implementation("ca.uhn.hapi.fhir:hapi-fhir-caching-caffeine:7.4.2") - implementation("ca.uhn.hapi.fhir:hapi-fhir-client:7.4.2") + implementation("ca.uhn.hapi.fhir:hapi-fhir-caching-caffeine:7.4.5") + implementation("ca.uhn.hapi.fhir:hapi-fhir-client:7.4.5") // pin implementation("ca.uhn.hapi.fhir:org.hl7.fhir.utilities:6.4.0") implementation("ca.uhn.hapi.fhir:org.hl7.fhir.r4:6.4.0") implementation("ca.uhn.hapi:hapi-base:2.5.1") implementation("ca.uhn.hapi:hapi-structures-v251:2.5.1") implementation("ca.uhn.hapi:hapi-structures-v27:2.5.1") - implementation("com.googlecode.libphonenumber:libphonenumber:8.13.46") + implementation("com.googlecode.libphonenumber:libphonenumber:8.13.50") implementation("org.thymeleaf:thymeleaf:3.1.2.RELEASE") implementation("com.sendgrid:sendgrid-java:4.10.3") implementation("com.okta.jwt:okta-jwt-verifier:0.5.7") @@ -923,15 +923,15 @@ dependencies { implementation("commons-codec:commons-codec:1.17.1") implementation("commons-io:commons-io:2.17.0") implementation("org.postgresql:postgresql:42.7.4") - implementation("com.zaxxer:HikariCP:6.0.0") - implementation("org.flywaydb:flyway-core:10.18.2") - implementation("org.flywaydb:flyway-database-postgresql:10.18.2") + implementation("com.zaxxer:HikariCP:6.2.0") + implementation("org.flywaydb:flyway-core:10.21.0") + implementation("org.flywaydb:flyway-database-postgresql:10.21.0") implementation("org.commonmark:commonmark:0.24.0") implementation("com.google.guava:guava:33.3.1-jre") implementation("com.helger.as2:as2-lib:5.1.2") - implementation("org.bouncycastle:bcprov-jdk15to18:1.78.1") - implementation("org.bouncycastle:bcprov-jdk18on:1.78.1") - implementation("org.bouncycastle:bcmail-jdk15to18:1.78.1") + implementation("org.bouncycastle:bcprov-jdk15to18:1.79") + implementation("org.bouncycastle:bcprov-jdk18on:1.79") + implementation("org.bouncycastle:bcmail-jdk15to18:1.79") implementation("commons-net:commons-net:3.11.1") implementation("com.cronutils:cron-utils:9.2.1") diff --git a/submissions/build.gradle.kts b/submissions/build.gradle.kts index 71bc7870d2e..63f690bc6c9 100644 --- a/submissions/build.gradle.kts +++ b/submissions/build.gradle.kts @@ -19,8 +19,8 @@ dependencies { implementation("org.springframework.security:spring-security-oauth2-jose:6.3.4") implementation("com.azure.spring:spring-cloud-azure-starter-storage") - implementation("com.microsoft.azure:applicationinsights-runtime-attach:3.5.4") - implementation("com.microsoft.azure:applicationinsights-web:3.5.4") + implementation("com.microsoft.azure:applicationinsights-runtime-attach:3.6.2") + implementation("com.microsoft.azure:applicationinsights-web:3.6.2") implementation("com.microsoft.azure:applicationinsights-logging-logback:2.6.4") implementation("com.fasterxml.jackson.module:jackson-module-kotlin") implementation("org.jetbrains.kotlin:kotlin-reflect") From 4869b13d21593d471770f548fae7b1329ac0e566 Mon Sep 17 00:00:00 2001 From: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com> Date: Fri, 22 Nov 2024 15:25:10 -0600 Subject: [PATCH 19/34] Un-skip E2E test: receiver-status-page-user-flow.spec.ts (#16603) * Un-skip E2E test: receiver-status-page-user-flow.spec.ts Fixes #16061 --- .../authenticated/admin/receiver-status.ts | 89 +++-- .../receiver-status-page-user-flow.spec.ts | 308 +++++++----------- .../AdminReceiverDashboardPage.tsx | 120 ++----- .../ReceiversStatusesDisplay.tsx | 100 ++---- .../pages/admin/receiver-dashboard/utils.ts | 89 ++--- 5 files changed, 270 insertions(+), 436 deletions(-) diff --git a/frontend-react/e2e/pages/authenticated/admin/receiver-status.ts b/frontend-react/e2e/pages/authenticated/admin/receiver-status.ts index 2f0673d9892..baa3808c4c4 100644 --- a/frontend-react/e2e/pages/authenticated/admin/receiver-status.ts +++ b/frontend-react/e2e/pages/authenticated/admin/receiver-status.ts @@ -4,6 +4,9 @@ import type { RSOrganizationSettings } from "../../../../src/config/endpoints/se import { RSReceiverStatus } from "../../../../src/hooks/api/UseReceiversConnectionStatus/UseReceiversConnectionStatus"; import { createStatusTimePeriodData, + isConnectionResultMatch, + MATCHING_FILTER_CLASSNAME_MAP, + MatchingFilter, SUCCESS_RATE_CLASSNAME_MAP, SuccessRate, } from "../../../../src/pages/admin/receiver-dashboard/utils"; @@ -403,9 +406,13 @@ export class AdminReceiverStatusPage extends BasePage { } async testReceiverStatusDisplay(isSmoke = false) { + const selectedSuccessRate = this.filterFormInputs.successType.value as SuccessRate; const [startDate, endDate] = this.filterFormInputs.dateRange.value; const statusRows = this.receiverStatusRowsLocator; - await expect(statusRows).toHaveCount(new Set(this.receiverStatus?.map((r) => r.receiverId)).size); + const timePeriodData = this.timePeriodData.filter( + (d) => selectedSuccessRate === SuccessRate.UNDEFINED || d.successRateType === selectedSuccessRate, + ); + await expect(statusRows).toHaveCount(timePeriodData.length); const expectedDaysText = [ dateShortFormat(startDate), @@ -415,7 +422,7 @@ export class AdminReceiverStatusPage extends BasePage { for (const [ i, { days, successRate, organizationName, receiverName, successRateType }, - ] of this.timePeriodData.entries()) { + ] of timePeriodData.entries()) { const { title, display, days: daysLoc } = statusRows.nthCustom(i); const expectedTitleText = this.getExpectedReceiverStatusRowTitle( @@ -438,9 +445,31 @@ export class AdminReceiverStatusPage extends BasePage { const daySlices = daysLoc.nthCustom(i).timePeriods; await expect(daySlices).toHaveCount(timePeriods.length); - for (const [i, { successRateType }] of timePeriods.entries()) { + for (const [i, { successRateType, entries }] of timePeriods.entries()) { const sliceEle = daySlices.nth(i); - const expectedClass = new RegExp(SUCCESS_RATE_CLASSNAME_MAP[successRateType]); + // filtering status isn't recalculated automatically, so do it here + const isResultFilterMatch = + this.filterFormInputs.resultMessage.value === "" + ? undefined + : entries.some((e) => + isConnectionResultMatch( + e.connectionCheckResult, + this.filterFormInputs.resultMessage.value, + ), + ); + const classStr = [ + SUCCESS_RATE_CLASSNAME_MAP[successRateType], + MATCHING_FILTER_CLASSNAME_MAP[ + isResultFilterMatch == null + ? MatchingFilter.NO_FILTER + : isResultFilterMatch + ? MatchingFilter.FILTER_IS_MATCHED + : MatchingFilter.FILTER_NOT_MATCHED + ], + ] + .filter(Boolean) + .join(" "); + const expectedClass = new RegExp(classStr); await expect(sliceEle).toBeVisible(); await expect(sliceEle).toHaveClass(expectedClass); @@ -456,17 +485,15 @@ export class AdminReceiverStatusPage extends BasePage { } async testReceiverName() { - const { organizationName, receiverName, successRate } = - this.timePeriodData[1]; + const { organizationName, receiverName, successRate } = this.timePeriodData[1]; const receiversStatusRows = this.receiverStatusRowsLocator; const expectedReceiverStatusRow = receiversStatusRows.nthCustom(0); - const expectedReceiverStatusRowTitle = - this.getExpectedReceiverStatusRowTitle( - organizationName, - receiverName, - successRate, - ); + const expectedReceiverStatusRowTitle = this.getExpectedReceiverStatusRowTitle( + organizationName, + receiverName, + successRate, + ); await expect(receiversStatusRows).toHaveCount(this.timePeriodData.length); @@ -491,8 +518,8 @@ export class AdminReceiverStatusPage extends BasePage { const dayI = 0; const timePeriodI = 2; const entryI = 0; - const {days} = this.timePeriodData[receiverI]; - const {connectionCheckResult} = days[dayI].timePeriods[timePeriodI].entries[entryI]; + const { days } = this.timePeriodData[receiverI]; + const { connectionCheckResult } = days[dayI].timePeriods[timePeriodI].entries[entryI]; const receiversStatusRows = this.receiverStatusRowsLocator; @@ -500,11 +527,11 @@ export class AdminReceiverStatusPage extends BasePage { resultMessage: connectionCheckResult, }); - for (const [i, {days}] of this.timePeriodData.entries()) { + for (const [i, { days }] of this.timePeriodData.entries()) { const isRowExpected = i === receiverI; const row = receiversStatusRows.nthCustom(i); - for (const [i, {timePeriods}] of days.entries()) { + for (const [i, { timePeriods }] of days.entries()) { const isDayExpected = isRowExpected && i === dayI; const rowDay = row.days.nthCustom(i); @@ -537,20 +564,18 @@ export class AdminReceiverStatusPage extends BasePage { const link = row.title.getByRole("link", { name: organizationName, exact: true }).first(); const expectedUrl = this.getExpectedStatusOrganizationUrl(i); await expect(link).toBeVisible(); - const p = this.page.route( - `/api/settings/organizations/${organizationName}`, - (route) => - route.fulfill({ - json: { - description: "fake", - filters: [], - name: organizationName, - jurisdiction: "fake", - version: 0, - createdAt: "", - createdBy: "", - } satisfies RSOrganizationSettings, - }), + const p = this.page.route(`/api/settings/organizations/${organizationName}`, (route) => + route.fulfill({ + json: { + description: "fake", + filters: [], + name: organizationName, + jurisdiction: "fake", + version: 0, + createdAt: "", + createdBy: "", + } satisfies RSOrganizationSettings, + }), ); await link.click(); await expect(this.page).toHaveURL(expectedUrl); @@ -624,9 +649,7 @@ export class AdminReceiverStatusPage extends BasePage { }); await expect(link).toBeVisible(); await link.click(); - await expect(this.page).toHaveURL( - this.getExpectedStatusReceiverUrl(i), - ); + await expect(this.page).toHaveURL(this.getExpectedStatusReceiverUrl(i)); await this.page.goBack(); if (isSmoke && i === 0) { diff --git a/frontend-react/e2e/spec/chromium-only/authenticated/receiver-status-page-user-flow.spec.ts b/frontend-react/e2e/spec/chromium-only/authenticated/receiver-status-page-user-flow.spec.ts index 8cb59f03528..152996d902e 100644 --- a/frontend-react/e2e/spec/chromium-only/authenticated/receiver-status-page-user-flow.spec.ts +++ b/frontend-react/e2e/spec/chromium-only/authenticated/receiver-status-page-user-flow.spec.ts @@ -1,4 +1,5 @@ import { addDays, endOfDay, startOfDay, subDays } from "date-fns"; +import { SuccessRate } from "../../../../src/pages/admin/receiver-dashboard/utils"; import { AdminReceiverStatusPage } from "../../../pages/authenticated/admin/receiver-status"; import { test as baseTest, expect, logins } from "../../../test"; @@ -36,74 +37,70 @@ const test = baseTest.extend({ }, }); -test.describe("Admin Receiver Status Page", +test.describe( + "Admin Receiver Status Page", { // TODO: Investigate Admin Receiver Status Page › functions correctly › receiver statuses › time period modals - // tag: "@smoke", - }, () => { + tag: "@smoke", + }, + () => { test.use({ storageState: logins.admin.path }); test.describe("displays correctly", () => { test.describe("header", () => { - test( - "has correct title + heading", - async ({ adminReceiverStatusPage }) => { - await adminReceiverStatusPage.testHeader(); - }, - ); + test("has correct title + heading", async ({ adminReceiverStatusPage }) => { + await adminReceiverStatusPage.testHeader(); + }); }); - test.describe( - "filters", - () => { - test("date range", async ({ adminReceiverStatusPage }) => { - const { button, label, modalOverlay, valueDisplay } = - adminReceiverStatusPage.filterFormInputs.dateRange; - await expect(label).toBeVisible(); - await expect(button).toBeVisible(); - await expect(valueDisplay).toHaveText(adminReceiverStatusPage.expectedDateRangeLabelText); - await expect(modalOverlay).toBeHidden(); - }); + test.describe("filters", () => { + test("date range", async ({ adminReceiverStatusPage }) => { + const { button, label, modalOverlay, valueDisplay } = + adminReceiverStatusPage.filterFormInputs.dateRange; + await expect(label).toBeVisible(); + await expect(button).toBeVisible(); + await expect(valueDisplay).toHaveText(adminReceiverStatusPage.expectedDateRangeLabelText); + await expect(modalOverlay).toBeHidden(); + }); - test("receiver name", async ({ adminReceiverStatusPage }) => { - const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } = - adminReceiverStatusPage.filterFormInputs.receiverName; - await expect(label).toBeVisible(); - await expect(input).toBeVisible(); - await expect(input).toHaveValue(expectedDefaultValue); - - await expect(tooltip).toBeHidden(); - await input.hover(); - await expect(tooltip).toBeVisible(); - await expect(tooltip).toHaveText(expectedTooltipText); - }); + test("receiver name", async ({ adminReceiverStatusPage }) => { + const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } = + adminReceiverStatusPage.filterFormInputs.receiverName; + await expect(label).toBeVisible(); + await expect(input).toBeVisible(); + await expect(input).toHaveValue(expectedDefaultValue); + + await expect(tooltip).toBeHidden(); + await input.hover(); + await expect(tooltip).toBeVisible(); + await expect(tooltip).toHaveText(expectedTooltipText); + }); - test("results message", async ({ adminReceiverStatusPage }) => { - const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } = - adminReceiverStatusPage.filterFormInputs.resultMessage; - await expect(label).toBeVisible(); - await expect(input).toBeVisible(); - await expect(input).toHaveValue(expectedDefaultValue); - - await expect(tooltip).toBeHidden(); - await input.hover(); - await expect(tooltip).toBeVisible(); - await expect(tooltip).toHaveText(expectedTooltipText); - }); + test("results message", async ({ adminReceiverStatusPage }) => { + const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } = + adminReceiverStatusPage.filterFormInputs.resultMessage; + await expect(label).toBeVisible(); + await expect(input).toBeVisible(); + await expect(input).toHaveValue(expectedDefaultValue); + + await expect(tooltip).toBeHidden(); + await input.hover(); + await expect(tooltip).toBeVisible(); + await expect(tooltip).toHaveText(expectedTooltipText); + }); - test("success type", async ({ adminReceiverStatusPage }) => { - const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } = - adminReceiverStatusPage.filterFormInputs.successType; - await expect(label).toBeVisible(); - await expect(input).toBeVisible(); - await expect(input).toHaveValue(expectedDefaultValue); - - await expect(tooltip).toBeHidden(); - await input.hover(); - await expect(tooltip).toBeVisible(); - await expect(tooltip).toHaveText(expectedTooltipText); - }); - }, - ); + test("success type", async ({ adminReceiverStatusPage }) => { + const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } = + adminReceiverStatusPage.filterFormInputs.successType; + await expect(label).toBeVisible(); + await expect(input).toBeVisible(); + await expect(input).toHaveValue(expectedDefaultValue); + + await expect(tooltip).toBeHidden(); + await input.hover(); + await expect(tooltip).toBeVisible(); + await expect(tooltip).toHaveText(expectedTooltipText); + }); + }); // Failures here indicate potential misalignment of playwright/browser timezone test.describe("receiver statuses", () => { @@ -114,85 +111,72 @@ test.describe("Admin Receiver Status Page", }); test.describe("has footer", () => { - test("has footer and explicit scroll to footer and scroll to top", - async ({ - adminReceiverStatusPage, - }) => { - await adminReceiverStatusPage.testFooter(); - }); + test("has footer and explicit scroll to footer and scroll to top", async ({ + adminReceiverStatusPage, + }) => { + await adminReceiverStatusPage.testFooter(); + }); }); }); test.describe("functions correctly", () => { test.describe("filters", () => { - test.describe( - "date range", - () => { - test("works through calendar", async ({ adminReceiverStatusPage }) => { - const { valueDisplay } = adminReceiverStatusPage.filterFormInputs.dateRange; - const now = new Date(); - const targetFrom = startOfDay(subDays(now, 3)); - const targetTo = addDays(endOfDay(now), 1); - - const reqUrl = await adminReceiverStatusPage.updateFilters({ - dateRange: { - value: [targetFrom, targetTo], - }, - }); - expect(reqUrl).toBeDefined(); - - await expect(valueDisplay).toHaveText( - adminReceiverStatusPage.expectedDateRangeLabelText, - ); - expect(Object.fromEntries(reqUrl!.searchParams.entries())).toMatchObject({ - start_date: targetFrom.toISOString(), - end_date: targetTo.toISOString(), - }); + test.describe("date range", () => { + test("works through calendar", async ({ adminReceiverStatusPage }) => { + const { valueDisplay } = adminReceiverStatusPage.filterFormInputs.dateRange; + const now = new Date(); + const targetFrom = startOfDay(subDays(now, 3)); + const targetTo = addDays(endOfDay(now), 1); + + const reqUrl = await adminReceiverStatusPage.updateFilters({ + dateRange: { + value: [targetFrom, targetTo], + }, + }); + expect(reqUrl).toBeDefined(); + + await expect(valueDisplay).toHaveText(adminReceiverStatusPage.expectedDateRangeLabelText); + expect(Object.fromEntries(reqUrl!.searchParams.entries())).toMatchObject({ + start_date: targetFrom.toISOString(), + end_date: targetTo.toISOString(), + }); + }); + + test("works through textboxes", async ({ adminReceiverStatusPage }) => { + const { valueDisplay } = adminReceiverStatusPage.filterFormInputs.dateRange; + await expect(adminReceiverStatusPage.receiverStatusRowsLocator).not.toHaveCount(0); + const now = new Date(); + const targetFrom = startOfDay(subDays(now, 3)); + const targetTo = addDays(endOfDay(now), 1); + + const reqUrl = await adminReceiverStatusPage.updateFilters({ + dateRange: { + value: [targetFrom, targetTo], + }, }); - test("works through textboxes", async ({ adminReceiverStatusPage }) => { - const { valueDisplay } = adminReceiverStatusPage.filterFormInputs.dateRange; - await expect(adminReceiverStatusPage.receiverStatusRowsLocator).not.toHaveCount(0); - const now = new Date(); - const targetFrom = startOfDay(subDays(now, 3)); - const targetTo = addDays(endOfDay(now), 1); - - const reqUrl = await adminReceiverStatusPage.updateFilters({ - dateRange: { - value: [targetFrom, targetTo], - }, - }); - - expect(reqUrl).toBeDefined(); - - await expect(valueDisplay).toHaveText( - adminReceiverStatusPage.expectedDateRangeLabelText, - ); - expect(Object.fromEntries(reqUrl!.searchParams.entries())).toMatchObject({ - start_date: targetFrom.toISOString(), - end_date: targetTo.toISOString(), - }); + expect(reqUrl).toBeDefined(); + + await expect(valueDisplay).toHaveText(adminReceiverStatusPage.expectedDateRangeLabelText); + expect(Object.fromEntries(reqUrl!.searchParams.entries())).toMatchObject({ + start_date: targetFrom.toISOString(), + end_date: targetTo.toISOString(), }); - }, - ); + }); + }); - // TODO: revisit after filters have been fixed per ticket #15737 - test.skip("receiver name", async ({adminReceiverStatusPage, isMockDisabled}) => { - test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'receiver name' test"); - const {organizationName, receiverName, successRate} = - adminReceiverStatusPage.timePeriodData[1]; + test("receiver name", async ({ adminReceiverStatusPage }) => { + const { organizationName, receiverName, successRate } = adminReceiverStatusPage.timePeriodData[1]; const receiversStatusRows = adminReceiverStatusPage.receiverStatusRowsLocator; + await expect(receiversStatusRows).toHaveCount(adminReceiverStatusPage.timePeriodData.length); const defaultReceiversStatusRowsCount = await receiversStatusRows.count(); const expectedReceiverStatusRow = receiversStatusRows.nthCustom(0); - const expectedReceiverStatusRowTitle = - adminReceiverStatusPage.getExpectedReceiverStatusRowTitle( - organizationName, - receiverName, - successRate, - ); - - expect(defaultReceiversStatusRowsCount).toBe(adminReceiverStatusPage.timePeriodData.length); + const expectedReceiverStatusRowTitle = adminReceiverStatusPage.getExpectedReceiverStatusRowTitle( + organizationName, + receiverName, + successRate, + ); await adminReceiverStatusPage.updateFilters({ receiverName, @@ -208,82 +192,33 @@ test.describe("Admin Receiver Status Page", expect(defaultReceiversStatusRowsCount).toBe(adminReceiverStatusPage.timePeriodData.length); }); - test.skip("result message", async ({adminReceiverStatusPage, isMockDisabled}) => { - test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'result message' test"); + test("result message", async ({ adminReceiverStatusPage }) => { // get first entry's result from all-fail receiver's first day -> third time period const receiverI = 0; const dayI = 0; const timePeriodI = 2; const entryI = 0; - const {days} = adminReceiverStatusPage.timePeriodData[receiverI]; - const {connectionCheckResult} = days[dayI].timePeriods[timePeriodI].entries[entryI]; - - const receiversStatusRows = adminReceiverStatusPage.receiverStatusRowsLocator; + const { days } = adminReceiverStatusPage.timePeriodData[receiverI]; + const { connectionCheckResult } = days[dayI].timePeriods[timePeriodI].entries[entryI]; await adminReceiverStatusPage.updateFilters({ resultMessage: connectionCheckResult, }); - for (const [i, {days}] of adminReceiverStatusPage.timePeriodData.entries()) { - const row = receiversStatusRows.nthCustom(i); - - for (const [i, {timePeriods}] of days.entries()) { - const rowDay = row.days.nthCustom(i); - - for (const [i] of timePeriods.entries()) { - const rowDayTimePeriod = rowDay.timePeriods.nth(i); - - await expect(rowDayTimePeriod).toHaveClass(/success-result-hidden/); - } - } - } + await adminReceiverStatusPage.testReceiverStatusDisplay(); await adminReceiverStatusPage.resetFilters(); - // TODO: revisit after filters have been fixed per ticket #15737 - // await adminReceiverStatusPage.testReceiverStatusDisplay(); + await adminReceiverStatusPage.testReceiverStatusDisplay(); }); - test.skip("success type", async ({ adminReceiverStatusPage, isMockDisabled }) => { - test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'success type' test"); - const [failRow, ,] = adminReceiverStatusPage.timePeriodData; - const failRowTitle = adminReceiverStatusPage.getExpectedReceiverStatusRowTitle( - failRow.organizationName, - failRow.receiverName, - failRow.successRate, - ); - // const mixedRowTitle = adminReceiverStatusPage.getExpectedReceiverStatusRowTitle( - // mixedRow.organizationName, - // mixedRow.receiverName, - // mixedRow.successRate, - // ); - - const receiversStatusRows = adminReceiverStatusPage.receiverStatusRowsLocator; - const defaultReceiversStatusRowsCount = await receiversStatusRows.count(); - const expectedRow = receiversStatusRows.nthCustom(0); - - expect(defaultReceiversStatusRowsCount).toBe(adminReceiverStatusPage.timePeriodData.length); - - await adminReceiverStatusPage.updateFilters({ - successType: "ALL_FAILURE", - }); - let receiversStatusRowsCount = await receiversStatusRows.count(); - - expect(receiversStatusRowsCount).toBeGreaterThanOrEqual(1); - await expect(expectedRow.title).toHaveText(failRowTitle); - - await adminReceiverStatusPage.updateFilters({ - successType: "MIXED_SUCCESS", - }); - receiversStatusRowsCount = await receiversStatusRows.count(); - expect(receiversStatusRowsCount).toBeGreaterThanOrEqual(1); - // TODO: revisit after filters have been fixed per ticket #15737 - // await expect(expectedRow.title).toHaveText(mixedRowTitle); + test("success type", async ({ adminReceiverStatusPage }) => { + const successTypes = [SuccessRate.ALL_FAILURE, SuccessRate.MIXED_SUCCESS, SuccessRate.UNDEFINED]; - // await adminReceiverStatusPage.resetFilters(); - // receiversStatusRowsCount = await receiversStatusRows.count(); - // - // expect(receiversStatusRowsCount).toBe(defaultReceiversStatusRowsCount); + for (const successType of successTypes) { + await adminReceiverStatusPage.updateFilterSuccessType(successType); + await adminReceiverStatusPage.testReceiverStatusDisplay(); + } }); }); @@ -320,7 +255,7 @@ test.describe("Admin Receiver Status Page", }); }); - test.skip("time period modals", async ({ adminReceiverStatusPage }) => { + test("time period modals", async ({ adminReceiverStatusPage }) => { const result = await adminReceiverStatusPage.testReceiverTimePeriodModals(true); expect(result).toBe(true); }); @@ -336,4 +271,5 @@ test.describe("Admin Receiver Status Page", }); }); }); - }); + }, +); diff --git a/frontend-react/src/pages/admin/receiver-dashboard/AdminReceiverDashboardPage/AdminReceiverDashboardPage.tsx b/frontend-react/src/pages/admin/receiver-dashboard/AdminReceiverDashboardPage/AdminReceiverDashboardPage.tsx index 33e5bbba69e..9a132dd5b05 100644 --- a/frontend-react/src/pages/admin/receiver-dashboard/AdminReceiverDashboardPage/AdminReceiverDashboardPage.tsx +++ b/frontend-react/src/pages/admin/receiver-dashboard/AdminReceiverDashboardPage/AdminReceiverDashboardPage.tsx @@ -1,13 +1,4 @@ -import { - GridContainer, - Label, - Modal, - ModalRef, - Select, - SiteAlert, - TextInput, - Tooltip, -} from "@trussworks/react-uswds"; +import { GridContainer, Label, Modal, ModalRef, Select, SiteAlert, TextInput, Tooltip } from "@trussworks/react-uswds"; import { endOfDay, startOfDay, subDays } from "date-fns"; import { useCallback, useMemo, useRef, useState } from "react"; @@ -32,22 +23,16 @@ function AdminReceiverDashboardPage() { end: endOfDay(new Date()), }); - const [startDate, setStartDate] = useState( - defaultDatesRef.current.start, - ); + const [startDate, setStartDate] = useState(defaultDatesRef.current.start); const [endDate, setEndDate] = useState(defaultDatesRef.current.end); // this is the text input box filter const [filterReceiver, setFilterReceiver] = useState(""); const [filterResultMessage, setFilterResultMessage] = useState(""); - const [filterSuccessState, setFilterSuccessState] = useState( - SuccessRate.UNDEFINED, - ); + const [filterSuccessState, setFilterSuccessState] = useState(SuccessRate.UNDEFINED); // used to show hide the modal const modalShowInfoRef = useRef(null); - const [timePeriodStatuses, setTimePeriodStatuses] = useState< - RSReceiverStatusParsed[] - >([]); + const [timePeriodStatuses, setTimePeriodStatuses] = useState([]); const handleTimePeriodClick = useCallback(({ entries }: TimePeriodData) => { setTimePeriodStatuses(entries); @@ -70,28 +55,13 @@ function AdminReceiverDashboardPage() { [endDate, filterResultMessage, results, startDate, timePeriodMinutes], ); - if (data.length === 0) { - return
No Data
; - } - - const filteredData = filterStatuses( - data, - filterReceiver, - filterSuccessState, - ); - - if (filteredData.length === 0) { - return
No data matching filters
; - } + const filteredData = filterStatuses(data, filterReceiver, filterSuccessState); return ( Receiver status dashboard - Admin - + CRON job results that check if receivers are working.
- Each slot is a 2hr time slice. Colored slots had a check - run. Clicking on a slot shows details. + Each slot is a 2hr time slice. Colored slots had a check run. Clicking on a slot shows details. { "Times shown are in YOUR LOCAL timezone. Be aware that receivers and servers may be in different zones." } -
+
-
-
-
-
- - - 0 && ( + + )} + + diff --git a/frontend-react/src/pages/admin/receiver-dashboard/ReceiversStatusesDisplay/ReceiversStatusesDisplay.tsx b/frontend-react/src/pages/admin/receiver-dashboard/ReceiversStatusesDisplay/ReceiversStatusesDisplay.tsx index b2cbb786713..716d0a6cb13 100644 --- a/frontend-react/src/pages/admin/receiver-dashboard/ReceiversStatusesDisplay/ReceiversStatusesDisplay.tsx +++ b/frontend-react/src/pages/admin/receiver-dashboard/ReceiversStatusesDisplay/ReceiversStatusesDisplay.tsx @@ -113,26 +113,19 @@ export interface ReceiversStatusesDisplayProps { * - perday-perslice-column has 4 color states as well * */ -export function ReceiversStatusesDisplay({ - receiverStatuses, - onTimePeriodClick, -}: ReceiversStatusesDisplayProps) { +export function ReceiversStatusesDisplay({ receiverStatuses, onTimePeriodClick }: ReceiversStatusesDisplayProps) { return ( {receiverStatuses.map((d) => ( - +
- + {d.organizationName}
@@ -148,60 +141,37 @@ export function ReceiversStatusesDisplay({ - {d.days.map( - ({ day, dayString, timePeriods }) => { - return ( - - - {dateShortFormat(day)} - - - {timePeriods.map( - (t) => { - return ( - - onTimePeriodClick?.( - t, - ) - } - > - {" "} - - ); - }, - )} - - - ); - }, - )} + {d.days.map(({ day, dayString, timePeriods }) => { + return ( + + + {dateShortFormat(day)} + + + {timePeriods.map((t) => { + return ( + onTimePeriodClick?.(t) + } + > + {" "} + + ); + })} + + + ); + })} diff --git a/frontend-react/src/pages/admin/receiver-dashboard/utils.ts b/frontend-react/src/pages/admin/receiver-dashboard/utils.ts index 4638f09fadc..3aee9572a76 100644 --- a/frontend-react/src/pages/admin/receiver-dashboard/utils.ts +++ b/frontend-react/src/pages/admin/receiver-dashboard/utils.ts @@ -32,11 +32,7 @@ export const MATCHING_FILTER_CLASSNAME_MAP = { * build the dictionary with a special path+key * @param dataIn */ -export const sortStatusData = < - T extends RSReceiverStatus[] | RSReceiverStatusParsed[], ->( - dataIn: T, -): T => { +export const sortStatusData = (dataIn: T): T => { const data = structuredClone(dataIn); const { orgNameMaxLength, receiverNameMaxLength } = data.reduce( (prev, curr) => { @@ -58,23 +54,17 @@ export const sortStatusData = < ); // sorting by organizationName, then receiverName, then connectionCheckStartedAt - data.sort( - ( - d1: RSReceiverStatus | RSReceiverStatusParsed, - d2: RSReceiverStatus | RSReceiverStatusParsed, - ) => { - // ideally the shape of this type will change so that all receivers, regardless if any status data was found, will get sorted - const [sortStrA, sortStrB] = [d1, d2].map( - (x) => - `${x.organizationName.padEnd(orgNameMaxLength, "-")}${x.receiverName.padEnd(receiverNameMaxLength, "-")}${new Date(x.connectionCheckStartedAt || Date.now()).toISOString()}`, - ); + data.sort((d1: RSReceiverStatus | RSReceiverStatusParsed, d2: RSReceiverStatus | RSReceiverStatusParsed) => { + // ideally the shape of this type will change so that all receivers, regardless if any status data was found, will get sorted + const [sortStrA, sortStrB] = [d1, d2].map( + (x) => + `${x.organizationName.padEnd(orgNameMaxLength, "-")}${x.receiverName.padEnd(receiverNameMaxLength, "-")}${new Date(x.connectionCheckStartedAt || Date.now()).toISOString()}`, + ); - const result = - sortStrA > sortStrB ? 1 : sortStrA < sortStrB ? -1 : 0; + const result = sortStrA > sortStrB ? 1 : sortStrA < sortStrB ? -1 : 0; - return result; - }, - ); + return result; + }); return data; }; @@ -103,33 +93,24 @@ export function createStatusTimePeriodData({ }): ReceiverStatusTimePeriod[] { const inter = interval(startDate, endDate, { assertPositive: true }); const numTimePeriodsPerDay = (24 * 60) / timePeriodMinutes; - if (numTimePeriodsPerDay % 1 !== 0) - throw new Error("Invalid time period duration"); + if (numTimePeriodsPerDay % 1 !== 0) throw new Error("Invalid time period duration"); - const timePeriodLabels = Array.from(Array(numTimePeriodsPerDay).keys()).map( - (_, i) => - addMinutes( - startDate, - (i + 1) * timePeriodMinutes, - ).toLocaleTimeString(), + const timePeriodLabels = Array.from(Array(numTimePeriodsPerDay).keys()).map((_, i) => + addMinutes(startDate, (i + 1) * timePeriodMinutes).toLocaleTimeString(), ); const sortedData = sortStatusData(data).map((d) => ({ ...d, connectionCheckCompletedAt: new Date(d.connectionCheckCompletedAt), connectionCheckStartedAt: new Date(d.connectionCheckStartedAt), })); - const receiverIds = Array.from( - new Set(sortedData.map((d) => d.receiverId)), - ); + const receiverIds = Array.from(new Set(sortedData.map((d) => d.receiverId))); return receiverIds.map((id) => { const entries = sortedData.filter((d) => d.receiverId === id); const { organizationName, receiverName } = entries[0]; const days = eachDayOfInterval(inter).map((day) => { const dayEntries = entries.filter( - (e) => - e.connectionCheckCompletedAt.toLocaleDateString() === - day.toLocaleDateString(), + (e) => e.connectionCheckCompletedAt.toLocaleDateString() === day.toLocaleDateString(), ); const dayString = day.toLocaleDateString(); const timePeriods = timePeriodLabels.map((time) => { @@ -137,26 +118,18 @@ export function createStatusTimePeriodData({ const end = addMinutes(start, timePeriodMinutes); const timePeriodEntries = dayEntries.filter((e) => { - return ( - e.connectionCheckCompletedAt >= start && - e.connectionCheckCompletedAt < end - ); + return e.connectionCheckCompletedAt >= start && e.connectionCheckCompletedAt < end; }); const agg = timePeriodEntries.reduce( - ( - agg, - { connectionCheckSuccessful, connectionCheckResult }, - ) => { + (agg, { connectionCheckSuccessful, connectionCheckResult }) => { if (connectionCheckSuccessful) agg.success += 1; else { agg.fail += 1; - if ( - connectionCheckResult - .toLowerCase() - .includes(filterResultMessage.toLowerCase()) - ) { - agg.isResultFilterMatch = true; - } + if (!agg.isResultFilterMatch) + agg.isResultFilterMatch = isConnectionResultMatch( + connectionCheckResult, + filterResultMessage, + ); } return agg; }, @@ -188,6 +161,7 @@ export function createStatusTimePeriodData({ successRateType, matchingFilter, entries: timePeriodEntries, + q: filterResultMessage, }; }); return { @@ -208,10 +182,7 @@ export function createStatusTimePeriodData({ }, { success: 0, fail: 0 }, ); - const successRate = - !!success || !!fail - ? Math.round((100 * success) / (success + fail)) - : 0; + const successRate = !!success || !!fail ? Math.round((100 * success) / (success + fail)) : 0; const successRateType = !success && !fail ? SuccessRate.UNDEFINED @@ -270,12 +241,14 @@ export function filterStatuses( ) { return statuses.filter(({ receiverName, successRateType }) => { const result = - (!receiverNameLike || - receiverName.toLowerCase().includes(receiverNameLike)) && - (!successRateLike || - successRateLike === SuccessRate.UNDEFINED || - successRateType === successRateLike); + (!receiverNameLike || receiverName.toLowerCase().includes(receiverNameLike)) && + (!successRateLike || successRateLike === SuccessRate.UNDEFINED || successRateType === successRateLike); return result; }); } + +export function isConnectionResultMatch(result: string, query: string) { + if (query === "") return true; + return result.toLowerCase().includes(query.toLowerCase()); +} From 7e63ee8fdf3a57a531cfc6d2ed8e7a3dc3e1fc04 Mon Sep 17 00:00:00 2001 From: Jack Wang Date: Mon, 25 Nov 2024 11:29:06 -0500 Subject: [PATCH 20/34] 16307 orm and oml java classes (#16549) * insurance group * patient * order, order detail, observation * insurance fixes * oml, fixes * complete oml * fix imports * small fixes --- prime-router/build.gradle.kts | 1 - .../group/OML_O21_CONTAINER.java | 167 ++ .../group/OML_O21_CONTAINER_OBSERVATION.java | 169 ++ .../group/OML_O21_INSURANCE.java | 122 + .../group/OML_O21_OBSERVATION.java | 1 + .../group/OML_O21_OBSERVATION_PRIOR.java | 243 ++ .../group/OML_O21_OBSERVATION_REQUEST.java | 4 +- .../fhirinventory/group/OML_O21_ORDER.java | 3 +- .../group/OML_O21_ORDER_PRIOR.java | 407 +++ .../fhirinventory/group/OML_O21_PATIENT.java | 4 +- .../group/OML_O21_PATIENT_PRIOR.java | 184 ++ .../group/OML_O21_PATIENT_VISIT.java | 3 +- .../group/OML_O21_PATIENT_VISIT_PRIOR.java | 183 ++ .../group/OML_O21_PRIOR_RESULT.java | 256 ++ .../fhirinventory/group/OML_O21_SPECIMEN.java | 3 +- .../group/OML_O21_SPECIMEN_OBSERVATION.java | 169 ++ .../group/ORM_O01_INSURANCE.java | 123 + .../group/ORM_O01_OBSERVATION.java | 4 +- .../fhirinventory/group/ORM_O01_ORDER.java | 4 +- .../group/ORM_O01_ORDER_DETAIL.java | 12 +- .../fhirinventory/group/ORM_O01_PATIENT.java | 11 +- .../group/ORM_O01_PATIENT_VISIT.java | 8 +- .../group/ORU_R01_ORDER_OBSERVATION.java | 4 +- .../fhirinventory/group/ORU_R01_PATIENT.java | 7 +- .../group/ORU_R01_PATIENT_OBSERVATION.java | 4 +- .../group/ORU_R01_SPECIMEN_OBSERVATION.java | 4 +- .../fhirinventory/group/ORU_R01_VISIT.java | 8 +- .../structures/fhirinventory/segment/AL1.java | 312 ++ .../structures/fhirinventory/segment/DG1.java | 772 +++++ .../structures/fhirinventory/segment/FT1.java | 1786 ++++++++++++ .../structures/fhirinventory/segment/IN1.java | 2591 +++++++++++++++++ .../structures/fhirinventory/segment/IN3.java | 1415 +++++++++ .../structures/fhirinventory/segment/NTE.java | 2 +- .../structures/fhirinventory/segment/PV1.java | 2395 +++++++++++++++ 34 files changed, 11349 insertions(+), 32 deletions(-) create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER_OBSERVATION.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_INSURANCE.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_PRIOR.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER_PRIOR.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_PRIOR.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT_PRIOR.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PRIOR_RESULT.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN_OBSERVATION.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_INSURANCE.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/AL1.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/DG1.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/FT1.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN1.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN3.java create mode 100644 prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/PV1.java diff --git a/prime-router/build.gradle.kts b/prime-router/build.gradle.kts index ec93feb98ce..267caf5989d 100644 --- a/prime-router/build.gradle.kts +++ b/prime-router/build.gradle.kts @@ -907,7 +907,6 @@ dependencies { implementation("ca.uhn.hapi.fhir:org.hl7.fhir.r4:6.3.24") implementation("ca.uhn.hapi:hapi-base:2.5.1") implementation("ca.uhn.hapi:hapi-structures-v251:2.5.1") - implementation("ca.uhn.hapi:hapi-structures-v26:2.5.1") implementation("ca.uhn.hapi:hapi-structures-v27:2.5.1") implementation("com.googlecode.libphonenumber:libphonenumber:8.13.46") implementation("org.thymeleaf:thymeleaf:3.1.2.RELEASE") diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER.java new file mode 100644 index 00000000000..87c9e5885e9 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER.java @@ -0,0 +1,167 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.model.v27.segment.SAC; +import ca.uhn.hl7v2.parser.ModelClassFactory; + +/** + *

Represents a OML_O21_CONTAINER group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: SAC (Specimen Container detail)
  • + *
  • 2: OML_O21_CONTAINER_OBSERVATION (a Group object) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_CONTAINER extends AbstractGroup { + + /** + * Creates a new OML_O21_CONTAINER group + */ + public OML_O21_CONTAINER(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(SAC.class, true, false, false); + this.add(OML_O21_CONTAINER_OBSERVATION.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_CONTAINER - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * SAC (Specimen Container detail) - creates it if necessary + */ + public SAC getSAC() { + SAC retVal = getTyped("SAC", SAC.class); + return retVal; + } + + + + + /** + * Returns + * the first repetition of + * CONTAINER_OBSERVATION (a Group object) - creates it if necessary + */ + public OML_O21_CONTAINER_OBSERVATION getCONTAINER_OBSERVATION() { + OML_O21_CONTAINER_OBSERVATION retVal = getTyped("CONTAINER_OBSERVATION", OML_O21_CONTAINER_OBSERVATION.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * CONTAINER_OBSERVATION (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_CONTAINER_OBSERVATION getCONTAINER_OBSERVATION(int rep) { + OML_O21_CONTAINER_OBSERVATION retVal = getTyped("CONTAINER_OBSERVATION", rep, OML_O21_CONTAINER_OBSERVATION.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of CONTAINER_OBSERVATION + */ + public int getCONTAINER_OBSERVATIONReps() { + return getReps("CONTAINER_OBSERVATION"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of CONTAINER_OBSERVATION. + *

+ *

+ * Note that unlike {@link #getCONTAINER_OBSERVATION()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getCONTAINER_OBSERVATIONAll() throws HL7Exception { + return getAllAsList("CONTAINER_OBSERVATION", OML_O21_CONTAINER_OBSERVATION.class); + } + + /** + * Inserts a specific repetition of CONTAINER_OBSERVATION (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertCONTAINER_OBSERVATION(OML_O21_CONTAINER_OBSERVATION structure, int rep) throws HL7Exception { + super.insertRepetition("CONTAINER_OBSERVATION", structure, rep); + } + + + /** + * Inserts a specific repetition of CONTAINER_OBSERVATION (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_CONTAINER_OBSERVATION insertCONTAINER_OBSERVATION(int rep) throws HL7Exception { + return (OML_O21_CONTAINER_OBSERVATION)super.insertRepetition("CONTAINER_OBSERVATION", rep); + } + + + /** + * Removes a specific repetition of CONTAINER_OBSERVATION (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_CONTAINER_OBSERVATION removeCONTAINER_OBSERVATION(int rep) throws HL7Exception { + return (OML_O21_CONTAINER_OBSERVATION)super.removeRepetition("CONTAINER_OBSERVATION", rep); + } + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER_OBSERVATION.java new file mode 100644 index 00000000000..a3f0c2961b3 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER_OBSERVATION.java @@ -0,0 +1,169 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + + +/** + *

Represents a OML_O21_CONTAINER_OBSERVATION group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: OBX (Observation/Result)
  • + *
  • 2: PRT (Participation Information) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_CONTAINER_OBSERVATION extends AbstractGroup { + + /** + * Creates a new OML_O21_CONTAINER_OBSERVATION group + */ + public OML_O21_CONTAINER_OBSERVATION(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(OBX.class, true, false, false); + this.add(PRT.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_CONTAINER_OBSERVATION - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * OBX (Observation/Result) - creates it if necessary + */ + public OBX getOBX() { + OBX retVal = getTyped("OBX", OBX.class); + return retVal; + } + + + + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_INSURANCE.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_INSURANCE.java new file mode 100644 index 00000000000..e84f2c62e1d --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_INSURANCE.java @@ -0,0 +1,122 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.v27.segment.IN2; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.IN1; +import fhirengine.translation.hl7.structures.fhirinventory.segment.IN3; + +/** + *

Represents a OML_O21_INSURANCE group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: IN1 (Insurance)
  • + *
  • 2: IN2 (Insurance Additional Information) optional
  • + *
  • 3: IN3 (Insurance Additional Information, Certification) optional
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_INSURANCE extends AbstractGroup { + + /** + * Creates a new OML_O21_INSURANCE group + */ + public OML_O21_INSURANCE(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(IN1.class, true, false, false); + this.add(IN2.class, false, false, false); + this.add(IN3.class, false, false, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_INSURANCE - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * IN1 (Insurance) - creates it if necessary + */ + public IN1 getIN1() { + IN1 retVal = getTyped("IN1", IN1.class); + return retVal; + } + + + + + /** + * Returns + * IN2 (Insurance Additional Information) - creates it if necessary + */ + public IN2 getIN2() { + IN2 retVal = getTyped("IN2", IN2.class); + return retVal; + } + + + + + /** + * Returns + * IN3 (Insurance Additional Information, Certification) - creates it if necessary + */ + public IN3 getIN3() { + IN3 retVal = getTyped("IN3", IN3.class); + return retVal; + } + + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java index 2c642089c1e..952a9ef4fba 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java @@ -35,6 +35,7 @@ import ca.uhn.hl7v2.HL7Exception; import ca.uhn.hl7v2.model.AbstractGroup; import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.model.v27.segment.TCD; import ca.uhn.hl7v2.parser.ModelClassFactory; import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_PRIOR.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_PRIOR.java new file mode 100644 index 00000000000..cfa7ccf4483 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_PRIOR.java @@ -0,0 +1,243 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + +/** + *

Represents a OML_O21_OBSERVATION_PRIOR group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: OBX (Observation/Result)
  • + *
  • 2: PRT (Participation Information) optional repeating
  • + *
  • 3: NTE (Notes and Comments) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_OBSERVATION_PRIOR extends AbstractGroup { + + /** + * Creates a new OML_O21_OBSERVATION_PRIOR group + */ + public OML_O21_OBSERVATION_PRIOR(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(OBX.class, true, false, false); + this.add(PRT.class, false, true, false); + this.add(NTE.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_OBSERVATION_PRIOR - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * OBX (Observation/Result) - creates it if necessary + */ + public OBX getOBX() { + OBX retVal = getTyped("OBX", OBX.class); + return retVal; + } + + + + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + + + /** + * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + */ + public NTE getNTE() { + NTE retVal = getTyped("NTE", NTE.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { + NTE retVal = getTyped("NTE", rep, NTE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of NTE + */ + public int getNTEReps() { + return getReps("NTE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition("NTE", structure, rep); + } + + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { + return (NTE)super.insertRepetition("NTE", rep); + } + + + /** + * Removes a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { + return (NTE)super.removeRepetition("NTE", rep); + } + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java index 9dc2ea7041e..c2a6586e97f 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java @@ -35,11 +35,11 @@ import ca.uhn.hl7v2.HL7Exception; import ca.uhn.hl7v2.model.AbstractGroup; import ca.uhn.hl7v2.model.Group; -import ca.uhn.hl7v2.model.v27.group.OML_O21_PRIOR_RESULT; +import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.model.v27.segment.CTD; -import ca.uhn.hl7v2.model.v27.segment.DG1; import ca.uhn.hl7v2.model.v27.segment.TCD; import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.DG1; import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR; import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java index de368e74ff2..d67f7ce58cb 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java @@ -35,11 +35,12 @@ import ca.uhn.hl7v2.HL7Exception; import ca.uhn.hl7v2.model.AbstractGroup; import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.model.v27.group.OML_O21_TIMING; import ca.uhn.hl7v2.model.v27.segment.BLG; import ca.uhn.hl7v2.model.v27.segment.CTI; -import ca.uhn.hl7v2.model.v27.segment.FT1; import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.FT1; import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC; import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER_PRIOR.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER_PRIOR.java new file mode 100644 index 00000000000..11f33299fda --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER_PRIOR.java @@ -0,0 +1,407 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.model.v27.group.OML_O21_TIMING_PRIOR; +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR; +import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC; +import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + +/** + *

Represents a OML_O21_ORDER_PRIOR group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: ORC (Common Order)
  • + *
  • 2: OBR (Observation Request)
  • + *
  • 3: NTE (Notes and Comments) optional repeating
  • + *
  • 4: PRT (Participation Information) optional repeating
  • + *
  • 5: OML_O21_TIMING_PRIOR (a Group object) optional repeating
  • + *
  • 6: OML_O21_OBSERVATION_PRIOR (a Group object) repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_ORDER_PRIOR extends AbstractGroup { + + /** + * Creates a new OML_O21_ORDER_PRIOR group + */ + public OML_O21_ORDER_PRIOR(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(ORC.class, true, false, false); + this.add(OBR.class, true, false, false); + this.add(NTE.class, false, true, false); + this.add(PRT.class, false, true, false); + this.add(OML_O21_TIMING_PRIOR.class, false, true, false); + this.add(OML_O21_OBSERVATION_PRIOR.class, true, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_ORDER_PRIOR - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * ORC (Common Order) - creates it if necessary + */ + public ORC getORC() { + ORC retVal = getTyped("ORC", ORC.class); + return retVal; + } + + + + + /** + * Returns + * OBR (Observation Request) - creates it if necessary + */ + public OBR getOBR() { + OBR retVal = getTyped("OBR", OBR.class); + return retVal; + } + + + + + /** + * Returns + * the first repetition of + * NTE (Notes and Comments) - creates it if necessary + */ + public NTE getNTE() { + NTE retVal = getTyped("NTE", NTE.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * NTE (Notes and Comments) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public NTE getNTE(int rep) { + NTE retVal = getTyped("NTE", rep, NTE.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of NTE + */ + public int getNTEReps() { + return getReps("NTE"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of NTE. + *

+ *

+ * Note that unlike {@link #getNTE()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getNTEAll() throws HL7Exception { + return getAllAsList("NTE", NTE.class); + } + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertNTE(NTE structure, int rep) throws HL7Exception { + super.insertRepetition("NTE", structure, rep); + } + + + /** + * Inserts a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public NTE insertNTE(int rep) throws HL7Exception { + return (NTE)super.insertRepetition("NTE", rep); + } + + + /** + * Removes a specific repetition of NTE (Notes and Comments) + * @see AbstractGroup#removeRepetition(String, int) + */ + public NTE removeNTE(int rep) throws HL7Exception { + return (NTE)super.removeRepetition("NTE", rep); + } + + + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + + + /** + * Returns + * the first repetition of + * TIMING_PRIOR (a Group object) - creates it if necessary + */ + public OML_O21_TIMING_PRIOR getTIMING_PRIOR() { + OML_O21_TIMING_PRIOR retVal = getTyped("TIMING_PRIOR", OML_O21_TIMING_PRIOR.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * TIMING_PRIOR (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_TIMING_PRIOR getTIMING_PRIOR(int rep) { + OML_O21_TIMING_PRIOR retVal = getTyped("TIMING_PRIOR", rep, OML_O21_TIMING_PRIOR.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of TIMING_PRIOR + */ + public int getTIMING_PRIORReps() { + return getReps("TIMING_PRIOR"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of TIMING_PRIOR. + *

+ *

+ * Note that unlike {@link #getTIMING_PRIOR()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getTIMING_PRIORAll() throws HL7Exception { + return getAllAsList("TIMING_PRIOR", OML_O21_TIMING_PRIOR.class); + } + + /** + * Inserts a specific repetition of TIMING_PRIOR (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertTIMING_PRIOR(OML_O21_TIMING_PRIOR structure, int rep) throws HL7Exception { + super.insertRepetition("TIMING_PRIOR", structure, rep); + } + + + /** + * Inserts a specific repetition of TIMING_PRIOR (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_TIMING_PRIOR insertTIMING_PRIOR(int rep) throws HL7Exception { + return (OML_O21_TIMING_PRIOR)super.insertRepetition("TIMING_PRIOR", rep); + } + + + /** + * Removes a specific repetition of TIMING_PRIOR (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_TIMING_PRIOR removeTIMING_PRIOR(int rep) throws HL7Exception { + return (OML_O21_TIMING_PRIOR)super.removeRepetition("TIMING_PRIOR", rep); + } + + + + /** + * Returns + * the first repetition of + * OBSERVATION_PRIOR (a Group object) - creates it if necessary + */ + public OML_O21_OBSERVATION_PRIOR getOBSERVATION_PRIOR() { + OML_O21_OBSERVATION_PRIOR retVal = getTyped("OBSERVATION_PRIOR", OML_O21_OBSERVATION_PRIOR.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * OBSERVATION_PRIOR (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_OBSERVATION_PRIOR getOBSERVATION_PRIOR(int rep) { + OML_O21_OBSERVATION_PRIOR retVal = getTyped("OBSERVATION_PRIOR", rep, OML_O21_OBSERVATION_PRIOR.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of OBSERVATION_PRIOR + */ + public int getOBSERVATION_PRIORReps() { + return getReps("OBSERVATION_PRIOR"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of OBSERVATION_PRIOR. + *

+ *

+ * Note that unlike {@link #getOBSERVATION_PRIOR()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getOBSERVATION_PRIORAll() throws HL7Exception { + return getAllAsList("OBSERVATION_PRIOR", OML_O21_OBSERVATION_PRIOR.class); + } + + /** + * Inserts a specific repetition of OBSERVATION_PRIOR (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertOBSERVATION_PRIOR(OML_O21_OBSERVATION_PRIOR structure, int rep) throws HL7Exception { + super.insertRepetition("OBSERVATION_PRIOR", structure, rep); + } + + + /** + * Inserts a specific repetition of OBSERVATION_PRIOR (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_OBSERVATION_PRIOR insertOBSERVATION_PRIOR(int rep) throws HL7Exception { + return (OML_O21_OBSERVATION_PRIOR)super.insertRepetition("OBSERVATION_PRIOR", rep); + } + + + /** + * Removes a specific repetition of OBSERVATION_PRIOR (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_OBSERVATION_PRIOR removeOBSERVATION_PRIOR(int rep) throws HL7Exception { + return (OML_O21_OBSERVATION_PRIOR)super.removeRepetition("OBSERVATION_PRIOR", rep); + } + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java index ce8a489a776..ca80f07eff1 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java @@ -35,11 +35,11 @@ import ca.uhn.hl7v2.HL7Exception; import ca.uhn.hl7v2.model.AbstractGroup; import ca.uhn.hl7v2.model.Group; -import ca.uhn.hl7v2.model.v27.segment.AL1; +import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.model.v27.segment.GT1; import ca.uhn.hl7v2.model.v27.segment.NK1; -import ca.uhn.hl7v2.model.v27.group.OML_O21_INSURANCE; import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.AL1; import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1; import fhirengine.translation.hl7.structures.fhirinventory.segment.PID; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_PRIOR.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_PRIOR.java new file mode 100644 index 00000000000..13d8100347a --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_PRIOR.java @@ -0,0 +1,184 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PID; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + + +/** + *

Represents a OML_O21_PATIENT_PRIOR group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: PID (Patient Identification)
  • + *
  • 2: PD1 (Patient Additional Demographic) optional
  • + *
  • 3: PRT (Participation Information) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_PATIENT_PRIOR extends AbstractGroup { + + /** + * Creates a new OML_O21_PATIENT_PRIOR group + */ + public OML_O21_PATIENT_PRIOR(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(PID.class, true, false, false); + this.add(PD1.class, false, false, false); + this.add(PRT.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_PATIENT_PRIOR - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * PID (Patient Identification) - creates it if necessary + */ + public PID getPID() { + PID retVal = getTyped("PID", PID.class); + return retVal; + } + + + + + /** + * Returns + * PD1 (Patient Additional Demographic) - creates it if necessary + */ + public PD1 getPD1() { + PD1 retVal = getTyped("PD1", PD1.class); + return retVal; + } + + + + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java index 877b32c40f5..38617ac1a07 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java @@ -34,11 +34,12 @@ import ca.uhn.hl7v2.model.AbstractGroup; import ca.uhn.hl7v2.model.Group; -import ca.uhn.hl7v2.model.v27.segment.PV1; +import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.model.v27.segment.PV2; import ca.uhn.hl7v2.HL7Exception; import ca.uhn.hl7v2.parser.ModelClassFactory; import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PV1; /** *

Represents a OML_O21_PATIENT_VISIT group structure (a Group object). diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT_PRIOR.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT_PRIOR.java new file mode 100644 index 00000000000..c0bda22c236 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT_PRIOR.java @@ -0,0 +1,183 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.model.v27.segment.PV2; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PV1; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + +/** + *

Represents a OML_O21_PATIENT_VISIT_PRIOR group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: PV1 (Patient Visit)
  • + *
  • 2: PV2 (Patient Visit - Additional Information) optional
  • + *
  • 3: PRT (Participation Information) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_PATIENT_VISIT_PRIOR extends AbstractGroup { + + /** + * Creates a new OML_O21_PATIENT_VISIT_PRIOR group + */ + public OML_O21_PATIENT_VISIT_PRIOR(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(PV1.class, true, false, false); + this.add(PV2.class, false, false, false); + this.add(PRT.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_PATIENT_VISIT_PRIOR - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * PV1 (Patient Visit) - creates it if necessary + */ + public PV1 getPV1() { + PV1 retVal = getTyped("PV1", PV1.class); + return retVal; + } + + + + + /** + * Returns + * PV2 (Patient Visit - Additional Information) - creates it if necessary + */ + public PV2 getPV2() { + PV2 retVal = getTyped("PV2", PV2.class); + return retVal; + } + + + + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PRIOR_RESULT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PRIOR_RESULT.java new file mode 100644 index 00000000000..94902d20e83 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PRIOR_RESULT.java @@ -0,0 +1,256 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.AL1; + + +/** + *

Represents a OML_O21_PRIOR_RESULT group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: OML_O21_PATIENT_PRIOR (a Group object) optional
  • + *
  • 2: OML_O21_PATIENT_VISIT_PRIOR (a Group object) optional
  • + *
  • 3: AL1 (Patient Allergy Information) optional repeating
  • + *
  • 4: OML_O21_ORDER_PRIOR (a Group object) repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_PRIOR_RESULT extends AbstractGroup { + + /** + * Creates a new OML_O21_PRIOR_RESULT group + */ + public OML_O21_PRIOR_RESULT(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(OML_O21_PATIENT_PRIOR.class, false, false, false); + this.add(OML_O21_PATIENT_VISIT_PRIOR.class, false, false, false); + this.add(AL1.class, false, true, false); + this.add(OML_O21_ORDER_PRIOR.class, true, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_PRIOR_RESULT - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * PATIENT_PRIOR (a Group object) - creates it if necessary + */ + public OML_O21_PATIENT_PRIOR getPATIENT_PRIOR() { + OML_O21_PATIENT_PRIOR retVal = getTyped("PATIENT_PRIOR", OML_O21_PATIENT_PRIOR.class); + return retVal; + } + + + + + /** + * Returns + * PATIENT_VISIT_PRIOR (a Group object) - creates it if necessary + */ + public OML_O21_PATIENT_VISIT_PRIOR getPATIENT_VISIT_PRIOR() { + OML_O21_PATIENT_VISIT_PRIOR retVal = getTyped("PATIENT_VISIT_PRIOR", OML_O21_PATIENT_VISIT_PRIOR.class); + return retVal; + } + + + + + /** + * Returns + * the first repetition of + * AL1 (Patient Allergy Information) - creates it if necessary + */ + public AL1 getAL1() { + AL1 retVal = getTyped("AL1", AL1.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * AL1 (Patient Allergy Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public AL1 getAL1(int rep) { + AL1 retVal = getTyped("AL1", rep, AL1.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of AL1 + */ + public int getAL1Reps() { + return getReps("AL1"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of AL1. + *

+ *

+ * Note that unlike {@link #getAL1()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getAL1All() throws HL7Exception { + return getAllAsList("AL1", AL1.class); + } + + /** + * Inserts a specific repetition of AL1 (Patient Allergy Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertAL1(AL1 structure, int rep) throws HL7Exception { + super.insertRepetition("AL1", structure, rep); + } + + + /** + * Inserts a specific repetition of AL1 (Patient Allergy Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public AL1 insertAL1(int rep) throws HL7Exception { + return (AL1)super.insertRepetition("AL1", rep); + } + + + /** + * Removes a specific repetition of AL1 (Patient Allergy Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public AL1 removeAL1(int rep) throws HL7Exception { + return (AL1)super.removeRepetition("AL1", rep); + } + + + + /** + * Returns + * the first repetition of + * ORDER_PRIOR (a Group object) - creates it if necessary + */ + public OML_O21_ORDER_PRIOR getORDER_PRIOR() { + OML_O21_ORDER_PRIOR retVal = getTyped("ORDER_PRIOR", OML_O21_ORDER_PRIOR.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * ORDER_PRIOR (a Group object) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public OML_O21_ORDER_PRIOR getORDER_PRIOR(int rep) { + OML_O21_ORDER_PRIOR retVal = getTyped("ORDER_PRIOR", rep, OML_O21_ORDER_PRIOR.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of ORDER_PRIOR + */ + public int getORDER_PRIORReps() { + return getReps("ORDER_PRIOR"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of ORDER_PRIOR. + *

+ *

+ * Note that unlike {@link #getORDER_PRIOR()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getORDER_PRIORAll() throws HL7Exception { + return getAllAsList("ORDER_PRIOR", OML_O21_ORDER_PRIOR.class); + } + + /** + * Inserts a specific repetition of ORDER_PRIOR (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertORDER_PRIOR(OML_O21_ORDER_PRIOR structure, int rep) throws HL7Exception { + super.insertRepetition("ORDER_PRIOR", structure, rep); + } + + + /** + * Inserts a specific repetition of ORDER_PRIOR (a Group object) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public OML_O21_ORDER_PRIOR insertORDER_PRIOR(int rep) throws HL7Exception { + return (OML_O21_ORDER_PRIOR)super.insertRepetition("ORDER_PRIOR", rep); + } + + + /** + * Removes a specific repetition of ORDER_PRIOR (a Group object) + * @see AbstractGroup#removeRepetition(String, int) + */ + public OML_O21_ORDER_PRIOR removeORDER_PRIOR(int rep) throws HL7Exception { + return (OML_O21_ORDER_PRIOR)super.removeRepetition("ORDER_PRIOR", rep); + } + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java index 871f571ba72..0a296f61e45 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java @@ -35,8 +35,7 @@ import ca.uhn.hl7v2.HL7Exception; import ca.uhn.hl7v2.model.AbstractGroup; import ca.uhn.hl7v2.model.Group; -import ca.uhn.hl7v2.model.v27.group.OML_O21_SPECIMEN_OBSERVATION; -import ca.uhn.hl7v2.model.v27.group.OML_O21_CONTAINER; +import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.model.v27.segment.SPM; import ca.uhn.hl7v2.parser.ModelClassFactory; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN_OBSERVATION.java new file mode 100644 index 00000000000..6085fb62d76 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN_OBSERVATION.java @@ -0,0 +1,169 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; + + +/** + *

Represents a OML_O21_SPECIMEN_OBSERVATION group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: OBX (Observation/Result)
  • + *
  • 2: PRT (Participation Information) optional repeating
  • + *
+ */ +//@SuppressWarnings("unused") +public class OML_O21_SPECIMEN_OBSERVATION extends AbstractGroup { + + /** + * Creates a new OML_O21_SPECIMEN_OBSERVATION group + */ + public OML_O21_SPECIMEN_OBSERVATION(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(OBX.class, true, false, false); + this.add(PRT.class, false, true, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating OML_O21_SPECIMEN_OBSERVATION - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * OBX (Observation/Result) - creates it if necessary + */ + public OBX getOBX() { + OBX retVal = getTyped("OBX", OBX.class); + return retVal; + } + + + + + /** + * Returns + * the first repetition of + * PRT (Participation Information) - creates it if necessary + */ + public PRT getPRT() { + PRT retVal = getTyped("PRT", PRT.class); + return retVal; + } + + + /** + * Returns a specific repetition of + * PRT (Participation Information) - creates it if necessary + * + * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0) + * @throws HL7Exception if the repetition requested is more than one + * greater than the number of existing repetitions. + */ + public PRT getPRT(int rep) { + PRT retVal = getTyped("PRT", rep, PRT.class); + return retVal; + } + + /** + * Returns the number of existing repetitions of PRT + */ + public int getPRTReps() { + return getReps("PRT"); + } + + /** + *

+ * Returns a non-modifiable List containing all current existing repetitions of PRT. + *

+ *

+ * Note that unlike {@link #getPRT()}, this method will not create any reps + * if none are already present, so an empty list may be returned. + *

+ */ + public java.util.List getPRTAll() throws HL7Exception { + return getAllAsList("PRT", PRT.class); + } + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public void insertPRT(PRT structure, int rep) throws HL7Exception { + super.insertRepetition("PRT", structure, rep); + } + + + /** + * Inserts a specific repetition of PRT (Participation Information) + * @see AbstractGroup#insertRepetition(Structure, int) + */ + public PRT insertPRT(int rep) throws HL7Exception { + return (PRT)super.insertRepetition("PRT", rep); + } + + + /** + * Removes a specific repetition of PRT (Participation Information) + * @see AbstractGroup#removeRepetition(String, int) + */ + public PRT removePRT(int rep) throws HL7Exception { + return (PRT)super.removeRepetition("PRT", rep); + } + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_INSURANCE.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_INSURANCE.java new file mode 100644 index 00000000000..aa389e17c33 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_INSURANCE.java @@ -0,0 +1,123 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.group; + +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.v27.segment.IN2; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.IN1; +import fhirengine.translation.hl7.structures.fhirinventory.segment.IN3; + + +/** + *

Represents a ORM_O01_INSURANCE group structure (a Group object). + * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together. + * This Group contains the following elements: + *

+ *
    + *
  • 1: IN1 (Insurance)
  • + *
  • 2: IN2 (Insurance Additional Information) optional
  • + *
  • 3: IN3 (Insurance Additional Information, Certification) optional
  • + *
+ */ +//@SuppressWarnings("unused") +public class ORM_O01_INSURANCE extends AbstractGroup { + + /** + * Creates a new ORM_O01_INSURANCE group + */ + public ORM_O01_INSURANCE(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(IN1.class, true, false, false); + this.add(IN2.class, false, false, false); + this.add(IN3.class, false, false, false); + } catch(HL7Exception e) { + log.error("Unexpected error creating ORM_O01_INSURANCE - this is probably a bug in the source code generator.", e); + } + } + + /** + * Returns "2.7" + */ + public String getVersion() { + return "2.7"; + } + + + + /** + * Returns + * IN1 (Insurance) - creates it if necessary + */ + public IN1 getIN1() { + IN1 retVal = getTyped("IN1", IN1.class); + return retVal; + } + + + + + /** + * Returns + * IN2 (Insurance Additional Information) - creates it if necessary + */ + public IN2 getIN2() { + IN2 retVal = getTyped("IN2", IN2.class); + return retVal; + } + + + + + /** + * Returns + * IN3 (Insurance Additional Information, Certification) - creates it if necessary + */ + public IN3 getIN3() { + IN3 retVal = getTyped("IN3", IN3.class); + return retVal; + } + + + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java index 1c11c2f78a1..7e70edeae23 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java @@ -33,8 +33,10 @@ package fhirengine.translation.hl7.structures.fhirinventory.group; import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.parser.ModelClassFactory; -import ca.uhn.hl7v2.model.*; import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java index da3457b501a..01a1dd10bd7 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java @@ -36,8 +36,10 @@ import ca.uhn.hl7v2.model.AbstractGroup; import ca.uhn.hl7v2.model.Group; import ca.uhn.hl7v2.model.Structure; -import ca.uhn.hl7v2.model.v27.segment.*; +import ca.uhn.hl7v2.model.v27.segment.BLG; +import ca.uhn.hl7v2.model.v27.segment.CTI; import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.FT1; import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC; /** diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java index 391cfdc6ed3..14e83d4cf78 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java @@ -33,9 +33,17 @@ package fhirengine.translation.hl7.structures.fhirinventory.group; import ca.uhn.hl7v2.HL7Exception; -import ca.uhn.hl7v2.model.v27.segment.*; -import ca.uhn.hl7v2.model.*; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.model.v27.segment.CTD; +import ca.uhn.hl7v2.model.v27.segment.ODS; +import ca.uhn.hl7v2.model.v27.segment.ODT; +import ca.uhn.hl7v2.model.v27.segment.RQ1; +import ca.uhn.hl7v2.model.v27.segment.RQD; +import ca.uhn.hl7v2.model.v27.segment.RXO; import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.DG1; import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java index 4fed5e406ae..2d23afdecc4 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java @@ -32,12 +32,13 @@ package fhirengine.translation.hl7.structures.fhirinventory.group; -import ca.uhn.hl7v2.model.v27.segment.*; - import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.model.v27.segment.GT1; import ca.uhn.hl7v2.parser.ModelClassFactory; -import ca.uhn.hl7v2.model.*; -import ca.uhn.hl7v2.model.v26.group.ORM_O01_INSURANCE; +import fhirengine.translation.hl7.structures.fhirinventory.segment.AL1; import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1; import fhirengine.translation.hl7.structures.fhirinventory.segment.PID; @@ -74,8 +75,6 @@ private void init(ModelClassFactory factory) { this.add(PD1.class, false, false, false); this.add(NTE.class, false, true, false); this.add(ORM_O01_PATIENT_VISIT.class, false, false, false); - // When https://github.com/CDCgov/prime-reportstream/issues/16307 is completed, and we build the java class for - // ORM_O01_INSURANCE, the hapi v26 dependencies in the gradle build can be removed. this.add(ORM_O01_INSURANCE.class, false, true, false); this.add(GT1.class, false, false, false); this.add(AL1.class, false, true, false); diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java index d6d939eeff5..67d8128b695 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java @@ -32,11 +32,13 @@ package fhirengine.translation.hl7.structures.fhirinventory.group; -import ca.uhn.hl7v2.model.v27.segment.*; - import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.v27.segment.PV2; import ca.uhn.hl7v2.parser.ModelClassFactory; -import ca.uhn.hl7v2.model.*; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PV1; + /** *

Represents a ORM_O01_PATIENT_VISIT group structure (a Group object). diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_ORDER_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_ORDER_OBSERVATION.java index e240f0cecfd..08fa1061335 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_ORDER_OBSERVATION.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_ORDER_OBSERVATION.java @@ -38,8 +38,10 @@ import ca.uhn.hl7v2.model.Group; import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.model.v27.group.ORU_R01_TIMING_QTY; -import ca.uhn.hl7v2.model.v27.segment.*; +import ca.uhn.hl7v2.model.v27.segment.CTD; +import ca.uhn.hl7v2.model.v27.segment.CTI; import ca.uhn.hl7v2.parser.ModelClassFactory; +import fhirengine.translation.hl7.structures.fhirinventory.segment.FT1; import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR; import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT.java index 25787c32854..5248e0b075c 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT.java @@ -33,11 +33,12 @@ package fhirengine.translation.hl7.structures.fhirinventory.group; -import ca.uhn.hl7v2.model.v27.segment.*; - import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.model.v27.segment.NK1; import ca.uhn.hl7v2.parser.ModelClassFactory; -import ca.uhn.hl7v2.model.*; import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE; import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1; import fhirengine.translation.hl7.structures.fhirinventory.segment.PID; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT_OBSERVATION.java index 706f2060054..b80c08695ea 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT_OBSERVATION.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT_OBSERVATION.java @@ -34,8 +34,10 @@ package fhirengine.translation.hl7.structures.fhirinventory.group; import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.parser.ModelClassFactory; -import ca.uhn.hl7v2.model.*; import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX; import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_SPECIMEN_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_SPECIMEN_OBSERVATION.java index f20f254b690..4fde25eb4be 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_SPECIMEN_OBSERVATION.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_SPECIMEN_OBSERVATION.java @@ -34,8 +34,10 @@ package fhirengine.translation.hl7.structures.fhirinventory.group; import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; import ca.uhn.hl7v2.parser.ModelClassFactory; -import ca.uhn.hl7v2.model.*; import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX; import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_VISIT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_VISIT.java index 3d1e37fef27..cbfe9aa097e 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_VISIT.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_VISIT.java @@ -33,12 +33,14 @@ package fhirengine.translation.hl7.structures.fhirinventory.group; -import ca.uhn.hl7v2.model.v27.segment.*; - import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.model.AbstractGroup; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Structure; +import ca.uhn.hl7v2.model.v27.segment.PV2; import ca.uhn.hl7v2.parser.ModelClassFactory; -import ca.uhn.hl7v2.model.*; import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT; +import fhirengine.translation.hl7.structures.fhirinventory.segment.PV1; /** *

Represents a ORU_R01_VISIT group structure (a Group object). diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/AL1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/AL1.java new file mode 100644 index 00000000000..08c79b4ea1a --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/AL1.java @@ -0,0 +1,312 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.segment; + +// import ca.uhn.hl7v2.model.v27.group.*; +import ca.uhn.hl7v2.model.v27.datatype.*; +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import ca.uhn.hl7v2.parser.DefaultModelClassFactory; +import ca.uhn.hl7v2.model.AbstractMessage; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Type; +import ca.uhn.hl7v2.model.AbstractSegment; +import ca.uhn.hl7v2.model.Varies; + + +/** + *

Represents an HL7 AL1 message segment (Patient Allergy Information). + * This segment has the following fields:

+ *
    + *
  • AL1-1: Set ID - AL1 (SI) + *
  • AL1-2: Allergen Type Code (CWE) optional + *
  • AL1-3: Allergen Code/Mnemonic/Description (CWE) + *
  • AL1-4: Allergy Severity Code (CWE) optional + *
  • AL1-5: Allergy Reaction Code (ST) optional repeating + *
  • AL1-6: Identification Date (DT) optional + *
+ */ +@SuppressWarnings("unused") +public class AL1 extends AbstractSegment { + + /** + * Creates a new AL1 segment + */ + public AL1(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(SI.class, true, 1, 4, new Object[]{ getMessage() }, "Set ID - AL1"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Allergen Type Code"); + this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Allergen Code/Mnemonic/Description"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Allergy Severity Code"); + this.add(ST.class, false, 0, 0, new Object[]{ getMessage() }, "Allergy Reaction Code"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Identification Date"); + } catch(HL7Exception e) { + log.error("Unexpected error creating AL1 - this is probably a bug in the source code generator.", e); + } + } + + + + /** + * Returns + * AL1-1: "Set ID - AL1" - creates it if necessary + */ + public SI getSetIDAL1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + /** + * Returns + * AL1-1: "Set ID - AL1" - creates it if necessary + */ + public SI getAl11_SetIDAL1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + + + /** + * Returns + * AL1-2: "Allergen Type Code" - creates it if necessary + */ + public CWE getAllergenTypeCode() { + CWE retVal = this.getTypedField(2, 0); + return retVal; + } + + /** + * Returns + * AL1-2: "Allergen Type Code" - creates it if necessary + */ + public CWE getAl12_AllergenTypeCode() { + CWE retVal = this.getTypedField(2, 0); + return retVal; + } + + + + /** + * Returns + * AL1-3: "Allergen Code/Mnemonic/Description" - creates it if necessary + */ + public CWE getAllergenCodeMnemonicDescription() { + CWE retVal = this.getTypedField(3, 0); + return retVal; + } + + /** + * Returns + * AL1-3: "Allergen Code/Mnemonic/Description" - creates it if necessary + */ + public CWE getAl13_AllergenCodeMnemonicDescription() { + CWE retVal = this.getTypedField(3, 0); + return retVal; + } + + + + /** + * Returns + * AL1-4: "Allergy Severity Code" - creates it if necessary + */ + public CWE getAllergySeverityCode() { + CWE retVal = this.getTypedField(4, 0); + return retVal; + } + + /** + * Returns + * AL1-4: "Allergy Severity Code" - creates it if necessary + */ + public CWE getAl14_AllergySeverityCode() { + CWE retVal = this.getTypedField(4, 0); + return retVal; + } + + + /** + * Returns all repetitions of Allergy Reaction Code (AL1-5). + */ + public ST[] getAllergyReactionCode() { + ST[] retVal = this.getTypedField(5, new ST[0]); + return retVal; + } + + + /** + * Returns all repetitions of Allergy Reaction Code (AL1-5). + */ + public ST[] getAl15_AllergyReactionCode() { + ST[] retVal = this.getTypedField(5, new ST[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Allergy Reaction Code (AL1-5). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getAllergyReactionCodeReps() { + return this.getReps(5); + } + + + /** + * Returns a specific repetition of + * AL1-5: "Allergy Reaction Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public ST getAllergyReactionCode(int rep) { + ST retVal = this.getTypedField(5, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * AL1-5: "Allergy Reaction Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public ST getAl15_AllergyReactionCode(int rep) { + ST retVal = this.getTypedField(5, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Allergy Reaction Code (AL1-5). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getAl15_AllergyReactionCodeReps() { + return this.getReps(5); + } + + + /** + * Inserts a repetition of + * AL1-5: "Allergy Reaction Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public ST insertAllergyReactionCode(int rep) throws HL7Exception { + return (ST) super.insertRepetition(5, rep); + } + + + /** + * Inserts a repetition of + * AL1-5: "Allergy Reaction Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public ST insertAl15_AllergyReactionCode(int rep) throws HL7Exception { + return (ST) super.insertRepetition(5, rep); + } + + + /** + * Removes a repetition of + * AL1-5: "Allergy Reaction Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public ST removeAllergyReactionCode(int rep) throws HL7Exception { + return (ST) super.removeRepetition(5, rep); + } + + + /** + * Removes a repetition of + * AL1-5: "Allergy Reaction Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public ST removeAl15_AllergyReactionCode(int rep) throws HL7Exception { + return (ST) super.removeRepetition(5, rep); + } + + + + + /** + * Returns + * AL1-6: "Identification Date" - creates it if necessary + */ + public DT getIdentificationDate() { + DT retVal = this.getTypedField(6, 0); + return retVal; + } + + /** + * Returns + * AL1-6: "Identification Date" - creates it if necessary + */ + public DT getAl16_IdentificationDate() { + DT retVal = this.getTypedField(6, 0); + return retVal; + } + + + + + + /** {@inheritDoc} */ + protected Type createNewTypeWithoutReflection(int field) { + switch (field) { + case 0: return new SI(getMessage()); + case 1: return new CWE(getMessage()); + case 2: return new CWE(getMessage()); + case 3: return new CWE(getMessage()); + case 4: return new ST(getMessage()); + case 5: return new DT(getMessage()); + default: return null; + } + } + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/DG1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/DG1.java new file mode 100644 index 00000000000..4c964231714 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/DG1.java @@ -0,0 +1,772 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.segment; + +// import ca.uhn.hl7v2.model.v27.group.*; +import ca.uhn.hl7v2.model.v27.datatype.*; +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import ca.uhn.hl7v2.parser.DefaultModelClassFactory; +import ca.uhn.hl7v2.model.AbstractMessage; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Type; +import ca.uhn.hl7v2.model.AbstractSegment; +import ca.uhn.hl7v2.model.Varies; + + +/** + *

Represents an HL7 DG1 message segment (Diagnosis). + * This segment has the following fields:

+ *
    + *
  • DG1-1: Set ID - DG1 (SI) + *
  • DG1-2: Diagnosis Coding Method (ID) optional + *
  • DG1-3: Diagnosis Code - DG1 (CWE) + *
  • DG1-4: Diagnosis Description (ST) optional + *
  • DG1-5: Diagnosis Date/Time (DTM) optional + *
  • DG1-6: Diagnosis Type (CWE) + *
  • DG1-7: Major Diagnostic Category (CNE) optional + *
  • DG1-8: Diagnostic Related Group (CNE) optional + *
  • DG1-9: DRG Approval Indicator (ID) optional + *
  • DG1-10: DRG Grouper Review Code (CWE) optional + *
  • DG1-11: Outlier Type (CWE) optional + *
  • DG1-12: Outlier Days (NM) optional + *
  • DG1-13: Outlier Cost (CP) optional + *
  • DG1-14: Grouper Version And Type (ST) optional + *
  • DG1-15: Diagnosis Priority (NM) optional + *
  • DG1-16: Diagnosing Clinician (XCN) optional repeating + *
  • DG1-17: Diagnosis Classification (CWE) optional + *
  • DG1-18: Confidential Indicator (ID) optional + *
  • DG1-19: Attestation Date/Time (DTM) optional + *
  • DG1-20: Diagnosis Identifier (EI) optional + *
  • DG1-21: Diagnosis Action Code (ID) optional + *
  • DG1-22: Parent Diagnosis (EI) optional + *
  • DG1-23: DRG CCL Value Code (CWE) optional + *
  • DG1-24: DRG Grouping Usage (ID) optional + *
  • DG1-25: DRG Diagnosis Determination Status (CWE) optional + *
  • DG1-26: Present On Admission (POA) Indicator (CWE) optional + *
+ */ +@SuppressWarnings("unused") +public class DG1 extends AbstractSegment { + + /** + * Creates a new DG1 segment + */ + public DG1(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(SI.class, true, 1, 4, new Object[]{ getMessage() }, "Set ID - DG1"); + this.add(ID.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Coding Method"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Code - DG1"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Description"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Date/Time"); + this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Diagnosis Type"); + this.add(CNE.class, false, 1, 0, new Object[]{ getMessage() }, "Major Diagnostic Category"); + this.add(CNE.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnostic Related Group"); + this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "DRG Approval Indicator"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "DRG Grouper Review Code"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Outlier Type"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Outlier Days"); + this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Outlier Cost"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Grouper Version And Type"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Priority"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Diagnosing Clinician"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Classification"); + this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "Confidential Indicator"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Attestation Date/Time"); + this.add(EI.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Identifier"); + this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(206) }, "Diagnosis Action Code"); + this.add(EI.class, false, 1, 0, new Object[]{ getMessage() }, "Parent Diagnosis"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "DRG CCL Value Code"); + this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "DRG Grouping Usage"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "DRG Diagnosis Determination Status"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Present On Admission (POA) Indicator"); + } catch(HL7Exception e) { + log.error("Unexpected error creating DG1 - this is probably a bug in the source code generator.", e); + } + } + + + + /** + * Returns + * DG1-1: "Set ID - DG1" - creates it if necessary + */ + public SI getSetIDDG1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + /** + * Returns + * DG1-1: "Set ID - DG1" - creates it if necessary + */ + public SI getDg11_SetIDDG1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + + + /** + * Returns + * DG1-2: "Diagnosis Coding Method" - creates it if necessary + */ + public ID getDiagnosisCodingMethod() { + ID retVal = this.getTypedField(2, 0); + return retVal; + } + + /** + * Returns + * DG1-2: "Diagnosis Coding Method" - creates it if necessary + */ + public ID getDg12_DiagnosisCodingMethod() { + ID retVal = this.getTypedField(2, 0); + return retVal; + } + + + + /** + * Returns + * DG1-3: "Diagnosis Code - DG1" - creates it if necessary + */ + public CWE getDiagnosisCodeDG1() { + CWE retVal = this.getTypedField(3, 0); + return retVal; + } + + /** + * Returns + * DG1-3: "Diagnosis Code - DG1" - creates it if necessary + */ + public CWE getDg13_DiagnosisCodeDG1() { + CWE retVal = this.getTypedField(3, 0); + return retVal; + } + + + + /** + * Returns + * DG1-4: "Diagnosis Description" - creates it if necessary + */ + public ST getDiagnosisDescription() { + ST retVal = this.getTypedField(4, 0); + return retVal; + } + + /** + * Returns + * DG1-4: "Diagnosis Description" - creates it if necessary + */ + public ST getDg14_DiagnosisDescription() { + ST retVal = this.getTypedField(4, 0); + return retVal; + } + + + + /** + * Returns + * DG1-5: "Diagnosis Date/Time" - creates it if necessary + */ + public DTM getDiagnosisDateTime() { + DTM retVal = this.getTypedField(5, 0); + return retVal; + } + + /** + * Returns + * DG1-5: "Diagnosis Date/Time" - creates it if necessary + */ + public DTM getDg15_DiagnosisDateTime() { + DTM retVal = this.getTypedField(5, 0); + return retVal; + } + + + + /** + * Returns + * DG1-6: "Diagnosis Type" - creates it if necessary + */ + public CWE getDiagnosisType() { + CWE retVal = this.getTypedField(6, 0); + return retVal; + } + + /** + * Returns + * DG1-6: "Diagnosis Type" - creates it if necessary + */ + public CWE getDg16_DiagnosisType() { + CWE retVal = this.getTypedField(6, 0); + return retVal; + } + + + + /** + * Returns + * DG1-7: "Major Diagnostic Category" - creates it if necessary + */ + public CNE getMajorDiagnosticCategory() { + CNE retVal = this.getTypedField(7, 0); + return retVal; + } + + /** + * Returns + * DG1-7: "Major Diagnostic Category" - creates it if necessary + */ + public CNE getDg17_MajorDiagnosticCategory() { + CNE retVal = this.getTypedField(7, 0); + return retVal; + } + + + + /** + * Returns + * DG1-8: "Diagnostic Related Group" - creates it if necessary + */ + public CNE getDiagnosticRelatedGroup() { + CNE retVal = this.getTypedField(8, 0); + return retVal; + } + + /** + * Returns + * DG1-8: "Diagnostic Related Group" - creates it if necessary + */ + public CNE getDg18_DiagnosticRelatedGroup() { + CNE retVal = this.getTypedField(8, 0); + return retVal; + } + + + + /** + * Returns + * DG1-9: "DRG Approval Indicator" - creates it if necessary + */ + public ID getDRGApprovalIndicator() { + ID retVal = this.getTypedField(9, 0); + return retVal; + } + + /** + * Returns + * DG1-9: "DRG Approval Indicator" - creates it if necessary + */ + public ID getDg19_DRGApprovalIndicator() { + ID retVal = this.getTypedField(9, 0); + return retVal; + } + + + + /** + * Returns + * DG1-10: "DRG Grouper Review Code" - creates it if necessary + */ + public CWE getDRGGrouperReviewCode() { + CWE retVal = this.getTypedField(10, 0); + return retVal; + } + + /** + * Returns + * DG1-10: "DRG Grouper Review Code" - creates it if necessary + */ + public CWE getDg110_DRGGrouperReviewCode() { + CWE retVal = this.getTypedField(10, 0); + return retVal; + } + + + + /** + * Returns + * DG1-11: "Outlier Type" - creates it if necessary + */ + public CWE getOutlierType() { + CWE retVal = this.getTypedField(11, 0); + return retVal; + } + + /** + * Returns + * DG1-11: "Outlier Type" - creates it if necessary + */ + public CWE getDg111_OutlierType() { + CWE retVal = this.getTypedField(11, 0); + return retVal; + } + + + + /** + * Returns + * DG1-12: "Outlier Days" - creates it if necessary + */ + public NM getOutlierDays() { + NM retVal = this.getTypedField(12, 0); + return retVal; + } + + /** + * Returns + * DG1-12: "Outlier Days" - creates it if necessary + */ + public NM getDg112_OutlierDays() { + NM retVal = this.getTypedField(12, 0); + return retVal; + } + + + + /** + * Returns + * DG1-13: "Outlier Cost" - creates it if necessary + */ + public CP getOutlierCost() { + CP retVal = this.getTypedField(13, 0); + return retVal; + } + + /** + * Returns + * DG1-13: "Outlier Cost" - creates it if necessary + */ + public CP getDg113_OutlierCost() { + CP retVal = this.getTypedField(13, 0); + return retVal; + } + + + + /** + * Returns + * DG1-14: "Grouper Version And Type" - creates it if necessary + */ + public ST getGrouperVersionAndType() { + ST retVal = this.getTypedField(14, 0); + return retVal; + } + + /** + * Returns + * DG1-14: "Grouper Version And Type" - creates it if necessary + */ + public ST getDg114_GrouperVersionAndType() { + ST retVal = this.getTypedField(14, 0); + return retVal; + } + + + + /** + * Returns + * DG1-15: "Diagnosis Priority" - creates it if necessary + */ + public NM getDiagnosisPriority() { + NM retVal = this.getTypedField(15, 0); + return retVal; + } + + /** + * Returns + * DG1-15: "Diagnosis Priority" - creates it if necessary + */ + public NM getDg115_DiagnosisPriority() { + NM retVal = this.getTypedField(15, 0); + return retVal; + } + + + /** + * Returns all repetitions of Diagnosing Clinician (DG1-16). + */ + public XCN[] getDiagnosingClinician() { + XCN[] retVal = this.getTypedField(16, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Diagnosing Clinician (DG1-16). + */ + public XCN[] getDg116_DiagnosingClinician() { + XCN[] retVal = this.getTypedField(16, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Diagnosing Clinician (DG1-16). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getDiagnosingClinicianReps() { + return this.getReps(16); + } + + + /** + * Returns a specific repetition of + * DG1-16: "Diagnosing Clinician" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getDiagnosingClinician(int rep) { + XCN retVal = this.getTypedField(16, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * DG1-16: "Diagnosing Clinician" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getDg116_DiagnosingClinician(int rep) { + XCN retVal = this.getTypedField(16, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Diagnosing Clinician (DG1-16). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getDg116_DiagnosingClinicianReps() { + return this.getReps(16); + } + + + /** + * Inserts a repetition of + * DG1-16: "Diagnosing Clinician" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertDiagnosingClinician(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(16, rep); + } + + + /** + * Inserts a repetition of + * DG1-16: "Diagnosing Clinician" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertDg116_DiagnosingClinician(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(16, rep); + } + + + /** + * Removes a repetition of + * DG1-16: "Diagnosing Clinician" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeDiagnosingClinician(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(16, rep); + } + + + /** + * Removes a repetition of + * DG1-16: "Diagnosing Clinician" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeDg116_DiagnosingClinician(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(16, rep); + } + + + + + /** + * Returns + * DG1-17: "Diagnosis Classification" - creates it if necessary + */ + public CWE getDiagnosisClassification() { + CWE retVal = this.getTypedField(17, 0); + return retVal; + } + + /** + * Returns + * DG1-17: "Diagnosis Classification" - creates it if necessary + */ + public CWE getDg117_DiagnosisClassification() { + CWE retVal = this.getTypedField(17, 0); + return retVal; + } + + + + /** + * Returns + * DG1-18: "Confidential Indicator" - creates it if necessary + */ + public ID getConfidentialIndicator() { + ID retVal = this.getTypedField(18, 0); + return retVal; + } + + /** + * Returns + * DG1-18: "Confidential Indicator" - creates it if necessary + */ + public ID getDg118_ConfidentialIndicator() { + ID retVal = this.getTypedField(18, 0); + return retVal; + } + + + + /** + * Returns + * DG1-19: "Attestation Date/Time" - creates it if necessary + */ + public DTM getAttestationDateTime() { + DTM retVal = this.getTypedField(19, 0); + return retVal; + } + + /** + * Returns + * DG1-19: "Attestation Date/Time" - creates it if necessary + */ + public DTM getDg119_AttestationDateTime() { + DTM retVal = this.getTypedField(19, 0); + return retVal; + } + + + + /** + * Returns + * DG1-20: "Diagnosis Identifier" - creates it if necessary + */ + public EI getDiagnosisIdentifier() { + EI retVal = this.getTypedField(20, 0); + return retVal; + } + + /** + * Returns + * DG1-20: "Diagnosis Identifier" - creates it if necessary + */ + public EI getDg120_DiagnosisIdentifier() { + EI retVal = this.getTypedField(20, 0); + return retVal; + } + + + + /** + * Returns + * DG1-21: "Diagnosis Action Code" - creates it if necessary + */ + public ID getDiagnosisActionCode() { + ID retVal = this.getTypedField(21, 0); + return retVal; + } + + /** + * Returns + * DG1-21: "Diagnosis Action Code" - creates it if necessary + */ + public ID getDg121_DiagnosisActionCode() { + ID retVal = this.getTypedField(21, 0); + return retVal; + } + + + + /** + * Returns + * DG1-22: "Parent Diagnosis" - creates it if necessary + */ + public EI getParentDiagnosis() { + EI retVal = this.getTypedField(22, 0); + return retVal; + } + + /** + * Returns + * DG1-22: "Parent Diagnosis" - creates it if necessary + */ + public EI getDg122_ParentDiagnosis() { + EI retVal = this.getTypedField(22, 0); + return retVal; + } + + + + /** + * Returns + * DG1-23: "DRG CCL Value Code" - creates it if necessary + */ + public CWE getDRGCCLValueCode() { + CWE retVal = this.getTypedField(23, 0); + return retVal; + } + + /** + * Returns + * DG1-23: "DRG CCL Value Code" - creates it if necessary + */ + public CWE getDg123_DRGCCLValueCode() { + CWE retVal = this.getTypedField(23, 0); + return retVal; + } + + + + /** + * Returns + * DG1-24: "DRG Grouping Usage" - creates it if necessary + */ + public ID getDRGGroupingUsage() { + ID retVal = this.getTypedField(24, 0); + return retVal; + } + + /** + * Returns + * DG1-24: "DRG Grouping Usage" - creates it if necessary + */ + public ID getDg124_DRGGroupingUsage() { + ID retVal = this.getTypedField(24, 0); + return retVal; + } + + + + /** + * Returns + * DG1-25: "DRG Diagnosis Determination Status" - creates it if necessary + */ + public CWE getDRGDiagnosisDeterminationStatus() { + CWE retVal = this.getTypedField(25, 0); + return retVal; + } + + /** + * Returns + * DG1-25: "DRG Diagnosis Determination Status" - creates it if necessary + */ + public CWE getDg125_DRGDiagnosisDeterminationStatus() { + CWE retVal = this.getTypedField(25, 0); + return retVal; + } + + + + /** + * Returns + * DG1-26: "Present On Admission (POA) Indicator" - creates it if necessary + */ + public CWE getPresentOnAdmissionIndicator() { + CWE retVal = this.getTypedField(26, 0); + return retVal; + } + + /** + * Returns + * DG1-26: "Present On Admission (POA) Indicator" - creates it if necessary + */ + public CWE getDg126_PresentOnAdmissionIndicator() { + CWE retVal = this.getTypedField(26, 0); + return retVal; + } + + + + + + /** {@inheritDoc} */ + protected Type createNewTypeWithoutReflection(int field) { + switch (field) { + case 0: return new SI(getMessage()); + case 1: return new ID(getMessage()); + case 2: return new CWE(getMessage()); + case 3: return new ST(getMessage()); + case 4: return new DTM(getMessage()); + case 5: return new CWE(getMessage()); + case 6: return new CNE(getMessage()); + case 7: return new CNE(getMessage()); + case 8: return new ID(getMessage(), Integer.valueOf( 136 )); + case 9: return new CWE(getMessage()); + case 10: return new CWE(getMessage()); + case 11: return new NM(getMessage()); + case 12: return new CP(getMessage()); + case 13: return new ST(getMessage()); + case 14: return new NM(getMessage()); + case 15: return new XCN(getMessage()); + case 16: return new CWE(getMessage()); + case 17: return new ID(getMessage(), Integer.valueOf( 136 )); + case 18: return new DTM(getMessage()); + case 19: return new EI(getMessage()); + case 20: return new ID(getMessage(), Integer.valueOf( 206 )); + case 21: return new EI(getMessage()); + case 22: return new CWE(getMessage()); + case 23: return new ID(getMessage(), Integer.valueOf( 136 )); + case 24: return new CWE(getMessage()); + case 25: return new CWE(getMessage()); + default: return null; + } + } + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/FT1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/FT1.java new file mode 100644 index 00000000000..8101a355574 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/FT1.java @@ -0,0 +1,1786 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.segment; + +// import ca.uhn.hl7v2.model.v27.group.*; +import ca.uhn.hl7v2.model.v27.datatype.*; +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import ca.uhn.hl7v2.parser.DefaultModelClassFactory; +import ca.uhn.hl7v2.model.AbstractMessage; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Type; +import ca.uhn.hl7v2.model.AbstractSegment; +import ca.uhn.hl7v2.model.Varies; + + +/** + *

Represents an HL7 FT1 message segment (Financial Transaction). + * This segment has the following fields:

+ *
    + *
  • FT1-1: Set ID - FT1 (SI) optional + *
  • FT1-2: Transaction ID (ST) optional + *
  • FT1-3: Transaction Batch ID (ST) optional + *
  • FT1-4: Transaction Date (DR) + *
  • FT1-5: Transaction Posting Date (DTM) optional + *
  • FT1-6: Transaction Type (CWE) + *
  • FT1-7: Transaction Code (CWE) + *
  • FT1-8: Transaction Description (ST) optional + *
  • FT1-9: Transaction Description - Alt (ST) optional + *
  • FT1-10: Transaction Quantity (NM) optional + *
  • FT1-11: Transaction Amount - Extended (CP) optional + *
  • FT1-12: Transaction amount - unit (CP) optional + *
  • FT1-13: Department Code (CWE) optional + *
  • FT1-14: Health Plan ID (CWE) optional + *
  • FT1-15: Insurance Amount (CP) optional + *
  • FT1-16: Assigned Patient Location (PL) optional + *
  • FT1-17: Fee Schedule (CWE) optional + *
  • FT1-18: Patient Type (CWE) optional + *
  • FT1-19: Diagnosis Code - FT1 (CWE) optional repeating + *
  • FT1-20: Performed By Code (XCN) optional repeating + *
  • FT1-21: Ordered By Code (XCN) optional repeating + *
  • FT1-22: Unit Cost (CP) optional + *
  • FT1-23: Filler Order Number (EI) optional + *
  • FT1-24: Entered By Code (XCN) optional repeating + *
  • FT1-25: Procedure Code (CNE) optional + *
  • FT1-26: Procedure Code Modifier (CNE) optional repeating + *
  • FT1-27: Advanced Beneficiary Notice Code (CWE) optional + *
  • FT1-28: Medically Necessary Duplicate Procedure Reason (CWE) optional + *
  • FT1-29: NDC Code (CWE) optional + *
  • FT1-30: Payment Reference ID (CX) optional + *
  • FT1-31: Transaction Reference Key (SI) optional repeating + *
  • FT1-32: Performing Facility (XON) optional repeating + *
  • FT1-33: Ordering Facility (XON) optional + *
  • FT1-34: Item Number (CWE) optional + *
  • FT1-35: Model Number (ST) optional + *
  • FT1-36: Special Processing Code (CWE) optional repeating + *
  • FT1-37: Clinic Code (CWE) optional + *
  • FT1-38: Referral Number (CX) optional + *
  • FT1-39: Authorization Number (CX) optional + *
  • FT1-40: Service Provider Taxonomy Code (CWE) optional + *
  • FT1-41: Revenue Code (CWE) optional + *
  • FT1-42: Prescription Number (ST) optional + *
  • FT1-43: NDC Qty and UOM (CQ) optional + *
+ */ +@SuppressWarnings("unused") +public class FT1 extends AbstractSegment { + + /** + * Creates a new FT1 segment + */ + public FT1(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(SI.class, false, 1, 4, new Object[]{ getMessage() }, "Set ID - FT1"); + this.add(ST.class, false, 1, 12, new Object[]{ getMessage() }, "Transaction ID"); + this.add(ST.class, false, 1, 10, new Object[]{ getMessage() }, "Transaction Batch ID"); + this.add(DR.class, true, 1, 0, new Object[]{ getMessage() }, "Transaction Date"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Posting Date"); + this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Transaction Type"); + this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Transaction Code"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Description"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Description - Alt"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Quantity"); + this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Amount - Extended"); + this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction amount - unit"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Department Code"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Health Plan ID"); + this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Insurance Amount"); + this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Assigned Patient Location"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Fee Schedule"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Patient Type"); + this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Diagnosis Code - FT1"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Performed By Code"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Ordered By Code"); + this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Unit Cost"); + this.add(EI.class, false, 1, 0, new Object[]{ getMessage() }, "Filler Order Number"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Entered By Code"); + this.add(CNE.class, false, 1, 0, new Object[]{ getMessage() }, "Procedure Code"); + this.add(CNE.class, false, 0, 0, new Object[]{ getMessage() }, "Procedure Code Modifier"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Advanced Beneficiary Notice Code"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Medically Necessary Duplicate Procedure Reason"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "NDC Code"); + this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Payment Reference ID"); + this.add(SI.class, false, 0, 4, new Object[]{ getMessage() }, "Transaction Reference Key"); + this.add(XON.class, false, 0, 0, new Object[]{ getMessage() }, "Performing Facility"); + this.add(XON.class, false, 1, 0, new Object[]{ getMessage() }, "Ordering Facility"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Item Number"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Model Number"); + this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Special Processing Code"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Clinic Code"); + this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Referral Number"); + this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Authorization Number"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Service Provider Taxonomy Code"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Revenue Code"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Prescription Number"); + this.add(CQ.class, false, 1, 0, new Object[]{ getMessage() }, "NDC Qty and UOM"); + } catch(HL7Exception e) { + log.error("Unexpected error creating FT1 - this is probably a bug in the source code generator.", e); + } + } + + + + /** + * Returns + * FT1-1: "Set ID - FT1" - creates it if necessary + */ + public SI getSetIDFT1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + /** + * Returns + * FT1-1: "Set ID - FT1" - creates it if necessary + */ + public SI getFt11_SetIDFT1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + + + /** + * Returns + * FT1-2: "Transaction ID" - creates it if necessary + */ + public ST getTransactionID() { + ST retVal = this.getTypedField(2, 0); + return retVal; + } + + /** + * Returns + * FT1-2: "Transaction ID" - creates it if necessary + */ + public ST getFt12_TransactionID() { + ST retVal = this.getTypedField(2, 0); + return retVal; + } + + + + /** + * Returns + * FT1-3: "Transaction Batch ID" - creates it if necessary + */ + public ST getTransactionBatchID() { + ST retVal = this.getTypedField(3, 0); + return retVal; + } + + /** + * Returns + * FT1-3: "Transaction Batch ID" - creates it if necessary + */ + public ST getFt13_TransactionBatchID() { + ST retVal = this.getTypedField(3, 0); + return retVal; + } + + + + /** + * Returns + * FT1-4: "Transaction Date" - creates it if necessary + */ + public DR getTransactionDate() { + DR retVal = this.getTypedField(4, 0); + return retVal; + } + + /** + * Returns + * FT1-4: "Transaction Date" - creates it if necessary + */ + public DR getFt14_TransactionDate() { + DR retVal = this.getTypedField(4, 0); + return retVal; + } + + + + /** + * Returns + * FT1-5: "Transaction Posting Date" - creates it if necessary + */ + public DTM getTransactionPostingDate() { + DTM retVal = this.getTypedField(5, 0); + return retVal; + } + + /** + * Returns + * FT1-5: "Transaction Posting Date" - creates it if necessary + */ + public DTM getFt15_TransactionPostingDate() { + DTM retVal = this.getTypedField(5, 0); + return retVal; + } + + + + /** + * Returns + * FT1-6: "Transaction Type" - creates it if necessary + */ + public CWE getTransactionType() { + CWE retVal = this.getTypedField(6, 0); + return retVal; + } + + /** + * Returns + * FT1-6: "Transaction Type" - creates it if necessary + */ + public CWE getFt16_TransactionType() { + CWE retVal = this.getTypedField(6, 0); + return retVal; + } + + + + /** + * Returns + * FT1-7: "Transaction Code" - creates it if necessary + */ + public CWE getTransactionCode() { + CWE retVal = this.getTypedField(7, 0); + return retVal; + } + + /** + * Returns + * FT1-7: "Transaction Code" - creates it if necessary + */ + public CWE getFt17_TransactionCode() { + CWE retVal = this.getTypedField(7, 0); + return retVal; + } + + + + /** + * Returns + * FT1-8: "Transaction Description" - creates it if necessary + */ + public ST getTransactionDescription() { + ST retVal = this.getTypedField(8, 0); + return retVal; + } + + /** + * Returns + * FT1-8: "Transaction Description" - creates it if necessary + */ + public ST getFt18_TransactionDescription() { + ST retVal = this.getTypedField(8, 0); + return retVal; + } + + + + /** + * Returns + * FT1-9: "Transaction Description - Alt" - creates it if necessary + */ + public ST getTransactionDescriptionAlt() { + ST retVal = this.getTypedField(9, 0); + return retVal; + } + + /** + * Returns + * FT1-9: "Transaction Description - Alt" - creates it if necessary + */ + public ST getFt19_TransactionDescriptionAlt() { + ST retVal = this.getTypedField(9, 0); + return retVal; + } + + + + /** + * Returns + * FT1-10: "Transaction Quantity" - creates it if necessary + */ + public NM getTransactionQuantity() { + NM retVal = this.getTypedField(10, 0); + return retVal; + } + + /** + * Returns + * FT1-10: "Transaction Quantity" - creates it if necessary + */ + public NM getFt110_TransactionQuantity() { + NM retVal = this.getTypedField(10, 0); + return retVal; + } + + + + /** + * Returns + * FT1-11: "Transaction Amount - Extended" - creates it if necessary + */ + public CP getTransactionAmountExtended() { + CP retVal = this.getTypedField(11, 0); + return retVal; + } + + /** + * Returns + * FT1-11: "Transaction Amount - Extended" - creates it if necessary + */ + public CP getFt111_TransactionAmountExtended() { + CP retVal = this.getTypedField(11, 0); + return retVal; + } + + + + /** + * Returns + * FT1-12: "Transaction amount - unit" - creates it if necessary + */ + public CP getTransactionAmountUnit() { + CP retVal = this.getTypedField(12, 0); + return retVal; + } + + /** + * Returns + * FT1-12: "Transaction amount - unit" - creates it if necessary + */ + public CP getFt112_TransactionAmountUnit() { + CP retVal = this.getTypedField(12, 0); + return retVal; + } + + + + /** + * Returns + * FT1-13: "Department Code" - creates it if necessary + */ + public CWE getDepartmentCode() { + CWE retVal = this.getTypedField(13, 0); + return retVal; + } + + /** + * Returns + * FT1-13: "Department Code" - creates it if necessary + */ + public CWE getFt113_DepartmentCode() { + CWE retVal = this.getTypedField(13, 0); + return retVal; + } + + + + /** + * Returns + * FT1-14: "Health Plan ID" - creates it if necessary + */ + public CWE getHealthPlanID() { + CWE retVal = this.getTypedField(14, 0); + return retVal; + } + + /** + * Returns + * FT1-14: "Health Plan ID" - creates it if necessary + */ + public CWE getFt114_HealthPlanID() { + CWE retVal = this.getTypedField(14, 0); + return retVal; + } + + + + /** + * Returns + * FT1-15: "Insurance Amount" - creates it if necessary + */ + public CP getInsuranceAmount() { + CP retVal = this.getTypedField(15, 0); + return retVal; + } + + /** + * Returns + * FT1-15: "Insurance Amount" - creates it if necessary + */ + public CP getFt115_InsuranceAmount() { + CP retVal = this.getTypedField(15, 0); + return retVal; + } + + + + /** + * Returns + * FT1-16: "Assigned Patient Location" - creates it if necessary + */ + public PL getAssignedPatientLocation() { + PL retVal = this.getTypedField(16, 0); + return retVal; + } + + /** + * Returns + * FT1-16: "Assigned Patient Location" - creates it if necessary + */ + public PL getFt116_AssignedPatientLocation() { + PL retVal = this.getTypedField(16, 0); + return retVal; + } + + + + /** + * Returns + * FT1-17: "Fee Schedule" - creates it if necessary + */ + public CWE getFeeSchedule() { + CWE retVal = this.getTypedField(17, 0); + return retVal; + } + + /** + * Returns + * FT1-17: "Fee Schedule" - creates it if necessary + */ + public CWE getFt117_FeeSchedule() { + CWE retVal = this.getTypedField(17, 0); + return retVal; + } + + + + /** + * Returns + * FT1-18: "Patient Type" - creates it if necessary + */ + public CWE getPatientType() { + CWE retVal = this.getTypedField(18, 0); + return retVal; + } + + /** + * Returns + * FT1-18: "Patient Type" - creates it if necessary + */ + public CWE getFt118_PatientType() { + CWE retVal = this.getTypedField(18, 0); + return retVal; + } + + + /** + * Returns all repetitions of Diagnosis Code - FT1 (FT1-19). + */ + public CWE[] getDiagnosisCodeFT1() { + CWE[] retVal = this.getTypedField(19, new CWE[0]); + return retVal; + } + + + /** + * Returns all repetitions of Diagnosis Code - FT1 (FT1-19). + */ + public CWE[] getFt119_DiagnosisCodeFT1() { + CWE[] retVal = this.getTypedField(19, new CWE[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Diagnosis Code - FT1 (FT1-19). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getDiagnosisCodeFT1Reps() { + return this.getReps(19); + } + + + /** + * Returns a specific repetition of + * FT1-19: "Diagnosis Code - FT1" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getDiagnosisCodeFT1(int rep) { + CWE retVal = this.getTypedField(19, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1-19: "Diagnosis Code - FT1" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getFt119_DiagnosisCodeFT1(int rep) { + CWE retVal = this.getTypedField(19, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Diagnosis Code - FT1 (FT1-19). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getFt119_DiagnosisCodeFT1Reps() { + return this.getReps(19); + } + + + /** + * Inserts a repetition of + * FT1-19: "Diagnosis Code - FT1" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertDiagnosisCodeFT1(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(19, rep); + } + + + /** + * Inserts a repetition of + * FT1-19: "Diagnosis Code - FT1" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertFt119_DiagnosisCodeFT1(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(19, rep); + } + + + /** + * Removes a repetition of + * FT1-19: "Diagnosis Code - FT1" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removeDiagnosisCodeFT1(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(19, rep); + } + + + /** + * Removes a repetition of + * FT1-19: "Diagnosis Code - FT1" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removeFt119_DiagnosisCodeFT1(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(19, rep); + } + + + + /** + * Returns all repetitions of Performed By Code (FT1-20). + */ + public XCN[] getPerformedByCode() { + XCN[] retVal = this.getTypedField(20, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Performed By Code (FT1-20). + */ + public XCN[] getFt120_PerformedByCode() { + XCN[] retVal = this.getTypedField(20, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Performed By Code (FT1-20). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPerformedByCodeReps() { + return this.getReps(20); + } + + + /** + * Returns a specific repetition of + * FT1-20: "Performed By Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getPerformedByCode(int rep) { + XCN retVal = this.getTypedField(20, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1-20: "Performed By Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getFt120_PerformedByCode(int rep) { + XCN retVal = this.getTypedField(20, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Performed By Code (FT1-20). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getFt120_PerformedByCodeReps() { + return this.getReps(20); + } + + + /** + * Inserts a repetition of + * FT1-20: "Performed By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertPerformedByCode(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(20, rep); + } + + + /** + * Inserts a repetition of + * FT1-20: "Performed By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertFt120_PerformedByCode(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(20, rep); + } + + + /** + * Removes a repetition of + * FT1-20: "Performed By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removePerformedByCode(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(20, rep); + } + + + /** + * Removes a repetition of + * FT1-20: "Performed By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeFt120_PerformedByCode(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(20, rep); + } + + + + /** + * Returns all repetitions of Ordered By Code (FT1-21). + */ + public XCN[] getOrderedByCode() { + XCN[] retVal = this.getTypedField(21, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Ordered By Code (FT1-21). + */ + public XCN[] getFt121_OrderedByCode() { + XCN[] retVal = this.getTypedField(21, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Ordered By Code (FT1-21). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getOrderedByCodeReps() { + return this.getReps(21); + } + + + /** + * Returns a specific repetition of + * FT1-21: "Ordered By Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getOrderedByCode(int rep) { + XCN retVal = this.getTypedField(21, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1-21: "Ordered By Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getFt121_OrderedByCode(int rep) { + XCN retVal = this.getTypedField(21, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Ordered By Code (FT1-21). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getFt121_OrderedByCodeReps() { + return this.getReps(21); + } + + + /** + * Inserts a repetition of + * FT1-21: "Ordered By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertOrderedByCode(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(21, rep); + } + + + /** + * Inserts a repetition of + * FT1-21: "Ordered By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertFt121_OrderedByCode(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(21, rep); + } + + + /** + * Removes a repetition of + * FT1-21: "Ordered By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeOrderedByCode(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(21, rep); + } + + + /** + * Removes a repetition of + * FT1-21: "Ordered By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeFt121_OrderedByCode(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(21, rep); + } + + + + + /** + * Returns + * FT1-22: "Unit Cost" - creates it if necessary + */ + public CP getUnitCost() { + CP retVal = this.getTypedField(22, 0); + return retVal; + } + + /** + * Returns + * FT1-22: "Unit Cost" - creates it if necessary + */ + public CP getFt122_UnitCost() { + CP retVal = this.getTypedField(22, 0); + return retVal; + } + + + + /** + * Returns + * FT1-23: "Filler Order Number" - creates it if necessary + */ + public EI getFillerOrderNumber() { + EI retVal = this.getTypedField(23, 0); + return retVal; + } + + /** + * Returns + * FT1-23: "Filler Order Number" - creates it if necessary + */ + public EI getFt123_FillerOrderNumber() { + EI retVal = this.getTypedField(23, 0); + return retVal; + } + + + /** + * Returns all repetitions of Entered By Code (FT1-24). + */ + public XCN[] getEnteredByCode() { + XCN[] retVal = this.getTypedField(24, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Entered By Code (FT1-24). + */ + public XCN[] getFt124_EnteredByCode() { + XCN[] retVal = this.getTypedField(24, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Entered By Code (FT1-24). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getEnteredByCodeReps() { + return this.getReps(24); + } + + + /** + * Returns a specific repetition of + * FT1-24: "Entered By Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getEnteredByCode(int rep) { + XCN retVal = this.getTypedField(24, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1-24: "Entered By Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getFt124_EnteredByCode(int rep) { + XCN retVal = this.getTypedField(24, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Entered By Code (FT1-24). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getFt124_EnteredByCodeReps() { + return this.getReps(24); + } + + + /** + * Inserts a repetition of + * FT1-24: "Entered By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertEnteredByCode(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(24, rep); + } + + + /** + * Inserts a repetition of + * FT1-24: "Entered By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertFt124_EnteredByCode(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(24, rep); + } + + + /** + * Removes a repetition of + * FT1-24: "Entered By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeEnteredByCode(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(24, rep); + } + + + /** + * Removes a repetition of + * FT1-24: "Entered By Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeFt124_EnteredByCode(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(24, rep); + } + + + + + /** + * Returns + * FT1-25: "Procedure Code" - creates it if necessary + */ + public CNE getProcedureCode() { + CNE retVal = this.getTypedField(25, 0); + return retVal; + } + + /** + * Returns + * FT1-25: "Procedure Code" - creates it if necessary + */ + public CNE getFt125_ProcedureCode() { + CNE retVal = this.getTypedField(25, 0); + return retVal; + } + + + /** + * Returns all repetitions of Procedure Code Modifier (FT1-26). + */ + public CNE[] getProcedureCodeModifier() { + CNE[] retVal = this.getTypedField(26, new CNE[0]); + return retVal; + } + + + /** + * Returns all repetitions of Procedure Code Modifier (FT1-26). + */ + public CNE[] getFt126_ProcedureCodeModifier() { + CNE[] retVal = this.getTypedField(26, new CNE[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Procedure Code Modifier (FT1-26). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getProcedureCodeModifierReps() { + return this.getReps(26); + } + + + /** + * Returns a specific repetition of + * FT1-26: "Procedure Code Modifier" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CNE getProcedureCodeModifier(int rep) { + CNE retVal = this.getTypedField(26, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1-26: "Procedure Code Modifier" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CNE getFt126_ProcedureCodeModifier(int rep) { + CNE retVal = this.getTypedField(26, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Procedure Code Modifier (FT1-26). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getFt126_ProcedureCodeModifierReps() { + return this.getReps(26); + } + + + /** + * Inserts a repetition of + * FT1-26: "Procedure Code Modifier" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CNE insertProcedureCodeModifier(int rep) throws HL7Exception { + return (CNE) super.insertRepetition(26, rep); + } + + + /** + * Inserts a repetition of + * FT1-26: "Procedure Code Modifier" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CNE insertFt126_ProcedureCodeModifier(int rep) throws HL7Exception { + return (CNE) super.insertRepetition(26, rep); + } + + + /** + * Removes a repetition of + * FT1-26: "Procedure Code Modifier" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CNE removeProcedureCodeModifier(int rep) throws HL7Exception { + return (CNE) super.removeRepetition(26, rep); + } + + + /** + * Removes a repetition of + * FT1-26: "Procedure Code Modifier" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CNE removeFt126_ProcedureCodeModifier(int rep) throws HL7Exception { + return (CNE) super.removeRepetition(26, rep); + } + + + + + /** + * Returns + * FT1-27: "Advanced Beneficiary Notice Code" - creates it if necessary + */ + public CWE getAdvancedBeneficiaryNoticeCode() { + CWE retVal = this.getTypedField(27, 0); + return retVal; + } + + /** + * Returns + * FT1-27: "Advanced Beneficiary Notice Code" - creates it if necessary + */ + public CWE getFt127_AdvancedBeneficiaryNoticeCode() { + CWE retVal = this.getTypedField(27, 0); + return retVal; + } + + + + /** + * Returns + * FT1-28: "Medically Necessary Duplicate Procedure Reason" - creates it if necessary + */ + public CWE getMedicallyNecessaryDuplicateProcedureReason() { + CWE retVal = this.getTypedField(28, 0); + return retVal; + } + + /** + * Returns + * FT1-28: "Medically Necessary Duplicate Procedure Reason" - creates it if necessary + */ + public CWE getFt128_MedicallyNecessaryDuplicateProcedureReason() { + CWE retVal = this.getTypedField(28, 0); + return retVal; + } + + + + /** + * Returns + * FT1-29: "NDC Code" - creates it if necessary + */ + public CWE getNDCCode() { + CWE retVal = this.getTypedField(29, 0); + return retVal; + } + + /** + * Returns + * FT1-29: "NDC Code" - creates it if necessary + */ + public CWE getFt129_NDCCode() { + CWE retVal = this.getTypedField(29, 0); + return retVal; + } + + + + /** + * Returns + * FT1-30: "Payment Reference ID" - creates it if necessary + */ + public CX getPaymentReferenceID() { + CX retVal = this.getTypedField(30, 0); + return retVal; + } + + /** + * Returns + * FT1-30: "Payment Reference ID" - creates it if necessary + */ + public CX getFt130_PaymentReferenceID() { + CX retVal = this.getTypedField(30, 0); + return retVal; + } + + + /** + * Returns all repetitions of Transaction Reference Key (FT1-31). + */ + public SI[] getTransactionReferenceKey() { + SI[] retVal = this.getTypedField(31, new SI[0]); + return retVal; + } + + + /** + * Returns all repetitions of Transaction Reference Key (FT1-31). + */ + public SI[] getFt131_TransactionReferenceKey() { + SI[] retVal = this.getTypedField(31, new SI[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Transaction Reference Key (FT1-31). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getTransactionReferenceKeyReps() { + return this.getReps(31); + } + + + /** + * Returns a specific repetition of + * FT1-31: "Transaction Reference Key" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public SI getTransactionReferenceKey(int rep) { + SI retVal = this.getTypedField(31, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1-31: "Transaction Reference Key" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public SI getFt131_TransactionReferenceKey(int rep) { + SI retVal = this.getTypedField(31, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Transaction Reference Key (FT1-31). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getFt131_TransactionReferenceKeyReps() { + return this.getReps(31); + } + + + /** + * Inserts a repetition of + * FT1-31: "Transaction Reference Key" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public SI insertTransactionReferenceKey(int rep) throws HL7Exception { + return (SI) super.insertRepetition(31, rep); + } + + + /** + * Inserts a repetition of + * FT1-31: "Transaction Reference Key" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public SI insertFt131_TransactionReferenceKey(int rep) throws HL7Exception { + return (SI) super.insertRepetition(31, rep); + } + + + /** + * Removes a repetition of + * FT1-31: "Transaction Reference Key" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public SI removeTransactionReferenceKey(int rep) throws HL7Exception { + return (SI) super.removeRepetition(31, rep); + } + + + /** + * Removes a repetition of + * FT1-31: "Transaction Reference Key" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public SI removeFt131_TransactionReferenceKey(int rep) throws HL7Exception { + return (SI) super.removeRepetition(31, rep); + } + + + + /** + * Returns all repetitions of Performing Facility (FT1-32). + */ + public XON[] getPerformingFacility() { + XON[] retVal = this.getTypedField(32, new XON[0]); + return retVal; + } + + + /** + * Returns all repetitions of Performing Facility (FT1-32). + */ + public XON[] getFt132_PerformingFacility() { + XON[] retVal = this.getTypedField(32, new XON[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Performing Facility (FT1-32). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPerformingFacilityReps() { + return this.getReps(32); + } + + + /** + * Returns a specific repetition of + * FT1-32: "Performing Facility" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XON getPerformingFacility(int rep) { + XON retVal = this.getTypedField(32, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1-32: "Performing Facility" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XON getFt132_PerformingFacility(int rep) { + XON retVal = this.getTypedField(32, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Performing Facility (FT1-32). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getFt132_PerformingFacilityReps() { + return this.getReps(32); + } + + + /** + * Inserts a repetition of + * FT1-32: "Performing Facility" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON insertPerformingFacility(int rep) throws HL7Exception { + return (XON) super.insertRepetition(32, rep); + } + + + /** + * Inserts a repetition of + * FT1-32: "Performing Facility" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON insertFt132_PerformingFacility(int rep) throws HL7Exception { + return (XON) super.insertRepetition(32, rep); + } + + + /** + * Removes a repetition of + * FT1-32: "Performing Facility" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON removePerformingFacility(int rep) throws HL7Exception { + return (XON) super.removeRepetition(32, rep); + } + + + /** + * Removes a repetition of + * FT1-32: "Performing Facility" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON removeFt132_PerformingFacility(int rep) throws HL7Exception { + return (XON) super.removeRepetition(32, rep); + } + + + + + /** + * Returns + * FT1-33: "Ordering Facility" - creates it if necessary + */ + public XON getOrderingFacility() { + XON retVal = this.getTypedField(33, 0); + return retVal; + } + + /** + * Returns + * FT1-33: "Ordering Facility" - creates it if necessary + */ + public XON getFt133_OrderingFacility() { + XON retVal = this.getTypedField(33, 0); + return retVal; + } + + + + /** + * Returns + * FT1-34: "Item Number" - creates it if necessary + */ + public CWE getItemNumber() { + CWE retVal = this.getTypedField(34, 0); + return retVal; + } + + /** + * Returns + * FT1-34: "Item Number" - creates it if necessary + */ + public CWE getFt134_ItemNumber() { + CWE retVal = this.getTypedField(34, 0); + return retVal; + } + + + + /** + * Returns + * FT1-35: "Model Number" - creates it if necessary + */ + public ST getModelNumber() { + ST retVal = this.getTypedField(35, 0); + return retVal; + } + + /** + * Returns + * FT1-35: "Model Number" - creates it if necessary + */ + public ST getFt135_ModelNumber() { + ST retVal = this.getTypedField(35, 0); + return retVal; + } + + + /** + * Returns all repetitions of Special Processing Code (FT1-36). + */ + public CWE[] getSpecialProcessingCode() { + CWE[] retVal = this.getTypedField(36, new CWE[0]); + return retVal; + } + + + /** + * Returns all repetitions of Special Processing Code (FT1-36). + */ + public CWE[] getFt136_SpecialProcessingCode() { + CWE[] retVal = this.getTypedField(36, new CWE[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Special Processing Code (FT1-36). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getSpecialProcessingCodeReps() { + return this.getReps(36); + } + + + /** + * Returns a specific repetition of + * FT1-36: "Special Processing Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getSpecialProcessingCode(int rep) { + CWE retVal = this.getTypedField(36, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * FT1-36: "Special Processing Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getFt136_SpecialProcessingCode(int rep) { + CWE retVal = this.getTypedField(36, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Special Processing Code (FT1-36). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getFt136_SpecialProcessingCodeReps() { + return this.getReps(36); + } + + + /** + * Inserts a repetition of + * FT1-36: "Special Processing Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertSpecialProcessingCode(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(36, rep); + } + + + /** + * Inserts a repetition of + * FT1-36: "Special Processing Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertFt136_SpecialProcessingCode(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(36, rep); + } + + + /** + * Removes a repetition of + * FT1-36: "Special Processing Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removeSpecialProcessingCode(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(36, rep); + } + + + /** + * Removes a repetition of + * FT1-36: "Special Processing Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removeFt136_SpecialProcessingCode(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(36, rep); + } + + + + + /** + * Returns + * FT1-37: "Clinic Code" - creates it if necessary + */ + public CWE getClinicCode() { + CWE retVal = this.getTypedField(37, 0); + return retVal; + } + + /** + * Returns + * FT1-37: "Clinic Code" - creates it if necessary + */ + public CWE getFt137_ClinicCode() { + CWE retVal = this.getTypedField(37, 0); + return retVal; + } + + + + /** + * Returns + * FT1-38: "Referral Number" - creates it if necessary + */ + public CX getReferralNumber() { + CX retVal = this.getTypedField(38, 0); + return retVal; + } + + /** + * Returns + * FT1-38: "Referral Number" - creates it if necessary + */ + public CX getFt138_ReferralNumber() { + CX retVal = this.getTypedField(38, 0); + return retVal; + } + + + + /** + * Returns + * FT1-39: "Authorization Number" - creates it if necessary + */ + public CX getAuthorizationNumber() { + CX retVal = this.getTypedField(39, 0); + return retVal; + } + + /** + * Returns + * FT1-39: "Authorization Number" - creates it if necessary + */ + public CX getFt139_AuthorizationNumber() { + CX retVal = this.getTypedField(39, 0); + return retVal; + } + + + + /** + * Returns + * FT1-40: "Service Provider Taxonomy Code" - creates it if necessary + */ + public CWE getServiceProviderTaxonomyCode() { + CWE retVal = this.getTypedField(40, 0); + return retVal; + } + + /** + * Returns + * FT1-40: "Service Provider Taxonomy Code" - creates it if necessary + */ + public CWE getFt140_ServiceProviderTaxonomyCode() { + CWE retVal = this.getTypedField(40, 0); + return retVal; + } + + + + /** + * Returns + * FT1-41: "Revenue Code" - creates it if necessary + */ + public CWE getRevenueCode() { + CWE retVal = this.getTypedField(41, 0); + return retVal; + } + + /** + * Returns + * FT1-41: "Revenue Code" - creates it if necessary + */ + public CWE getFt141_RevenueCode() { + CWE retVal = this.getTypedField(41, 0); + return retVal; + } + + + + /** + * Returns + * FT1-42: "Prescription Number" - creates it if necessary + */ + public ST getPrescriptionNumber() { + ST retVal = this.getTypedField(42, 0); + return retVal; + } + + /** + * Returns + * FT1-42: "Prescription Number" - creates it if necessary + */ + public ST getFt142_PrescriptionNumber() { + ST retVal = this.getTypedField(42, 0); + return retVal; + } + + + + /** + * Returns + * FT1-43: "NDC Qty and UOM" - creates it if necessary + */ + public CQ getNDCQtyAndUOM() { + CQ retVal = this.getTypedField(43, 0); + return retVal; + } + + /** + * Returns + * FT1-43: "NDC Qty and UOM" - creates it if necessary + */ + public CQ getFt143_NDCQtyAndUOM() { + CQ retVal = this.getTypedField(43, 0); + return retVal; + } + + + + + + /** {@inheritDoc} */ + protected Type createNewTypeWithoutReflection(int field) { + switch (field) { + case 0: return new SI(getMessage()); + case 1: return new ST(getMessage()); + case 2: return new ST(getMessage()); + case 3: return new DR(getMessage()); + case 4: return new DTM(getMessage()); + case 5: return new CWE(getMessage()); + case 6: return new CWE(getMessage()); + case 7: return new ST(getMessage()); + case 8: return new ST(getMessage()); + case 9: return new NM(getMessage()); + case 10: return new CP(getMessage()); + case 11: return new CP(getMessage()); + case 12: return new CWE(getMessage()); + case 13: return new CWE(getMessage()); + case 14: return new CP(getMessage()); + case 15: return new PL(getMessage()); + case 16: return new CWE(getMessage()); + case 17: return new CWE(getMessage()); + case 18: return new CWE(getMessage()); + case 19: return new XCN(getMessage()); + case 20: return new XCN(getMessage()); + case 21: return new CP(getMessage()); + case 22: return new EI(getMessage()); + case 23: return new XCN(getMessage()); + case 24: return new CNE(getMessage()); + case 25: return new CNE(getMessage()); + case 26: return new CWE(getMessage()); + case 27: return new CWE(getMessage()); + case 28: return new CWE(getMessage()); + case 29: return new CX(getMessage()); + case 30: return new SI(getMessage()); + case 31: return new XON(getMessage()); + case 32: return new XON(getMessage()); + case 33: return new CWE(getMessage()); + case 34: return new ST(getMessage()); + case 35: return new CWE(getMessage()); + case 36: return new CWE(getMessage()); + case 37: return new CX(getMessage()); + case 38: return new CX(getMessage()); + case 39: return new CWE(getMessage()); + case 40: return new CWE(getMessage()); + case 41: return new ST(getMessage()); + case 42: return new CQ(getMessage()); + default: return null; + } + } + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN1.java new file mode 100644 index 00000000000..88cb1cce330 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN1.java @@ -0,0 +1,2591 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.segment; + +// import ca.uhn.hl7v2.model.v27.group.*; +import ca.uhn.hl7v2.model.v27.datatype.*; +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import ca.uhn.hl7v2.parser.DefaultModelClassFactory; +import ca.uhn.hl7v2.model.AbstractMessage; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Type; +import ca.uhn.hl7v2.model.AbstractSegment; +import ca.uhn.hl7v2.model.Varies; + + +/** + *

Represents an HL7 IN1 message segment (Insurance). + * This segment has the following fields:

+ *
    + *
  • IN1-1: Set ID - IN1 (SI) + *
  • IN1-2: Health Plan ID (CWE) + *
  • IN1-3: Insurance Company ID (CX) repeating + *
  • IN1-4: Insurance Company Name (XON) optional repeating + *
  • IN1-5: Insurance Company Address (XAD) optional repeating + *
  • IN1-6: Insurance Co Contact Person (XPN) optional repeating + *
  • IN1-7: Insurance Co Phone Number (XTN) optional repeating + *
  • IN1-8: Group Number (ST) optional + *
  • IN1-9: Group Name (XON) optional repeating + *
  • IN1-10: Insured's Group Emp ID (CX) optional repeating + *
  • IN1-11: Insured's Group Emp Name (XON) optional repeating + *
  • IN1-12: Plan Effective Date (DT) optional + *
  • IN1-13: Plan Expiration Date (DT) optional + *
  • IN1-14: Authorization Information (AUI) optional + *
  • IN1-15: Plan Type (CWE) optional + *
  • IN1-16: Name Of Insured (XPN) optional repeating + *
  • IN1-17: Insured's Relationship To Patient (CWE) optional + *
  • IN1-18: Insured's Date Of Birth (DTM) optional + *
  • IN1-19: Insured's Address (XAD) optional repeating + *
  • IN1-20: Assignment Of Benefits (CWE) optional + *
  • IN1-21: Coordination Of Benefits (CWE) optional + *
  • IN1-22: Coord Of Ben. Priority (ST) optional + *
  • IN1-23: Notice Of Admission Flag (ID) optional + *
  • IN1-24: Notice Of Admission Date (DT) optional + *
  • IN1-25: Report Of Eligibility Flag (ID) optional + *
  • IN1-26: Report Of Eligibility Date (DT) optional + *
  • IN1-27: Release Information Code (CWE) optional + *
  • IN1-28: Pre-Admit Cert (PAC) (ST) optional + *
  • IN1-29: Verification Date/Time (DTM) optional + *
  • IN1-30: Verification By (XCN) optional repeating + *
  • IN1-31: Type Of Agreement Code (CWE) optional + *
  • IN1-32: Billing Status (CWE) optional + *
  • IN1-33: Lifetime Reserve Days (NM) optional + *
  • IN1-34: Delay Before L.R. Day (NM) optional + *
  • IN1-35: Company Plan Code (CWE) optional + *
  • IN1-36: Policy Number (ST) optional + *
  • IN1-37: Policy Deductible (CP) optional + *
  • IN1-38: Policy Limit - Amount (CP) optional + *
  • IN1-39: Policy Limit - Days (NM) optional + *
  • IN1-40: Room Rate - Semi-Private (CP) optional + *
  • IN1-41: Room Rate - Private (CP) optional + *
  • IN1-42: Insured's Employment Status (CWE) optional + *
  • IN1-43: Insured's Administrative Sex (CWE) optional + *
  • IN1-44: Insured's Employer's Address (XAD) optional repeating + *
  • IN1-45: Verification Status (ST) optional + *
  • IN1-46: Prior Insurance Plan ID (CWE) optional + *
  • IN1-47: Coverage Type (CWE) optional + *
  • IN1-48: Handicap (CWE) optional + *
  • IN1-49: Insured's ID Number (CX) optional repeating + *
  • IN1-50: Signature Code (CWE) optional + *
  • IN1-51: Signature Code Date (DT) optional + *
  • IN1-52: Insured's Birth Place (ST) optional + *
  • IN1-53: VIP Indicator (CWE) optional + *
  • IN1-54: External Health Plan Identifiers (CX) optional repeating + *
  • IN1-55: Insurance Action Code (ID) optional + *
+ */ +@SuppressWarnings("unused") +public class IN1 extends AbstractSegment { + + /** + * Creates a new IN1 segment + */ + public IN1(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(SI.class, true, 1, 4, new Object[]{ getMessage() }, "Set ID - IN1"); + this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Health Plan ID"); + this.add(CX.class, true, 0, 0, new Object[]{ getMessage() }, "Insurance Company ID"); + this.add(XON.class, false, 0, 0, new Object[]{ getMessage() }, "Insurance Company Name"); + this.add(XAD.class, false, 0, 0, new Object[]{ getMessage() }, "Insurance Company Address"); + this.add(XPN.class, false, 0, 0, new Object[]{ getMessage() }, "Insurance Co Contact Person"); + this.add(XTN.class, false, 0, 0, new Object[]{ getMessage() }, "Insurance Co Phone Number"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Group Number"); + this.add(XON.class, false, 0, 0, new Object[]{ getMessage() }, "Group Name"); + this.add(CX.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's Group Emp ID"); + this.add(XON.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's Group Emp Name"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Plan Effective Date"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Plan Expiration Date"); + this.add(AUI.class, false, 1, 0, new Object[]{ getMessage() }, "Authorization Information"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Plan Type"); + this.add(XPN.class, false, 0, 0, new Object[]{ getMessage() }, "Name Of Insured"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Relationship To Patient"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Date Of Birth"); + this.add(XAD.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's Address"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Assignment Of Benefits"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Coordination Of Benefits"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Coord Of Ben. Priority"); + this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "Notice Of Admission Flag"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Notice Of Admission Date"); + this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "Report Of Eligibility Flag"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Report Of Eligibility Date"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Release Information Code"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Pre-Admit Cert (PAC)"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Verification Date/Time"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Verification By"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Type Of Agreement Code"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Billing Status"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Lifetime Reserve Days"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Delay Before L.R. Day"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Company Plan Code"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Policy Number"); + this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Policy Deductible"); + this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Policy Limit - Amount"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Policy Limit - Days"); + this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Room Rate - Semi-Private"); + this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Room Rate - Private"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Employment Status"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Administrative Sex"); + this.add(XAD.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's Employer's Address"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Verification Status"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Prior Insurance Plan ID"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Coverage Type"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Handicap"); + this.add(CX.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's ID Number"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Signature Code"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Signature Code Date"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Birth Place"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "VIP Indicator"); + this.add(CX.class, false, 0, 0, new Object[]{ getMessage() }, "External Health Plan Identifiers"); + this.add(ID.class, false, 1, 0, new Object[]{ getMessage() }, "Insurance Action Code"); + } catch(HL7Exception e) { + log.error("Unexpected error creating IN1 - this is probably a bug in the source code generator.", e); + } + } + + + + /** + * Returns + * IN1-1: "Set ID - IN1" - creates it if necessary + */ + public SI getSetIDIN1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + /** + * Returns + * IN1-1: "Set ID - IN1" - creates it if necessary + */ + public SI getIn11_SetIDIN1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + + + /** + * Returns + * IN1-2: "Health Plan ID" - creates it if necessary + */ + public CWE getInsurancePlanID() { + CWE retVal = this.getTypedField(2, 0); + return retVal; + } + + /** + * Returns + * IN1-2: "Health Plan ID" - creates it if necessary + */ + public CWE getIn12_InsurancePlanID() { + CWE retVal = this.getTypedField(2, 0); + return retVal; + } + + + /** + * Returns all repetitions of Insurance Company ID (IN1-3). + */ + public CX[] getInsuranceCompanyID() { + CX[] retVal = this.getTypedField(3, new CX[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insurance Company ID (IN1-3). + */ + public CX[] getIn13_InsuranceCompanyID() { + CX[] retVal = this.getTypedField(3, new CX[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insurance Company ID (IN1-3). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuranceCompanyIDReps() { + return this.getReps(3); + } + + + /** + * Returns a specific repetition of + * IN1-3: "Insurance Company ID" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CX getInsuranceCompanyID(int rep) { + CX retVal = this.getTypedField(3, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-3: "Insurance Company ID" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CX getIn13_InsuranceCompanyID(int rep) { + CX retVal = this.getTypedField(3, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insurance Company ID (IN1-3). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn13_InsuranceCompanyIDReps() { + return this.getReps(3); + } + + + /** + * Inserts a repetition of + * IN1-3: "Insurance Company ID" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX insertInsuranceCompanyID(int rep) throws HL7Exception { + return (CX) super.insertRepetition(3, rep); + } + + + /** + * Inserts a repetition of + * IN1-3: "Insurance Company ID" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX insertIn13_InsuranceCompanyID(int rep) throws HL7Exception { + return (CX) super.insertRepetition(3, rep); + } + + + /** + * Removes a repetition of + * IN1-3: "Insurance Company ID" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX removeInsuranceCompanyID(int rep) throws HL7Exception { + return (CX) super.removeRepetition(3, rep); + } + + + /** + * Removes a repetition of + * IN1-3: "Insurance Company ID" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX removeIn13_InsuranceCompanyID(int rep) throws HL7Exception { + return (CX) super.removeRepetition(3, rep); + } + + + + /** + * Returns all repetitions of Insurance Company Name (IN1-4). + */ + public XON[] getInsuranceCompanyName() { + XON[] retVal = this.getTypedField(4, new XON[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insurance Company Name (IN1-4). + */ + public XON[] getIn14_InsuranceCompanyName() { + XON[] retVal = this.getTypedField(4, new XON[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insurance Company Name (IN1-4). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuranceCompanyNameReps() { + return this.getReps(4); + } + + + /** + * Returns a specific repetition of + * IN1-4: "Insurance Company Name" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XON getInsuranceCompanyName(int rep) { + XON retVal = this.getTypedField(4, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-4: "Insurance Company Name" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XON getIn14_InsuranceCompanyName(int rep) { + XON retVal = this.getTypedField(4, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insurance Company Name (IN1-4). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn14_InsuranceCompanyNameReps() { + return this.getReps(4); + } + + + /** + * Inserts a repetition of + * IN1-4: "Insurance Company Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON insertInsuranceCompanyName(int rep) throws HL7Exception { + return (XON) super.insertRepetition(4, rep); + } + + + /** + * Inserts a repetition of + * IN1-4: "Insurance Company Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON insertIn14_InsuranceCompanyName(int rep) throws HL7Exception { + return (XON) super.insertRepetition(4, rep); + } + + + /** + * Removes a repetition of + * IN1-4: "Insurance Company Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON removeInsuranceCompanyName(int rep) throws HL7Exception { + return (XON) super.removeRepetition(4, rep); + } + + + /** + * Removes a repetition of + * IN1-4: "Insurance Company Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON removeIn14_InsuranceCompanyName(int rep) throws HL7Exception { + return (XON) super.removeRepetition(4, rep); + } + + + + /** + * Returns all repetitions of Insurance Company Address (IN1-5). + */ + public XAD[] getInsuranceCompanyAddress() { + XAD[] retVal = this.getTypedField(5, new XAD[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insurance Company Address (IN1-5). + */ + public XAD[] getIn15_InsuranceCompanyAddress() { + XAD[] retVal = this.getTypedField(5, new XAD[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insurance Company Address (IN1-5). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuranceCompanyAddressReps() { + return this.getReps(5); + } + + + /** + * Returns a specific repetition of + * IN1-5: "Insurance Company Address" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XAD getInsuranceCompanyAddress(int rep) { + XAD retVal = this.getTypedField(5, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-5: "Insurance Company Address" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XAD getIn15_InsuranceCompanyAddress(int rep) { + XAD retVal = this.getTypedField(5, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insurance Company Address (IN1-5). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn15_InsuranceCompanyAddressReps() { + return this.getReps(5); + } + + + /** + * Inserts a repetition of + * IN1-5: "Insurance Company Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD insertInsuranceCompanyAddress(int rep) throws HL7Exception { + return (XAD) super.insertRepetition(5, rep); + } + + + /** + * Inserts a repetition of + * IN1-5: "Insurance Company Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD insertIn15_InsuranceCompanyAddress(int rep) throws HL7Exception { + return (XAD) super.insertRepetition(5, rep); + } + + + /** + * Removes a repetition of + * IN1-5: "Insurance Company Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD removeInsuranceCompanyAddress(int rep) throws HL7Exception { + return (XAD) super.removeRepetition(5, rep); + } + + + /** + * Removes a repetition of + * IN1-5: "Insurance Company Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD removeIn15_InsuranceCompanyAddress(int rep) throws HL7Exception { + return (XAD) super.removeRepetition(5, rep); + } + + + + /** + * Returns all repetitions of Insurance Co Contact Person (IN1-6). + */ + public XPN[] getInsuranceCoContactPerson() { + XPN[] retVal = this.getTypedField(6, new XPN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insurance Co Contact Person (IN1-6). + */ + public XPN[] getIn16_InsuranceCoContactPerson() { + XPN[] retVal = this.getTypedField(6, new XPN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insurance Co Contact Person (IN1-6). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuranceCoContactPersonReps() { + return this.getReps(6); + } + + + /** + * Returns a specific repetition of + * IN1-6: "Insurance Co Contact Person" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XPN getInsuranceCoContactPerson(int rep) { + XPN retVal = this.getTypedField(6, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-6: "Insurance Co Contact Person" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XPN getIn16_InsuranceCoContactPerson(int rep) { + XPN retVal = this.getTypedField(6, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insurance Co Contact Person (IN1-6). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn16_InsuranceCoContactPersonReps() { + return this.getReps(6); + } + + + /** + * Inserts a repetition of + * IN1-6: "Insurance Co Contact Person" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XPN insertInsuranceCoContactPerson(int rep) throws HL7Exception { + return (XPN) super.insertRepetition(6, rep); + } + + + /** + * Inserts a repetition of + * IN1-6: "Insurance Co Contact Person" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XPN insertIn16_InsuranceCoContactPerson(int rep) throws HL7Exception { + return (XPN) super.insertRepetition(6, rep); + } + + + /** + * Removes a repetition of + * IN1-6: "Insurance Co Contact Person" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XPN removeInsuranceCoContactPerson(int rep) throws HL7Exception { + return (XPN) super.removeRepetition(6, rep); + } + + + /** + * Removes a repetition of + * IN1-6: "Insurance Co Contact Person" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XPN removeIn16_InsuranceCoContactPerson(int rep) throws HL7Exception { + return (XPN) super.removeRepetition(6, rep); + } + + + + /** + * Returns all repetitions of Insurance Co Phone Number (IN1-7). + */ + public XTN[] getInsuranceCoPhoneNumber() { + XTN[] retVal = this.getTypedField(7, new XTN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insurance Co Phone Number (IN1-7). + */ + public XTN[] getIn17_InsuranceCoPhoneNumber() { + XTN[] retVal = this.getTypedField(7, new XTN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insurance Co Phone Number (IN1-7). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuranceCoPhoneNumberReps() { + return this.getReps(7); + } + + + /** + * Returns a specific repetition of + * IN1-7: "Insurance Co Phone Number" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XTN getInsuranceCoPhoneNumber(int rep) { + XTN retVal = this.getTypedField(7, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-7: "Insurance Co Phone Number" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XTN getIn17_InsuranceCoPhoneNumber(int rep) { + XTN retVal = this.getTypedField(7, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insurance Co Phone Number (IN1-7). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn17_InsuranceCoPhoneNumberReps() { + return this.getReps(7); + } + + + /** + * Inserts a repetition of + * IN1-7: "Insurance Co Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN insertInsuranceCoPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.insertRepetition(7, rep); + } + + + /** + * Inserts a repetition of + * IN1-7: "Insurance Co Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN insertIn17_InsuranceCoPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.insertRepetition(7, rep); + } + + + /** + * Removes a repetition of + * IN1-7: "Insurance Co Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN removeInsuranceCoPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.removeRepetition(7, rep); + } + + + /** + * Removes a repetition of + * IN1-7: "Insurance Co Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN removeIn17_InsuranceCoPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.removeRepetition(7, rep); + } + + + + + /** + * Returns + * IN1-8: "Group Number" - creates it if necessary + */ + public ST getGroupNumber() { + ST retVal = this.getTypedField(8, 0); + return retVal; + } + + /** + * Returns + * IN1-8: "Group Number" - creates it if necessary + */ + public ST getIn18_GroupNumber() { + ST retVal = this.getTypedField(8, 0); + return retVal; + } + + + /** + * Returns all repetitions of Group Name (IN1-9). + */ + public XON[] getGroupName() { + XON[] retVal = this.getTypedField(9, new XON[0]); + return retVal; + } + + + /** + * Returns all repetitions of Group Name (IN1-9). + */ + public XON[] getIn19_GroupName() { + XON[] retVal = this.getTypedField(9, new XON[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Group Name (IN1-9). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getGroupNameReps() { + return this.getReps(9); + } + + + /** + * Returns a specific repetition of + * IN1-9: "Group Name" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XON getGroupName(int rep) { + XON retVal = this.getTypedField(9, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-9: "Group Name" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XON getIn19_GroupName(int rep) { + XON retVal = this.getTypedField(9, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Group Name (IN1-9). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn19_GroupNameReps() { + return this.getReps(9); + } + + + /** + * Inserts a repetition of + * IN1-9: "Group Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON insertGroupName(int rep) throws HL7Exception { + return (XON) super.insertRepetition(9, rep); + } + + + /** + * Inserts a repetition of + * IN1-9: "Group Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON insertIn19_GroupName(int rep) throws HL7Exception { + return (XON) super.insertRepetition(9, rep); + } + + + /** + * Removes a repetition of + * IN1-9: "Group Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON removeGroupName(int rep) throws HL7Exception { + return (XON) super.removeRepetition(9, rep); + } + + + /** + * Removes a repetition of + * IN1-9: "Group Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON removeIn19_GroupName(int rep) throws HL7Exception { + return (XON) super.removeRepetition(9, rep); + } + + + + /** + * Returns all repetitions of Insured's Group Emp ID (IN1-10). + */ + public CX[] getInsuredSGroupEmpID() { + CX[] retVal = this.getTypedField(10, new CX[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insured's Group Emp ID (IN1-10). + */ + public CX[] getIn110_InsuredSGroupEmpID() { + CX[] retVal = this.getTypedField(10, new CX[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insured's Group Emp ID (IN1-10). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuredSGroupEmpIDReps() { + return this.getReps(10); + } + + + /** + * Returns a specific repetition of + * IN1-10: "Insured's Group Emp ID" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CX getInsuredSGroupEmpID(int rep) { + CX retVal = this.getTypedField(10, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-10: "Insured's Group Emp ID" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CX getIn110_InsuredSGroupEmpID(int rep) { + CX retVal = this.getTypedField(10, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insured's Group Emp ID (IN1-10). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn110_InsuredSGroupEmpIDReps() { + return this.getReps(10); + } + + + /** + * Inserts a repetition of + * IN1-10: "Insured's Group Emp ID" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX insertInsuredSGroupEmpID(int rep) throws HL7Exception { + return (CX) super.insertRepetition(10, rep); + } + + + /** + * Inserts a repetition of + * IN1-10: "Insured's Group Emp ID" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX insertIn110_InsuredSGroupEmpID(int rep) throws HL7Exception { + return (CX) super.insertRepetition(10, rep); + } + + + /** + * Removes a repetition of + * IN1-10: "Insured's Group Emp ID" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX removeInsuredSGroupEmpID(int rep) throws HL7Exception { + return (CX) super.removeRepetition(10, rep); + } + + + /** + * Removes a repetition of + * IN1-10: "Insured's Group Emp ID" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX removeIn110_InsuredSGroupEmpID(int rep) throws HL7Exception { + return (CX) super.removeRepetition(10, rep); + } + + + + /** + * Returns all repetitions of Insured's Group Emp Name (IN1-11). + */ + public XON[] getInsuredSGroupEmpName() { + XON[] retVal = this.getTypedField(11, new XON[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insured's Group Emp Name (IN1-11). + */ + public XON[] getIn111_InsuredSGroupEmpName() { + XON[] retVal = this.getTypedField(11, new XON[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insured's Group Emp Name (IN1-11). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuredSGroupEmpNameReps() { + return this.getReps(11); + } + + + /** + * Returns a specific repetition of + * IN1-11: "Insured's Group Emp Name" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XON getInsuredSGroupEmpName(int rep) { + XON retVal = this.getTypedField(11, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-11: "Insured's Group Emp Name" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XON getIn111_InsuredSGroupEmpName(int rep) { + XON retVal = this.getTypedField(11, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insured's Group Emp Name (IN1-11). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn111_InsuredSGroupEmpNameReps() { + return this.getReps(11); + } + + + /** + * Inserts a repetition of + * IN1-11: "Insured's Group Emp Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON insertInsuredSGroupEmpName(int rep) throws HL7Exception { + return (XON) super.insertRepetition(11, rep); + } + + + /** + * Inserts a repetition of + * IN1-11: "Insured's Group Emp Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON insertIn111_InsuredSGroupEmpName(int rep) throws HL7Exception { + return (XON) super.insertRepetition(11, rep); + } + + + /** + * Removes a repetition of + * IN1-11: "Insured's Group Emp Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON removeInsuredSGroupEmpName(int rep) throws HL7Exception { + return (XON) super.removeRepetition(11, rep); + } + + + /** + * Removes a repetition of + * IN1-11: "Insured's Group Emp Name" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XON removeIn111_InsuredSGroupEmpName(int rep) throws HL7Exception { + return (XON) super.removeRepetition(11, rep); + } + + + + + /** + * Returns + * IN1-12: "Plan Effective Date" - creates it if necessary + */ + public DT getPlanEffectiveDate() { + DT retVal = this.getTypedField(12, 0); + return retVal; + } + + /** + * Returns + * IN1-12: "Plan Effective Date" - creates it if necessary + */ + public DT getIn112_PlanEffectiveDate() { + DT retVal = this.getTypedField(12, 0); + return retVal; + } + + + + /** + * Returns + * IN1-13: "Plan Expiration Date" - creates it if necessary + */ + public DT getPlanExpirationDate() { + DT retVal = this.getTypedField(13, 0); + return retVal; + } + + /** + * Returns + * IN1-13: "Plan Expiration Date" - creates it if necessary + */ + public DT getIn113_PlanExpirationDate() { + DT retVal = this.getTypedField(13, 0); + return retVal; + } + + + + /** + * Returns + * IN1-14: "Authorization Information" - creates it if necessary + */ + public AUI getAuthorizationInformation() { + AUI retVal = this.getTypedField(14, 0); + return retVal; + } + + /** + * Returns + * IN1-14: "Authorization Information" - creates it if necessary + */ + public AUI getIn114_AuthorizationInformation() { + AUI retVal = this.getTypedField(14, 0); + return retVal; + } + + + + /** + * Returns + * IN1-15: "Plan Type" - creates it if necessary + */ + public CWE getPlanType() { + CWE retVal = this.getTypedField(15, 0); + return retVal; + } + + /** + * Returns + * IN1-15: "Plan Type" - creates it if necessary + */ + public CWE getIn115_PlanType() { + CWE retVal = this.getTypedField(15, 0); + return retVal; + } + + + /** + * Returns all repetitions of Name Of Insured (IN1-16). + */ + public XPN[] getNameOfInsured() { + XPN[] retVal = this.getTypedField(16, new XPN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Name Of Insured (IN1-16). + */ + public XPN[] getIn116_NameOfInsured() { + XPN[] retVal = this.getTypedField(16, new XPN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Name Of Insured (IN1-16). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getNameOfInsuredReps() { + return this.getReps(16); + } + + + /** + * Returns a specific repetition of + * IN1-16: "Name Of Insured" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XPN getNameOfInsured(int rep) { + XPN retVal = this.getTypedField(16, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-16: "Name Of Insured" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XPN getIn116_NameOfInsured(int rep) { + XPN retVal = this.getTypedField(16, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Name Of Insured (IN1-16). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn116_NameOfInsuredReps() { + return this.getReps(16); + } + + + /** + * Inserts a repetition of + * IN1-16: "Name Of Insured" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XPN insertNameOfInsured(int rep) throws HL7Exception { + return (XPN) super.insertRepetition(16, rep); + } + + + /** + * Inserts a repetition of + * IN1-16: "Name Of Insured" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XPN insertIn116_NameOfInsured(int rep) throws HL7Exception { + return (XPN) super.insertRepetition(16, rep); + } + + + /** + * Removes a repetition of + * IN1-16: "Name Of Insured" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XPN removeNameOfInsured(int rep) throws HL7Exception { + return (XPN) super.removeRepetition(16, rep); + } + + + /** + * Removes a repetition of + * IN1-16: "Name Of Insured" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XPN removeIn116_NameOfInsured(int rep) throws HL7Exception { + return (XPN) super.removeRepetition(16, rep); + } + + + + + /** + * Returns + * IN1-17: "Insured's Relationship To Patient" - creates it if necessary + */ + public CWE getInsuredSRelationshipToPatient() { + CWE retVal = this.getTypedField(17, 0); + return retVal; + } + + /** + * Returns + * IN1-17: "Insured's Relationship To Patient" - creates it if necessary + */ + public CWE getIn117_InsuredSRelationshipToPatient() { + CWE retVal = this.getTypedField(17, 0); + return retVal; + } + + + + /** + * Returns + * IN1-18: "Insured's Date Of Birth" - creates it if necessary + */ + public DTM getInsuredSDateOfBirth() { + DTM retVal = this.getTypedField(18, 0); + return retVal; + } + + /** + * Returns + * IN1-18: "Insured's Date Of Birth" - creates it if necessary + */ + public DTM getIn118_InsuredSDateOfBirth() { + DTM retVal = this.getTypedField(18, 0); + return retVal; + } + + + /** + * Returns all repetitions of Insured's Address (IN1-19). + */ + public XAD[] getInsuredSAddress() { + XAD[] retVal = this.getTypedField(19, new XAD[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insured's Address (IN1-19). + */ + public XAD[] getIn119_InsuredSAddress() { + XAD[] retVal = this.getTypedField(19, new XAD[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insured's Address (IN1-19). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuredSAddressReps() { + return this.getReps(19); + } + + + /** + * Returns a specific repetition of + * IN1-19: "Insured's Address" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XAD getInsuredSAddress(int rep) { + XAD retVal = this.getTypedField(19, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-19: "Insured's Address" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XAD getIn119_InsuredSAddress(int rep) { + XAD retVal = this.getTypedField(19, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insured's Address (IN1-19). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn119_InsuredSAddressReps() { + return this.getReps(19); + } + + + /** + * Inserts a repetition of + * IN1-19: "Insured's Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD insertInsuredSAddress(int rep) throws HL7Exception { + return (XAD) super.insertRepetition(19, rep); + } + + + /** + * Inserts a repetition of + * IN1-19: "Insured's Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD insertIn119_InsuredSAddress(int rep) throws HL7Exception { + return (XAD) super.insertRepetition(19, rep); + } + + + /** + * Removes a repetition of + * IN1-19: "Insured's Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD removeInsuredSAddress(int rep) throws HL7Exception { + return (XAD) super.removeRepetition(19, rep); + } + + + /** + * Removes a repetition of + * IN1-19: "Insured's Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD removeIn119_InsuredSAddress(int rep) throws HL7Exception { + return (XAD) super.removeRepetition(19, rep); + } + + + + + /** + * Returns + * IN1-20: "Assignment Of Benefits" - creates it if necessary + */ + public CWE getAssignmentOfBenefits() { + CWE retVal = this.getTypedField(20, 0); + return retVal; + } + + /** + * Returns + * IN1-20: "Assignment Of Benefits" - creates it if necessary + */ + public CWE getIn120_AssignmentOfBenefits() { + CWE retVal = this.getTypedField(20, 0); + return retVal; + } + + + + /** + * Returns + * IN1-21: "Coordination Of Benefits" - creates it if necessary + */ + public CWE getCoordinationOfBenefits() { + CWE retVal = this.getTypedField(21, 0); + return retVal; + } + + /** + * Returns + * IN1-21: "Coordination Of Benefits" - creates it if necessary + */ + public CWE getIn121_CoordinationOfBenefits() { + CWE retVal = this.getTypedField(21, 0); + return retVal; + } + + + + /** + * Returns + * IN1-22: "Coord Of Ben. Priority" - creates it if necessary + */ + public ST getCoordOfBenPriority() { + ST retVal = this.getTypedField(22, 0); + return retVal; + } + + /** + * Returns + * IN1-22: "Coord Of Ben. Priority" - creates it if necessary + */ + public ST getIn122_CoordOfBenPriority() { + ST retVal = this.getTypedField(22, 0); + return retVal; + } + + + + /** + * Returns + * IN1-23: "Notice Of Admission Flag" - creates it if necessary + */ + public ID getNoticeOfAdmissionFlag() { + ID retVal = this.getTypedField(23, 0); + return retVal; + } + + /** + * Returns + * IN1-23: "Notice Of Admission Flag" - creates it if necessary + */ + public ID getIn123_NoticeOfAdmissionFlag() { + ID retVal = this.getTypedField(23, 0); + return retVal; + } + + + + /** + * Returns + * IN1-24: "Notice Of Admission Date" - creates it if necessary + */ + public DT getNoticeOfAdmissionDate() { + DT retVal = this.getTypedField(24, 0); + return retVal; + } + + /** + * Returns + * IN1-24: "Notice Of Admission Date" - creates it if necessary + */ + public DT getIn124_NoticeOfAdmissionDate() { + DT retVal = this.getTypedField(24, 0); + return retVal; + } + + + + /** + * Returns + * IN1-25: "Report Of Eligibility Flag" - creates it if necessary + */ + public ID getReportOfEligibilityFlag() { + ID retVal = this.getTypedField(25, 0); + return retVal; + } + + /** + * Returns + * IN1-25: "Report Of Eligibility Flag" - creates it if necessary + */ + public ID getIn125_ReportOfEligibilityFlag() { + ID retVal = this.getTypedField(25, 0); + return retVal; + } + + + + /** + * Returns + * IN1-26: "Report Of Eligibility Date" - creates it if necessary + */ + public DT getReportOfEligibilityDate() { + DT retVal = this.getTypedField(26, 0); + return retVal; + } + + /** + * Returns + * IN1-26: "Report Of Eligibility Date" - creates it if necessary + */ + public DT getIn126_ReportOfEligibilityDate() { + DT retVal = this.getTypedField(26, 0); + return retVal; + } + + + + /** + * Returns + * IN1-27: "Release Information Code" - creates it if necessary + */ + public CWE getReleaseInformationCode() { + CWE retVal = this.getTypedField(27, 0); + return retVal; + } + + /** + * Returns + * IN1-27: "Release Information Code" - creates it if necessary + */ + public CWE getIn127_ReleaseInformationCode() { + CWE retVal = this.getTypedField(27, 0); + return retVal; + } + + + + /** + * Returns + * IN1-28: "Pre-Admit Cert (PAC)" - creates it if necessary + */ + public ST getPreAdmitCert() { + ST retVal = this.getTypedField(28, 0); + return retVal; + } + + /** + * Returns + * IN1-28: "Pre-Admit Cert (PAC)" - creates it if necessary + */ + public ST getIn128_PreAdmitCert() { + ST retVal = this.getTypedField(28, 0); + return retVal; + } + + + + /** + * Returns + * IN1-29: "Verification Date/Time" - creates it if necessary + */ + public DTM getVerificationDateTime() { + DTM retVal = this.getTypedField(29, 0); + return retVal; + } + + /** + * Returns + * IN1-29: "Verification Date/Time" - creates it if necessary + */ + public DTM getIn129_VerificationDateTime() { + DTM retVal = this.getTypedField(29, 0); + return retVal; + } + + + /** + * Returns all repetitions of Verification By (IN1-30). + */ + public XCN[] getVerificationBy() { + XCN[] retVal = this.getTypedField(30, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Verification By (IN1-30). + */ + public XCN[] getIn130_VerificationBy() { + XCN[] retVal = this.getTypedField(30, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Verification By (IN1-30). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getVerificationByReps() { + return this.getReps(30); + } + + + /** + * Returns a specific repetition of + * IN1-30: "Verification By" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getVerificationBy(int rep) { + XCN retVal = this.getTypedField(30, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-30: "Verification By" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getIn130_VerificationBy(int rep) { + XCN retVal = this.getTypedField(30, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Verification By (IN1-30). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn130_VerificationByReps() { + return this.getReps(30); + } + + + /** + * Inserts a repetition of + * IN1-30: "Verification By" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertVerificationBy(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(30, rep); + } + + + /** + * Inserts a repetition of + * IN1-30: "Verification By" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertIn130_VerificationBy(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(30, rep); + } + + + /** + * Removes a repetition of + * IN1-30: "Verification By" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeVerificationBy(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(30, rep); + } + + + /** + * Removes a repetition of + * IN1-30: "Verification By" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeIn130_VerificationBy(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(30, rep); + } + + + + + /** + * Returns + * IN1-31: "Type Of Agreement Code" - creates it if necessary + */ + public CWE getTypeOfAgreementCode() { + CWE retVal = this.getTypedField(31, 0); + return retVal; + } + + /** + * Returns + * IN1-31: "Type Of Agreement Code" - creates it if necessary + */ + public CWE getIn131_TypeOfAgreementCode() { + CWE retVal = this.getTypedField(31, 0); + return retVal; + } + + + + /** + * Returns + * IN1-32: "Billing Status" - creates it if necessary + */ + public CWE getBillingStatus() { + CWE retVal = this.getTypedField(32, 0); + return retVal; + } + + /** + * Returns + * IN1-32: "Billing Status" - creates it if necessary + */ + public CWE getIn132_BillingStatus() { + CWE retVal = this.getTypedField(32, 0); + return retVal; + } + + + + /** + * Returns + * IN1-33: "Lifetime Reserve Days" - creates it if necessary + */ + public NM getLifetimeReserveDays() { + NM retVal = this.getTypedField(33, 0); + return retVal; + } + + /** + * Returns + * IN1-33: "Lifetime Reserve Days" - creates it if necessary + */ + public NM getIn133_LifetimeReserveDays() { + NM retVal = this.getTypedField(33, 0); + return retVal; + } + + + + /** + * Returns + * IN1-34: "Delay Before L.R. Day" - creates it if necessary + */ + public NM getDelayBeforeLRDay() { + NM retVal = this.getTypedField(34, 0); + return retVal; + } + + /** + * Returns + * IN1-34: "Delay Before L.R. Day" - creates it if necessary + */ + public NM getIn134_DelayBeforeLRDay() { + NM retVal = this.getTypedField(34, 0); + return retVal; + } + + + + /** + * Returns + * IN1-35: "Company Plan Code" - creates it if necessary + */ + public CWE getCompanyPlanCode() { + CWE retVal = this.getTypedField(35, 0); + return retVal; + } + + /** + * Returns + * IN1-35: "Company Plan Code" - creates it if necessary + */ + public CWE getIn135_CompanyPlanCode() { + CWE retVal = this.getTypedField(35, 0); + return retVal; + } + + + + /** + * Returns + * IN1-36: "Policy Number" - creates it if necessary + */ + public ST getPolicyNumber() { + ST retVal = this.getTypedField(36, 0); + return retVal; + } + + /** + * Returns + * IN1-36: "Policy Number" - creates it if necessary + */ + public ST getIn136_PolicyNumber() { + ST retVal = this.getTypedField(36, 0); + return retVal; + } + + + + /** + * Returns + * IN1-37: "Policy Deductible" - creates it if necessary + */ + public CP getPolicyDeductible() { + CP retVal = this.getTypedField(37, 0); + return retVal; + } + + /** + * Returns + * IN1-37: "Policy Deductible" - creates it if necessary + */ + public CP getIn137_PolicyDeductible() { + CP retVal = this.getTypedField(37, 0); + return retVal; + } + + + + /** + * Returns + * IN1-38: "Policy Limit - Amount" - creates it if necessary + */ + public CP getPolicyLimitAmount() { + CP retVal = this.getTypedField(38, 0); + return retVal; + } + + /** + * Returns + * IN1-38: "Policy Limit - Amount" - creates it if necessary + */ + public CP getIn138_PolicyLimitAmount() { + CP retVal = this.getTypedField(38, 0); + return retVal; + } + + + + /** + * Returns + * IN1-39: "Policy Limit - Days" - creates it if necessary + */ + public NM getPolicyLimitDays() { + NM retVal = this.getTypedField(39, 0); + return retVal; + } + + /** + * Returns + * IN1-39: "Policy Limit - Days" - creates it if necessary + */ + public NM getIn139_PolicyLimitDays() { + NM retVal = this.getTypedField(39, 0); + return retVal; + } + + + + /** + * Returns + * IN1-40: "Room Rate - Semi-Private" - creates it if necessary + */ + public CP getRoomRateSemiPrivate() { + CP retVal = this.getTypedField(40, 0); + return retVal; + } + + /** + * Returns + * IN1-40: "Room Rate - Semi-Private" - creates it if necessary + */ + public CP getIn140_RoomRateSemiPrivate() { + CP retVal = this.getTypedField(40, 0); + return retVal; + } + + + + /** + * Returns + * IN1-41: "Room Rate - Private" - creates it if necessary + */ + public CP getRoomRatePrivate() { + CP retVal = this.getTypedField(41, 0); + return retVal; + } + + /** + * Returns + * IN1-41: "Room Rate - Private" - creates it if necessary + */ + public CP getIn141_RoomRatePrivate() { + CP retVal = this.getTypedField(41, 0); + return retVal; + } + + + + /** + * Returns + * IN1-42: "Insured's Employment Status" - creates it if necessary + */ + public CWE getInsuredSEmploymentStatus() { + CWE retVal = this.getTypedField(42, 0); + return retVal; + } + + /** + * Returns + * IN1-42: "Insured's Employment Status" - creates it if necessary + */ + public CWE getIn142_InsuredSEmploymentStatus() { + CWE retVal = this.getTypedField(42, 0); + return retVal; + } + + + + /** + * Returns + * IN1-43: "Insured's Administrative Sex" - creates it if necessary + */ + public CWE getInsuredSAdministrativeSex() { + CWE retVal = this.getTypedField(43, 0); + return retVal; + } + + /** + * Returns + * IN1-43: "Insured's Administrative Sex" - creates it if necessary + */ + public CWE getIn143_InsuredSAdministrativeSex() { + CWE retVal = this.getTypedField(43, 0); + return retVal; + } + + + /** + * Returns all repetitions of Insured's Employer's Address (IN1-44). + */ + public XAD[] getInsuredSEmployerSAddress() { + XAD[] retVal = this.getTypedField(44, new XAD[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insured's Employer's Address (IN1-44). + */ + public XAD[] getIn144_InsuredSEmployerSAddress() { + XAD[] retVal = this.getTypedField(44, new XAD[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insured's Employer's Address (IN1-44). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuredSEmployerSAddressReps() { + return this.getReps(44); + } + + + /** + * Returns a specific repetition of + * IN1-44: "Insured's Employer's Address" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XAD getInsuredSEmployerSAddress(int rep) { + XAD retVal = this.getTypedField(44, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-44: "Insured's Employer's Address" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XAD getIn144_InsuredSEmployerSAddress(int rep) { + XAD retVal = this.getTypedField(44, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insured's Employer's Address (IN1-44). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn144_InsuredSEmployerSAddressReps() { + return this.getReps(44); + } + + + /** + * Inserts a repetition of + * IN1-44: "Insured's Employer's Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD insertInsuredSEmployerSAddress(int rep) throws HL7Exception { + return (XAD) super.insertRepetition(44, rep); + } + + + /** + * Inserts a repetition of + * IN1-44: "Insured's Employer's Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD insertIn144_InsuredSEmployerSAddress(int rep) throws HL7Exception { + return (XAD) super.insertRepetition(44, rep); + } + + + /** + * Removes a repetition of + * IN1-44: "Insured's Employer's Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD removeInsuredSEmployerSAddress(int rep) throws HL7Exception { + return (XAD) super.removeRepetition(44, rep); + } + + + /** + * Removes a repetition of + * IN1-44: "Insured's Employer's Address" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XAD removeIn144_InsuredSEmployerSAddress(int rep) throws HL7Exception { + return (XAD) super.removeRepetition(44, rep); + } + + + + + /** + * Returns + * IN1-45: "Verification Status" - creates it if necessary + */ + public ST getVerificationStatus() { + ST retVal = this.getTypedField(45, 0); + return retVal; + } + + /** + * Returns + * IN1-45: "Verification Status" - creates it if necessary + */ + public ST getIn145_VerificationStatus() { + ST retVal = this.getTypedField(45, 0); + return retVal; + } + + + + /** + * Returns + * IN1-46: "Prior Insurance Plan ID" - creates it if necessary + */ + public CWE getPriorInsurancePlanID() { + CWE retVal = this.getTypedField(46, 0); + return retVal; + } + + /** + * Returns + * IN1-46: "Prior Insurance Plan ID" - creates it if necessary + */ + public CWE getIn146_PriorInsurancePlanID() { + CWE retVal = this.getTypedField(46, 0); + return retVal; + } + + + + /** + * Returns + * IN1-47: "Coverage Type" - creates it if necessary + */ + public CWE getCoverageType() { + CWE retVal = this.getTypedField(47, 0); + return retVal; + } + + /** + * Returns + * IN1-47: "Coverage Type" - creates it if necessary + */ + public CWE getIn147_CoverageType() { + CWE retVal = this.getTypedField(47, 0); + return retVal; + } + + + + /** + * Returns + * IN1-48: "Handicap" - creates it if necessary + */ + public CWE getHandicap() { + CWE retVal = this.getTypedField(48, 0); + return retVal; + } + + /** + * Returns + * IN1-48: "Handicap" - creates it if necessary + */ + public CWE getIn148_Handicap() { + CWE retVal = this.getTypedField(48, 0); + return retVal; + } + + + /** + * Returns all repetitions of Insured's ID Number (IN1-49). + */ + public CX[] getInsuredSIDNumber() { + CX[] retVal = this.getTypedField(49, new CX[0]); + return retVal; + } + + + /** + * Returns all repetitions of Insured's ID Number (IN1-49). + */ + public CX[] getIn149_InsuredSIDNumber() { + CX[] retVal = this.getTypedField(49, new CX[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Insured's ID Number (IN1-49). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getInsuredSIDNumberReps() { + return this.getReps(49); + } + + + /** + * Returns a specific repetition of + * IN1-49: "Insured's ID Number" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CX getInsuredSIDNumber(int rep) { + CX retVal = this.getTypedField(49, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-49: "Insured's ID Number" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CX getIn149_InsuredSIDNumber(int rep) { + CX retVal = this.getTypedField(49, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Insured's ID Number (IN1-49). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn149_InsuredSIDNumberReps() { + return this.getReps(49); + } + + + /** + * Inserts a repetition of + * IN1-49: "Insured's ID Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX insertInsuredSIDNumber(int rep) throws HL7Exception { + return (CX) super.insertRepetition(49, rep); + } + + + /** + * Inserts a repetition of + * IN1-49: "Insured's ID Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX insertIn149_InsuredSIDNumber(int rep) throws HL7Exception { + return (CX) super.insertRepetition(49, rep); + } + + + /** + * Removes a repetition of + * IN1-49: "Insured's ID Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX removeInsuredSIDNumber(int rep) throws HL7Exception { + return (CX) super.removeRepetition(49, rep); + } + + + /** + * Removes a repetition of + * IN1-49: "Insured's ID Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX removeIn149_InsuredSIDNumber(int rep) throws HL7Exception { + return (CX) super.removeRepetition(49, rep); + } + + + + + /** + * Returns + * IN1-50: "Signature Code" - creates it if necessary + */ + public CWE getSignatureCode() { + CWE retVal = this.getTypedField(50, 0); + return retVal; + } + + /** + * Returns + * IN1-50: "Signature Code" - creates it if necessary + */ + public CWE getIn150_SignatureCode() { + CWE retVal = this.getTypedField(50, 0); + return retVal; + } + + + + /** + * Returns + * IN1-51: "Signature Code Date" - creates it if necessary + */ + public DT getSignatureCodeDate() { + DT retVal = this.getTypedField(51, 0); + return retVal; + } + + /** + * Returns + * IN1-51: "Signature Code Date" - creates it if necessary + */ + public DT getIn151_SignatureCodeDate() { + DT retVal = this.getTypedField(51, 0); + return retVal; + } + + + + /** + * Returns + * IN1-52: "Insured's Birth Place" - creates it if necessary + */ + public ST getInsuredSBirthPlace() { + ST retVal = this.getTypedField(52, 0); + return retVal; + } + + /** + * Returns + * IN1-52: "Insured's Birth Place" - creates it if necessary + */ + public ST getIn152_InsuredSBirthPlace() { + ST retVal = this.getTypedField(52, 0); + return retVal; + } + + + + /** + * Returns + * IN1-53: "VIP Indicator" - creates it if necessary + */ + public CWE getVIPIndicator() { + CWE retVal = this.getTypedField(53, 0); + return retVal; + } + + /** + * Returns + * IN1-53: "VIP Indicator" - creates it if necessary + */ + public CWE getIn153_VIPIndicator() { + CWE retVal = this.getTypedField(53, 0); + return retVal; + } + + + /** + * Returns all repetitions of External Health Plan Identifiers (IN1-54). + */ + public CX[] getExternalHealthPlanIdentifiers() { + CX[] retVal = this.getTypedField(54, new CX[0]); + return retVal; + } + + + /** + * Returns all repetitions of External Health Plan Identifiers (IN1-54). + */ + public CX[] getIn154_ExternalHealthPlanIdentifiers() { + CX[] retVal = this.getTypedField(54, new CX[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of External Health Plan Identifiers (IN1-54). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getExternalHealthPlanIdentifiersReps() { + return this.getReps(54); + } + + + /** + * Returns a specific repetition of + * IN1-54: "External Health Plan Identifiers" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CX getExternalHealthPlanIdentifiers(int rep) { + CX retVal = this.getTypedField(54, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN1-54: "External Health Plan Identifiers" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CX getIn154_ExternalHealthPlanIdentifiers(int rep) { + CX retVal = this.getTypedField(54, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of External Health Plan Identifiers (IN1-54). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn154_ExternalHealthPlanIdentifiersReps() { + return this.getReps(54); + } + + + /** + * Inserts a repetition of + * IN1-54: "External Health Plan Identifiers" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX insertExternalHealthPlanIdentifiers(int rep) throws HL7Exception { + return (CX) super.insertRepetition(54, rep); + } + + + /** + * Inserts a repetition of + * IN1-54: "External Health Plan Identifiers" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX insertIn154_ExternalHealthPlanIdentifiers(int rep) throws HL7Exception { + return (CX) super.insertRepetition(54, rep); + } + + + /** + * Removes a repetition of + * IN1-54: "External Health Plan Identifiers" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX removeExternalHealthPlanIdentifiers(int rep) throws HL7Exception { + return (CX) super.removeRepetition(54, rep); + } + + + /** + * Removes a repetition of + * IN1-54: "External Health Plan Identifiers" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CX removeIn154_ExternalHealthPlanIdentifiers(int rep) throws HL7Exception { + return (CX) super.removeRepetition(54, rep); + } + + + /** + * Returns + * IN1-55: "Insurance Action Code" - creates it if necessary + */ + public ID getInsuranceActionCode() { + ID retVal = this.getTypedField(55, 0); + return retVal; + } + + /** + * Returns + * IN1-55: "Insurance Action Code" - creates it if necessary + */ + public ID getIn155_InsuranceActionCode() { + ID retVal = this.getTypedField(55, 0); + return retVal; + } + + + /** {@inheritDoc} */ + protected Type createNewTypeWithoutReflection(int field) { + switch (field) { + case 0: return new SI(getMessage()); + case 1: return new CWE(getMessage()); + case 2: return new CX(getMessage()); + case 3: return new XON(getMessage()); + case 4: return new XAD(getMessage()); + case 5: return new XPN(getMessage()); + case 6: return new XTN(getMessage()); + case 7: return new ST(getMessage()); + case 8: return new XON(getMessage()); + case 9: return new CX(getMessage()); + case 10: return new XON(getMessage()); + case 11: return new DT(getMessage()); + case 12: return new DT(getMessage()); + case 13: return new AUI(getMessage()); + case 14: return new CWE(getMessage()); + case 15: return new XPN(getMessage()); + case 16: return new CWE(getMessage()); + case 17: return new DTM(getMessage()); + case 18: return new XAD(getMessage()); + case 19: return new CWE(getMessage()); + case 20: return new CWE(getMessage()); + case 21: return new ST(getMessage()); + case 22: return new ID(getMessage(), Integer.valueOf( 136 )); + case 23: return new DT(getMessage()); + case 24: return new ID(getMessage(), Integer.valueOf( 136 )); + case 25: return new DT(getMessage()); + case 26: return new CWE(getMessage()); + case 27: return new ST(getMessage()); + case 28: return new DTM(getMessage()); + case 29: return new XCN(getMessage()); + case 30: return new CWE(getMessage()); + case 31: return new CWE(getMessage()); + case 32: return new NM(getMessage()); + case 33: return new NM(getMessage()); + case 34: return new CWE(getMessage()); + case 35: return new ST(getMessage()); + case 36: return new CP(getMessage()); + case 37: return new CP(getMessage()); + case 38: return new NM(getMessage()); + case 39: return new CP(getMessage()); + case 40: return new CP(getMessage()); + case 41: return new CWE(getMessage()); + case 42: return new CWE(getMessage()); + case 43: return new XAD(getMessage()); + case 44: return new ST(getMessage()); + case 45: return new CWE(getMessage()); + case 46: return new CWE(getMessage()); + case 47: return new CWE(getMessage()); + case 48: return new CX(getMessage()); + case 49: return new CWE(getMessage()); + case 50: return new DT(getMessage()); + case 51: return new ST(getMessage()); + case 52: return new CWE(getMessage()); + case 53: return new CX(getMessage()); + case 54: return new ID(getMessage()); + default: return null; + } + } + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN3.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN3.java new file mode 100644 index 00000000000..102be847e20 --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN3.java @@ -0,0 +1,1415 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.segment; + +// import ca.uhn.hl7v2.model.v27.group.*; +import ca.uhn.hl7v2.model.v27.datatype.*; +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import ca.uhn.hl7v2.parser.DefaultModelClassFactory; +import ca.uhn.hl7v2.model.AbstractMessage; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Type; +import ca.uhn.hl7v2.model.AbstractSegment; +import ca.uhn.hl7v2.model.Varies; + + +/** + *

Represents an HL7 IN3 message segment (Insurance Additional Information, Certification). + * This segment has the following fields:

+ *
    + *
  • IN3-1: Set ID - IN3 (SI) + *
  • IN3-2: Certification Number (CX) optional + *
  • IN3-3: Certified By (XCN) optional repeating + *
  • IN3-4: Certification Required (ID) optional + *
  • IN3-5: Penalty (MOP) optional + *
  • IN3-6: Certification Date/Time (DTM) optional + *
  • IN3-7: Certification Modify Date/Time (DTM) optional + *
  • IN3-8: Operator (XCN) optional repeating + *
  • IN3-9: Certification Begin Date (DT) optional + *
  • IN3-10: Certification End Date (DT) optional + *
  • IN3-11: Days (DTN) optional + *
  • IN3-12: Non-Concur Code/Description (CWE) optional + *
  • IN3-13: Non-Concur Effective Date/Time (DTM) optional + *
  • IN3-14: Physician Reviewer (XCN) optional repeating + *
  • IN3-15: Certification Contact (ST) optional + *
  • IN3-16: Certification Contact Phone Number (XTN) optional repeating + *
  • IN3-17: Appeal Reason (CWE) optional + *
  • IN3-18: Certification Agency (CWE) optional + *
  • IN3-19: Certification Agency Phone Number (XTN) optional repeating + *
  • IN3-20: Pre-Certification Requirement (ICD) optional repeating + *
  • IN3-21: Case Manager (ST) optional + *
  • IN3-22: Second Opinion Date (DT) optional + *
  • IN3-23: Second Opinion Status (CWE) optional + *
  • IN3-24: Second Opinion Documentation Received (CWE) optional repeating + *
  • IN3-25: Second Opinion Physician (XCN) optional repeating + *
  • IN3-26: Certification Type (CWE) optional + *
  • IN3-27: Certification Category (CWE) optional + *
+ */ +@SuppressWarnings("unused") +public class IN3 extends AbstractSegment { + + /** + * Creates a new IN3 segment + */ + public IN3(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(SI.class, true, 1, 4, new Object[]{ getMessage() }, "Set ID - IN3"); + this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Number"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Certified By"); + this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "Certification Required"); + this.add(MOP.class, false, 1, 0, new Object[]{ getMessage() }, "Penalty"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Date/Time"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Modify Date/Time"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Operator"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Begin Date"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Certification End Date"); + this.add(DTN.class, false, 1, 0, new Object[]{ getMessage() }, "Days"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Non-Concur Code/Description"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Non-Concur Effective Date/Time"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Physician Reviewer"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Contact"); + this.add(XTN.class, false, 0, 0, new Object[]{ getMessage() }, "Certification Contact Phone Number"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Appeal Reason"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Agency"); + this.add(XTN.class, false, 0, 0, new Object[]{ getMessage() }, "Certification Agency Phone Number"); + this.add(ICD.class, false, 0, 0, new Object[]{ getMessage() }, "Pre-Certification Requirement"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Case Manager"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Second Opinion Date"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Second Opinion Status"); + this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Second Opinion Documentation Received"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Second Opinion Physician"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Type"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Category"); + } catch(HL7Exception e) { + log.error("Unexpected error creating IN3 - this is probably a bug in the source code generator.", e); + } + } + + + + /** + * Returns + * IN3-1: "Set ID - IN3" - creates it if necessary + */ + public SI getSetIDIN3() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + /** + * Returns + * IN3-1: "Set ID - IN3" - creates it if necessary + */ + public SI getIn31_SetIDIN3() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + + + /** + * Returns + * IN3-2: "Certification Number" - creates it if necessary + */ + public CX getCertificationNumber() { + CX retVal = this.getTypedField(2, 0); + return retVal; + } + + /** + * Returns + * IN3-2: "Certification Number" - creates it if necessary + */ + public CX getIn32_CertificationNumber() { + CX retVal = this.getTypedField(2, 0); + return retVal; + } + + + /** + * Returns all repetitions of Certified By (IN3-3). + */ + public XCN[] getCertifiedBy() { + XCN[] retVal = this.getTypedField(3, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Certified By (IN3-3). + */ + public XCN[] getIn33_CertifiedBy() { + XCN[] retVal = this.getTypedField(3, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Certified By (IN3-3). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getCertifiedByReps() { + return this.getReps(3); + } + + + /** + * Returns a specific repetition of + * IN3-3: "Certified By" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getCertifiedBy(int rep) { + XCN retVal = this.getTypedField(3, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN3-3: "Certified By" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getIn33_CertifiedBy(int rep) { + XCN retVal = this.getTypedField(3, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Certified By (IN3-3). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn33_CertifiedByReps() { + return this.getReps(3); + } + + + /** + * Inserts a repetition of + * IN3-3: "Certified By" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertCertifiedBy(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(3, rep); + } + + + /** + * Inserts a repetition of + * IN3-3: "Certified By" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertIn33_CertifiedBy(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(3, rep); + } + + + /** + * Removes a repetition of + * IN3-3: "Certified By" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeCertifiedBy(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(3, rep); + } + + + /** + * Removes a repetition of + * IN3-3: "Certified By" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeIn33_CertifiedBy(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(3, rep); + } + + + + + /** + * Returns + * IN3-4: "Certification Required" - creates it if necessary + */ + public ID getCertificationRequired() { + ID retVal = this.getTypedField(4, 0); + return retVal; + } + + /** + * Returns + * IN3-4: "Certification Required" - creates it if necessary + */ + public ID getIn34_CertificationRequired() { + ID retVal = this.getTypedField(4, 0); + return retVal; + } + + + + /** + * Returns + * IN3-5: "Penalty" - creates it if necessary + */ + public MOP getPenalty() { + MOP retVal = this.getTypedField(5, 0); + return retVal; + } + + /** + * Returns + * IN3-5: "Penalty" - creates it if necessary + */ + public MOP getIn35_Penalty() { + MOP retVal = this.getTypedField(5, 0); + return retVal; + } + + + + /** + * Returns + * IN3-6: "Certification Date/Time" - creates it if necessary + */ + public DTM getCertificationDateTime() { + DTM retVal = this.getTypedField(6, 0); + return retVal; + } + + /** + * Returns + * IN3-6: "Certification Date/Time" - creates it if necessary + */ + public DTM getIn36_CertificationDateTime() { + DTM retVal = this.getTypedField(6, 0); + return retVal; + } + + + + /** + * Returns + * IN3-7: "Certification Modify Date/Time" - creates it if necessary + */ + public DTM getCertificationModifyDateTime() { + DTM retVal = this.getTypedField(7, 0); + return retVal; + } + + /** + * Returns + * IN3-7: "Certification Modify Date/Time" - creates it if necessary + */ + public DTM getIn37_CertificationModifyDateTime() { + DTM retVal = this.getTypedField(7, 0); + return retVal; + } + + + /** + * Returns all repetitions of Operator (IN3-8). + */ + public XCN[] getOperator() { + XCN[] retVal = this.getTypedField(8, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Operator (IN3-8). + */ + public XCN[] getIn38_Operator() { + XCN[] retVal = this.getTypedField(8, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Operator (IN3-8). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getOperatorReps() { + return this.getReps(8); + } + + + /** + * Returns a specific repetition of + * IN3-8: "Operator" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getOperator(int rep) { + XCN retVal = this.getTypedField(8, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN3-8: "Operator" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getIn38_Operator(int rep) { + XCN retVal = this.getTypedField(8, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Operator (IN3-8). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn38_OperatorReps() { + return this.getReps(8); + } + + + /** + * Inserts a repetition of + * IN3-8: "Operator" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertOperator(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(8, rep); + } + + + /** + * Inserts a repetition of + * IN3-8: "Operator" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertIn38_Operator(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(8, rep); + } + + + /** + * Removes a repetition of + * IN3-8: "Operator" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeOperator(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(8, rep); + } + + + /** + * Removes a repetition of + * IN3-8: "Operator" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeIn38_Operator(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(8, rep); + } + + + + + /** + * Returns + * IN3-9: "Certification Begin Date" - creates it if necessary + */ + public DT getCertificationBeginDate() { + DT retVal = this.getTypedField(9, 0); + return retVal; + } + + /** + * Returns + * IN3-9: "Certification Begin Date" - creates it if necessary + */ + public DT getIn39_CertificationBeginDate() { + DT retVal = this.getTypedField(9, 0); + return retVal; + } + + + + /** + * Returns + * IN3-10: "Certification End Date" - creates it if necessary + */ + public DT getCertificationEndDate() { + DT retVal = this.getTypedField(10, 0); + return retVal; + } + + /** + * Returns + * IN3-10: "Certification End Date" - creates it if necessary + */ + public DT getIn310_CertificationEndDate() { + DT retVal = this.getTypedField(10, 0); + return retVal; + } + + + + /** + * Returns + * IN3-11: "Days" - creates it if necessary + */ + public DTN getDays() { + DTN retVal = this.getTypedField(11, 0); + return retVal; + } + + /** + * Returns + * IN3-11: "Days" - creates it if necessary + */ + public DTN getIn311_Days() { + DTN retVal = this.getTypedField(11, 0); + return retVal; + } + + + + /** + * Returns + * IN3-12: "Non-Concur Code/Description" - creates it if necessary + */ + public CWE getNonConcurCodeDescription() { + CWE retVal = this.getTypedField(12, 0); + return retVal; + } + + /** + * Returns + * IN3-12: "Non-Concur Code/Description" - creates it if necessary + */ + public CWE getIn312_NonConcurCodeDescription() { + CWE retVal = this.getTypedField(12, 0); + return retVal; + } + + + + /** + * Returns + * IN3-13: "Non-Concur Effective Date/Time" - creates it if necessary + */ + public DTM getNonConcurEffectiveDateTime() { + DTM retVal = this.getTypedField(13, 0); + return retVal; + } + + /** + * Returns + * IN3-13: "Non-Concur Effective Date/Time" - creates it if necessary + */ + public DTM getIn313_NonConcurEffectiveDateTime() { + DTM retVal = this.getTypedField(13, 0); + return retVal; + } + + + /** + * Returns all repetitions of Physician Reviewer (IN3-14). + */ + public XCN[] getPhysicianReviewer() { + XCN[] retVal = this.getTypedField(14, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Physician Reviewer (IN3-14). + */ + public XCN[] getIn314_PhysicianReviewer() { + XCN[] retVal = this.getTypedField(14, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Physician Reviewer (IN3-14). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPhysicianReviewerReps() { + return this.getReps(14); + } + + + /** + * Returns a specific repetition of + * IN3-14: "Physician Reviewer" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getPhysicianReviewer(int rep) { + XCN retVal = this.getTypedField(14, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN3-14: "Physician Reviewer" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getIn314_PhysicianReviewer(int rep) { + XCN retVal = this.getTypedField(14, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Physician Reviewer (IN3-14). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn314_PhysicianReviewerReps() { + return this.getReps(14); + } + + + /** + * Inserts a repetition of + * IN3-14: "Physician Reviewer" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertPhysicianReviewer(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(14, rep); + } + + + /** + * Inserts a repetition of + * IN3-14: "Physician Reviewer" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertIn314_PhysicianReviewer(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(14, rep); + } + + + /** + * Removes a repetition of + * IN3-14: "Physician Reviewer" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removePhysicianReviewer(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(14, rep); + } + + + /** + * Removes a repetition of + * IN3-14: "Physician Reviewer" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeIn314_PhysicianReviewer(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(14, rep); + } + + + + + /** + * Returns + * IN3-15: "Certification Contact" - creates it if necessary + */ + public ST getCertificationContact() { + ST retVal = this.getTypedField(15, 0); + return retVal; + } + + /** + * Returns + * IN3-15: "Certification Contact" - creates it if necessary + */ + public ST getIn315_CertificationContact() { + ST retVal = this.getTypedField(15, 0); + return retVal; + } + + + /** + * Returns all repetitions of Certification Contact Phone Number (IN3-16). + */ + public XTN[] getCertificationContactPhoneNumber() { + XTN[] retVal = this.getTypedField(16, new XTN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Certification Contact Phone Number (IN3-16). + */ + public XTN[] getIn316_CertificationContactPhoneNumber() { + XTN[] retVal = this.getTypedField(16, new XTN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Certification Contact Phone Number (IN3-16). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getCertificationContactPhoneNumberReps() { + return this.getReps(16); + } + + + /** + * Returns a specific repetition of + * IN3-16: "Certification Contact Phone Number" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XTN getCertificationContactPhoneNumber(int rep) { + XTN retVal = this.getTypedField(16, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN3-16: "Certification Contact Phone Number" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XTN getIn316_CertificationContactPhoneNumber(int rep) { + XTN retVal = this.getTypedField(16, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Certification Contact Phone Number (IN3-16). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn316_CertificationContactPhoneNumberReps() { + return this.getReps(16); + } + + + /** + * Inserts a repetition of + * IN3-16: "Certification Contact Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN insertCertificationContactPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.insertRepetition(16, rep); + } + + + /** + * Inserts a repetition of + * IN3-16: "Certification Contact Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN insertIn316_CertificationContactPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.insertRepetition(16, rep); + } + + + /** + * Removes a repetition of + * IN3-16: "Certification Contact Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN removeCertificationContactPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.removeRepetition(16, rep); + } + + + /** + * Removes a repetition of + * IN3-16: "Certification Contact Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN removeIn316_CertificationContactPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.removeRepetition(16, rep); + } + + + + + /** + * Returns + * IN3-17: "Appeal Reason" - creates it if necessary + */ + public CWE getAppealReason() { + CWE retVal = this.getTypedField(17, 0); + return retVal; + } + + /** + * Returns + * IN3-17: "Appeal Reason" - creates it if necessary + */ + public CWE getIn317_AppealReason() { + CWE retVal = this.getTypedField(17, 0); + return retVal; + } + + + + /** + * Returns + * IN3-18: "Certification Agency" - creates it if necessary + */ + public CWE getCertificationAgency() { + CWE retVal = this.getTypedField(18, 0); + return retVal; + } + + /** + * Returns + * IN3-18: "Certification Agency" - creates it if necessary + */ + public CWE getIn318_CertificationAgency() { + CWE retVal = this.getTypedField(18, 0); + return retVal; + } + + + /** + * Returns all repetitions of Certification Agency Phone Number (IN3-19). + */ + public XTN[] getCertificationAgencyPhoneNumber() { + XTN[] retVal = this.getTypedField(19, new XTN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Certification Agency Phone Number (IN3-19). + */ + public XTN[] getIn319_CertificationAgencyPhoneNumber() { + XTN[] retVal = this.getTypedField(19, new XTN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Certification Agency Phone Number (IN3-19). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getCertificationAgencyPhoneNumberReps() { + return this.getReps(19); + } + + + /** + * Returns a specific repetition of + * IN3-19: "Certification Agency Phone Number" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XTN getCertificationAgencyPhoneNumber(int rep) { + XTN retVal = this.getTypedField(19, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN3-19: "Certification Agency Phone Number" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XTN getIn319_CertificationAgencyPhoneNumber(int rep) { + XTN retVal = this.getTypedField(19, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Certification Agency Phone Number (IN3-19). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn319_CertificationAgencyPhoneNumberReps() { + return this.getReps(19); + } + + + /** + * Inserts a repetition of + * IN3-19: "Certification Agency Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN insertCertificationAgencyPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.insertRepetition(19, rep); + } + + + /** + * Inserts a repetition of + * IN3-19: "Certification Agency Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN insertIn319_CertificationAgencyPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.insertRepetition(19, rep); + } + + + /** + * Removes a repetition of + * IN3-19: "Certification Agency Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN removeCertificationAgencyPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.removeRepetition(19, rep); + } + + + /** + * Removes a repetition of + * IN3-19: "Certification Agency Phone Number" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XTN removeIn319_CertificationAgencyPhoneNumber(int rep) throws HL7Exception { + return (XTN) super.removeRepetition(19, rep); + } + + + + /** + * Returns all repetitions of Pre-Certification Requirement (IN3-20). + */ + public ICD[] getPreCertificationRequirement() { + ICD[] retVal = this.getTypedField(20, new ICD[0]); + return retVal; + } + + + /** + * Returns all repetitions of Pre-Certification Requirement (IN3-20). + */ + public ICD[] getIn320_PreCertificationRequirement() { + ICD[] retVal = this.getTypedField(20, new ICD[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Pre-Certification Requirement (IN3-20). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPreCertificationRequirementReps() { + return this.getReps(20); + } + + + /** + * Returns a specific repetition of + * IN3-20: "Pre-Certification Requirement" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public ICD getPreCertificationRequirement(int rep) { + ICD retVal = this.getTypedField(20, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN3-20: "Pre-Certification Requirement" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public ICD getIn320_PreCertificationRequirement(int rep) { + ICD retVal = this.getTypedField(20, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Pre-Certification Requirement (IN3-20). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn320_PreCertificationRequirementReps() { + return this.getReps(20); + } + + + /** + * Inserts a repetition of + * IN3-20: "Pre-Certification Requirement" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public ICD insertPreCertificationRequirement(int rep) throws HL7Exception { + return (ICD) super.insertRepetition(20, rep); + } + + + /** + * Inserts a repetition of + * IN3-20: "Pre-Certification Requirement" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public ICD insertIn320_PreCertificationRequirement(int rep) throws HL7Exception { + return (ICD) super.insertRepetition(20, rep); + } + + + /** + * Removes a repetition of + * IN3-20: "Pre-Certification Requirement" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public ICD removePreCertificationRequirement(int rep) throws HL7Exception { + return (ICD) super.removeRepetition(20, rep); + } + + + /** + * Removes a repetition of + * IN3-20: "Pre-Certification Requirement" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public ICD removeIn320_PreCertificationRequirement(int rep) throws HL7Exception { + return (ICD) super.removeRepetition(20, rep); + } + + + + + /** + * Returns + * IN3-21: "Case Manager" - creates it if necessary + */ + public ST getCaseManager() { + ST retVal = this.getTypedField(21, 0); + return retVal; + } + + /** + * Returns + * IN3-21: "Case Manager" - creates it if necessary + */ + public ST getIn321_CaseManager() { + ST retVal = this.getTypedField(21, 0); + return retVal; + } + + + + /** + * Returns + * IN3-22: "Second Opinion Date" - creates it if necessary + */ + public DT getSecondOpinionDate() { + DT retVal = this.getTypedField(22, 0); + return retVal; + } + + /** + * Returns + * IN3-22: "Second Opinion Date" - creates it if necessary + */ + public DT getIn322_SecondOpinionDate() { + DT retVal = this.getTypedField(22, 0); + return retVal; + } + + + + /** + * Returns + * IN3-23: "Second Opinion Status" - creates it if necessary + */ + public CWE getSecondOpinionStatus() { + CWE retVal = this.getTypedField(23, 0); + return retVal; + } + + /** + * Returns + * IN3-23: "Second Opinion Status" - creates it if necessary + */ + public CWE getIn323_SecondOpinionStatus() { + CWE retVal = this.getTypedField(23, 0); + return retVal; + } + + + /** + * Returns all repetitions of Second Opinion Documentation Received (IN3-24). + */ + public CWE[] getSecondOpinionDocumentationReceived() { + CWE[] retVal = this.getTypedField(24, new CWE[0]); + return retVal; + } + + + /** + * Returns all repetitions of Second Opinion Documentation Received (IN3-24). + */ + public CWE[] getIn324_SecondOpinionDocumentationReceived() { + CWE[] retVal = this.getTypedField(24, new CWE[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Second Opinion Documentation Received (IN3-24). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getSecondOpinionDocumentationReceivedReps() { + return this.getReps(24); + } + + + /** + * Returns a specific repetition of + * IN3-24: "Second Opinion Documentation Received" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getSecondOpinionDocumentationReceived(int rep) { + CWE retVal = this.getTypedField(24, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN3-24: "Second Opinion Documentation Received" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getIn324_SecondOpinionDocumentationReceived(int rep) { + CWE retVal = this.getTypedField(24, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Second Opinion Documentation Received (IN3-24). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn324_SecondOpinionDocumentationReceivedReps() { + return this.getReps(24); + } + + + /** + * Inserts a repetition of + * IN3-24: "Second Opinion Documentation Received" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertSecondOpinionDocumentationReceived(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(24, rep); + } + + + /** + * Inserts a repetition of + * IN3-24: "Second Opinion Documentation Received" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertIn324_SecondOpinionDocumentationReceived(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(24, rep); + } + + + /** + * Removes a repetition of + * IN3-24: "Second Opinion Documentation Received" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removeSecondOpinionDocumentationReceived(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(24, rep); + } + + + /** + * Removes a repetition of + * IN3-24: "Second Opinion Documentation Received" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removeIn324_SecondOpinionDocumentationReceived(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(24, rep); + } + + + + /** + * Returns all repetitions of Second Opinion Physician (IN3-25). + */ + public XCN[] getSecondOpinionPhysician() { + XCN[] retVal = this.getTypedField(25, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Second Opinion Physician (IN3-25). + */ + public XCN[] getIn325_SecondOpinionPhysician() { + XCN[] retVal = this.getTypedField(25, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Second Opinion Physician (IN3-25). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getSecondOpinionPhysicianReps() { + return this.getReps(25); + } + + + /** + * Returns a specific repetition of + * IN3-25: "Second Opinion Physician" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getSecondOpinionPhysician(int rep) { + XCN retVal = this.getTypedField(25, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * IN3-25: "Second Opinion Physician" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getIn325_SecondOpinionPhysician(int rep) { + XCN retVal = this.getTypedField(25, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Second Opinion Physician (IN3-25). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getIn325_SecondOpinionPhysicianReps() { + return this.getReps(25); + } + + + /** + * Inserts a repetition of + * IN3-25: "Second Opinion Physician" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertSecondOpinionPhysician(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(25, rep); + } + + + /** + * Inserts a repetition of + * IN3-25: "Second Opinion Physician" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertIn325_SecondOpinionPhysician(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(25, rep); + } + + + /** + * Removes a repetition of + * IN3-25: "Second Opinion Physician" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeSecondOpinionPhysician(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(25, rep); + } + + + /** + * Removes a repetition of + * IN3-25: "Second Opinion Physician" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeIn325_SecondOpinionPhysician(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(25, rep); + } + + + /** + * Returns + * IN3-26: "Certification Type" - creates it if necessary + */ + public CWE getCertificationType() { + CWE retVal = this.getTypedField(26, 0); + return retVal; + } + + /** + * Returns + * IN3-26: "Certification Type" - creates it if necessary + */ + public CWE getIn326_CertificationType() { + CWE retVal = this.getTypedField(26, 0); + return retVal; + } + + + /** + * Returns + * IN3-27: "Certification Category" - creates it if necessary + */ + public CWE getCertificationCategory() { + CWE retVal = this.getTypedField(27, 0); + return retVal; + } + + /** + * Returns + * IN3-27: "Certification Category" - creates it if necessary + */ + public CWE getIn327_CertificationCategory() { + CWE retVal = this.getTypedField(27, 0); + return retVal; + } + + + + + + /** {@inheritDoc} */ + protected Type createNewTypeWithoutReflection(int field) { + switch (field) { + case 0: return new SI(getMessage()); + case 1: return new CX(getMessage()); + case 2: return new XCN(getMessage()); + case 3: return new ID(getMessage(), Integer.valueOf( 136 )); + case 4: return new MOP(getMessage()); + case 5: return new DTM(getMessage()); + case 6: return new DTM(getMessage()); + case 7: return new XCN(getMessage()); + case 8: return new DT(getMessage()); + case 9: return new DT(getMessage()); + case 10: return new DTN(getMessage()); + case 11: return new CWE(getMessage()); + case 12: return new DTM(getMessage()); + case 13: return new XCN(getMessage()); + case 14: return new ST(getMessage()); + case 15: return new XTN(getMessage()); + case 16: return new CWE(getMessage()); + case 17: return new CWE(getMessage()); + case 18: return new XTN(getMessage()); + case 19: return new ICD(getMessage()); + case 20: return new ST(getMessage()); + case 21: return new DT(getMessage()); + case 22: return new CWE(getMessage()); + case 23: return new CWE(getMessage()); + case 24: return new XCN(getMessage()); + case 25: return new CWE(getMessage()); + case 26: return new CWE(getMessage()); + default: return null; + } + } + + +} + diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/NTE.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/NTE.java index 62cadcc8df1..a0fdba7704a 100644 --- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/NTE.java +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/NTE.java @@ -72,7 +72,7 @@ public NTE(Group parent, ModelClassFactory factory) { private void init(ModelClassFactory factory) { try { this.add(SI.class, false, 1, 0, new Object[]{getMessage()}, "Set ID - NTE"); - this.add(ID.class, false, 1, 1, new Object[]{getMessage(), Integer.valueOf(105)}, "Source of Comment"); + this.add(ID.class, false, 1, 0, new Object[]{getMessage(), Integer.valueOf(105)}, "Source of Comment"); this.add(FT.class, false, 0, 0, new Object[]{getMessage()}, "Comment"); this.add(CWE.class, false, 1, 0, new Object[]{getMessage()}, "Comment Type"); this.add(XCN.class, false, 1, 0, new Object[]{getMessage()}, "Entered By"); diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/PV1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/PV1.java new file mode 100644 index 00000000000..ce8e9a2827e --- /dev/null +++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/PV1.java @@ -0,0 +1,2395 @@ +/* + * This class is an auto-generated source file for a HAPI + * HL7 v2.x standard structure class. + * + * For more information, visit: http://hl7api.sourceforge.net/ + * + * The contents of this file are subject to the Mozilla Public License Version 1.1 + * (the "License"); you may not use this file except in compliance with the License. + * You may obtain a copy of the License at http://www.mozilla.org/MPL/ + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the + * specific language governing rights and limitations under the License. + * + * The Original Code is "[file_name]". Description: + * "[one_line_description]" + * + * The Initial Developer of the Original Code is University Health Network. Copyright (C) + * 2012. All Rights Reserved. + * + * Contributor(s): ______________________________________. + * + * Alternatively, the contents of this file may be used under the terms of the + * GNU General Public License (the "GPL"), in which case the provisions of the GPL are + * applicable instead of those above. If you wish to allow use of your version of this + * file only under the terms of the GPL and not to allow others to use your version + * of this file under the MPL, indicate your decision by deleting the provisions above + * and replace them with the notice and other provisions required by the GPL License. + * If you do not delete the provisions above, a recipient may use your version of + * this file under either the MPL or the GPL. + * + */ + + +package fhirengine.translation.hl7.structures.fhirinventory.segment; + +// import ca.uhn.hl7v2.model.v27.group.*; +import ca.uhn.hl7v2.model.v27.datatype.*; +import ca.uhn.hl7v2.HL7Exception; +import ca.uhn.hl7v2.parser.ModelClassFactory; +import ca.uhn.hl7v2.parser.DefaultModelClassFactory; +import ca.uhn.hl7v2.model.AbstractMessage; +import ca.uhn.hl7v2.model.Group; +import ca.uhn.hl7v2.model.Type; +import ca.uhn.hl7v2.model.AbstractSegment; +import ca.uhn.hl7v2.model.Varies; + + +/** + *

Represents an HL7 PV1 message segment (Patient Visit). + * This segment has the following fields:

+ *
    + *
  • PV1-1: Set ID - PV1 (SI) optional + *
  • PV1-2: Patient Class (CWE) + *
  • PV1-3: Assigned Patient Location (PL) optional + *
  • PV1-4: Admission Type (CWE) optional + *
  • PV1-5: Preadmit Number (CX) optional + *
  • PV1-6: Prior Patient Location (PL) optional + *
  • PV1-7: Attending Doctor (XCN) optional repeating + *
  • PV1-8: Referring Doctor (XCN) optional repeating + *
  • PV1-9: Consulting Doctor (XCN) optional repeating + *
  • PV1-10: Hospital Service (CWE) optional + *
  • PV1-11: Temporary Location (PL) optional + *
  • PV1-12: Preadmit Test Indicator (CWE) optional + *
  • PV1-13: Re-admission Indicator (CWE) optional + *
  • PV1-14: Admit Source (CWE) optional + *
  • PV1-15: Ambulatory Status (CWE) optional repeating + *
  • PV1-16: VIP Indicator (CWE) optional + *
  • PV1-17: Admitting Doctor (XCN) optional repeating + *
  • PV1-18: Patient Type (CWE) optional + *
  • PV1-19: Visit Number (CX) optional + *
  • PV1-20: Financial Class (FC) optional repeating + *
  • PV1-21: Charge Price Indicator (CWE) optional + *
  • PV1-22: Courtesy Code (CWE) optional + *
  • PV1-23: Credit Rating (CWE) optional + *
  • PV1-24: Contract Code (CWE) optional repeating + *
  • PV1-25: Contract Effective Date (DT) optional repeating + *
  • PV1-26: Contract Amount (NM) optional repeating + *
  • PV1-27: Contract Period (NM) optional repeating + *
  • PV1-28: Interest Code (CWE) optional + *
  • PV1-29: Transfer to Bad Debt Code (CWE) optional + *
  • PV1-30: Transfer to Bad Debt Date (DT) optional + *
  • PV1-31: Bad Debt Agency Code (CWE) optional + *
  • PV1-32: Bad Debt Transfer Amount (NM) optional + *
  • PV1-33: Bad Debt Recovery Amount (NM) optional + *
  • PV1-34: Delete Account Indicator (CWE) optional + *
  • PV1-35: Delete Account Date (DT) optional + *
  • PV1-36: Discharge Disposition (CWE) optional + *
  • PV1-37: Discharged to Location (DLD) optional + *
  • PV1-38: Diet Type (CWE) optional + *
  • PV1-39: Servicing Facility (CWE) optional + *
  • PV1-40: Bed Status (CWE) optional + *
  • PV1-41: Account Status (CWE) optional + *
  • PV1-42: Pending Location (PL) optional + *
  • PV1-43: Prior Temporary Location (PL) optional + *
  • PV1-44: Admit Date/Time (DTM) optional + *
  • PV1-45: Discharge Date/Time (DTM) optional repeating + *
  • PV1-46: Current Patient Balance (NM) optional + *
  • PV1-47: Total Charges (NM) optional + *
  • PV1-48: Total Adjustments (NM) optional + *
  • PV1-49: Total Payments (NM) optional + *
  • PV1-50: Alternate Visit ID (CX) optional + *
  • PV1-51: Visit Indicator (CWE) optional + *
  • PV1-52: Other Healthcare Provider (XCN) optional repeating + *
  • PV1-53: Service Episode Description (ST) optional + *
  • PV1-54: Service Episode Identifier (CX) optional + *
+ */ +@SuppressWarnings("unused") +public class PV1 extends AbstractSegment { + + /** + * Creates a new PV1 segment + */ + public PV1(Group parent, ModelClassFactory factory) { + super(parent, factory); + init(factory); + } + + private void init(ModelClassFactory factory) { + try { + this.add(SI.class, false, 1, 4, new Object[]{ getMessage() }, "Set ID - PV1"); + this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Patient Class"); + this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Assigned Patient Location"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Admission Type"); + this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Preadmit Number"); + this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Prior Patient Location"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Attending Doctor"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Referring Doctor"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Consulting Doctor"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Hospital Service"); + this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Temporary Location"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Preadmit Test Indicator"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Re-admission Indicator"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Admit Source"); + this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Ambulatory Status"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "VIP Indicator"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Admitting Doctor"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Patient Type"); + this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Visit Number"); + this.add(FC.class, false, 0, 0, new Object[]{ getMessage() }, "Financial Class"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Charge Price Indicator"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Courtesy Code"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Credit Rating"); + this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Contract Code"); + this.add(DT.class, false, 0, 0, new Object[]{ getMessage() }, "Contract Effective Date"); + this.add(NM.class, false, 0, 0, new Object[]{ getMessage() }, "Contract Amount"); + this.add(NM.class, false, 0, 0, new Object[]{ getMessage() }, "Contract Period"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Interest Code"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Transfer to Bad Debt Code"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Transfer to Bad Debt Date"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Bad Debt Agency Code"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Bad Debt Transfer Amount"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Bad Debt Recovery Amount"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Delete Account Indicator"); + this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Delete Account Date"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Discharge Disposition"); + this.add(DLD.class, false, 1, 0, new Object[]{ getMessage() }, "Discharged to Location"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Diet Type"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Servicing Facility"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Bed Status"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Account Status"); + this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Pending Location"); + this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Prior Temporary Location"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Admit Date/Time"); + this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Discharge Date/Time"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Current Patient Balance"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Total Charges"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Total Adjustments"); + this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Total Payments"); + this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Alternate Visit ID"); + this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Visit Indicator"); + this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Other Healthcare Provider"); + this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Service Episode Description"); + this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Service Episode Identifier"); + } catch(HL7Exception e) { + log.error("Unexpected error creating PV1 - this is probably a bug in the source code generator.", e); + } + } + + + + /** + * Returns + * PV1-1: "Set ID - PV1" - creates it if necessary + */ + public SI getSetIDPV1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + /** + * Returns + * PV1-1: "Set ID - PV1" - creates it if necessary + */ + public SI getPv11_SetIDPV1() { + SI retVal = this.getTypedField(1, 0); + return retVal; + } + + + + /** + * Returns + * PV1-2: "Patient Class" - creates it if necessary + */ + public CWE getPatientClass() { + CWE retVal = this.getTypedField(2, 0); + return retVal; + } + + /** + * Returns + * PV1-2: "Patient Class" - creates it if necessary + */ + public CWE getPv12_PatientClass() { + CWE retVal = this.getTypedField(2, 0); + return retVal; + } + + + + /** + * Returns + * PV1-3: "Assigned Patient Location" - creates it if necessary + */ + public PL getAssignedPatientLocation() { + PL retVal = this.getTypedField(3, 0); + return retVal; + } + + /** + * Returns + * PV1-3: "Assigned Patient Location" - creates it if necessary + */ + public PL getPv13_AssignedPatientLocation() { + PL retVal = this.getTypedField(3, 0); + return retVal; + } + + + + /** + * Returns + * PV1-4: "Admission Type" - creates it if necessary + */ + public CWE getAdmissionType() { + CWE retVal = this.getTypedField(4, 0); + return retVal; + } + + /** + * Returns + * PV1-4: "Admission Type" - creates it if necessary + */ + public CWE getPv14_AdmissionType() { + CWE retVal = this.getTypedField(4, 0); + return retVal; + } + + + + /** + * Returns + * PV1-5: "Preadmit Number" - creates it if necessary + */ + public CX getPreadmitNumber() { + CX retVal = this.getTypedField(5, 0); + return retVal; + } + + /** + * Returns + * PV1-5: "Preadmit Number" - creates it if necessary + */ + public CX getPv15_PreadmitNumber() { + CX retVal = this.getTypedField(5, 0); + return retVal; + } + + + + /** + * Returns + * PV1-6: "Prior Patient Location" - creates it if necessary + */ + public PL getPriorPatientLocation() { + PL retVal = this.getTypedField(6, 0); + return retVal; + } + + /** + * Returns + * PV1-6: "Prior Patient Location" - creates it if necessary + */ + public PL getPv16_PriorPatientLocation() { + PL retVal = this.getTypedField(6, 0); + return retVal; + } + + + /** + * Returns all repetitions of Attending Doctor (PV1-7). + */ + public XCN[] getAttendingDoctor() { + XCN[] retVal = this.getTypedField(7, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Attending Doctor (PV1-7). + */ + public XCN[] getPv17_AttendingDoctor() { + XCN[] retVal = this.getTypedField(7, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Attending Doctor (PV1-7). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getAttendingDoctorReps() { + return this.getReps(7); + } + + + /** + * Returns a specific repetition of + * PV1-7: "Attending Doctor" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getAttendingDoctor(int rep) { + XCN retVal = this.getTypedField(7, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-7: "Attending Doctor" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getPv17_AttendingDoctor(int rep) { + XCN retVal = this.getTypedField(7, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Attending Doctor (PV1-7). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv17_AttendingDoctorReps() { + return this.getReps(7); + } + + + /** + * Inserts a repetition of + * PV1-7: "Attending Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertAttendingDoctor(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(7, rep); + } + + + /** + * Inserts a repetition of + * PV1-7: "Attending Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertPv17_AttendingDoctor(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(7, rep); + } + + + /** + * Removes a repetition of + * PV1-7: "Attending Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeAttendingDoctor(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(7, rep); + } + + + /** + * Removes a repetition of + * PV1-7: "Attending Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removePv17_AttendingDoctor(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(7, rep); + } + + + + /** + * Returns all repetitions of Referring Doctor (PV1-8). + */ + public XCN[] getReferringDoctor() { + XCN[] retVal = this.getTypedField(8, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Referring Doctor (PV1-8). + */ + public XCN[] getPv18_ReferringDoctor() { + XCN[] retVal = this.getTypedField(8, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Referring Doctor (PV1-8). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getReferringDoctorReps() { + return this.getReps(8); + } + + + /** + * Returns a specific repetition of + * PV1-8: "Referring Doctor" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getReferringDoctor(int rep) { + XCN retVal = this.getTypedField(8, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-8: "Referring Doctor" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getPv18_ReferringDoctor(int rep) { + XCN retVal = this.getTypedField(8, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Referring Doctor (PV1-8). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv18_ReferringDoctorReps() { + return this.getReps(8); + } + + + /** + * Inserts a repetition of + * PV1-8: "Referring Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertReferringDoctor(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(8, rep); + } + + + /** + * Inserts a repetition of + * PV1-8: "Referring Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertPv18_ReferringDoctor(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(8, rep); + } + + + /** + * Removes a repetition of + * PV1-8: "Referring Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeReferringDoctor(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(8, rep); + } + + + /** + * Removes a repetition of + * PV1-8: "Referring Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removePv18_ReferringDoctor(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(8, rep); + } + + + + /** + * Returns all repetitions of Consulting Doctor (PV1-9). + */ + public XCN[] getConsultingDoctor() { + XCN[] retVal = this.getTypedField(9, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Consulting Doctor (PV1-9). + */ + public XCN[] getPv19_ConsultingDoctor() { + XCN[] retVal = this.getTypedField(9, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Consulting Doctor (PV1-9). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getConsultingDoctorReps() { + return this.getReps(9); + } + + + /** + * Returns a specific repetition of + * PV1-9: "Consulting Doctor" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getConsultingDoctor(int rep) { + XCN retVal = this.getTypedField(9, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-9: "Consulting Doctor" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getPv19_ConsultingDoctor(int rep) { + XCN retVal = this.getTypedField(9, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Consulting Doctor (PV1-9). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv19_ConsultingDoctorReps() { + return this.getReps(9); + } + + + /** + * Inserts a repetition of + * PV1-9: "Consulting Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertConsultingDoctor(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(9, rep); + } + + + /** + * Inserts a repetition of + * PV1-9: "Consulting Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertPv19_ConsultingDoctor(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(9, rep); + } + + + /** + * Removes a repetition of + * PV1-9: "Consulting Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeConsultingDoctor(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(9, rep); + } + + + /** + * Removes a repetition of + * PV1-9: "Consulting Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removePv19_ConsultingDoctor(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(9, rep); + } + + + + + /** + * Returns + * PV1-10: "Hospital Service" - creates it if necessary + */ + public CWE getHospitalService() { + CWE retVal = this.getTypedField(10, 0); + return retVal; + } + + /** + * Returns + * PV1-10: "Hospital Service" - creates it if necessary + */ + public CWE getPv110_HospitalService() { + CWE retVal = this.getTypedField(10, 0); + return retVal; + } + + + + /** + * Returns + * PV1-11: "Temporary Location" - creates it if necessary + */ + public PL getTemporaryLocation() { + PL retVal = this.getTypedField(11, 0); + return retVal; + } + + /** + * Returns + * PV1-11: "Temporary Location" - creates it if necessary + */ + public PL getPv111_TemporaryLocation() { + PL retVal = this.getTypedField(11, 0); + return retVal; + } + + + + /** + * Returns + * PV1-12: "Preadmit Test Indicator" - creates it if necessary + */ + public CWE getPreadmitTestIndicator() { + CWE retVal = this.getTypedField(12, 0); + return retVal; + } + + /** + * Returns + * PV1-12: "Preadmit Test Indicator" - creates it if necessary + */ + public CWE getPv112_PreadmitTestIndicator() { + CWE retVal = this.getTypedField(12, 0); + return retVal; + } + + + + /** + * Returns + * PV1-13: "Re-admission Indicator" - creates it if necessary + */ + public CWE getReAdmissionIndicator() { + CWE retVal = this.getTypedField(13, 0); + return retVal; + } + + /** + * Returns + * PV1-13: "Re-admission Indicator" - creates it if necessary + */ + public CWE getPv113_ReAdmissionIndicator() { + CWE retVal = this.getTypedField(13, 0); + return retVal; + } + + + + /** + * Returns + * PV1-14: "Admit Source" - creates it if necessary + */ + public CWE getAdmitSource() { + CWE retVal = this.getTypedField(14, 0); + return retVal; + } + + /** + * Returns + * PV1-14: "Admit Source" - creates it if necessary + */ + public CWE getPv114_AdmitSource() { + CWE retVal = this.getTypedField(14, 0); + return retVal; + } + + + /** + * Returns all repetitions of Ambulatory Status (PV1-15). + */ + public CWE[] getAmbulatoryStatus() { + CWE[] retVal = this.getTypedField(15, new CWE[0]); + return retVal; + } + + + /** + * Returns all repetitions of Ambulatory Status (PV1-15). + */ + public CWE[] getPv115_AmbulatoryStatus() { + CWE[] retVal = this.getTypedField(15, new CWE[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Ambulatory Status (PV1-15). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getAmbulatoryStatusReps() { + return this.getReps(15); + } + + + /** + * Returns a specific repetition of + * PV1-15: "Ambulatory Status" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getAmbulatoryStatus(int rep) { + CWE retVal = this.getTypedField(15, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-15: "Ambulatory Status" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getPv115_AmbulatoryStatus(int rep) { + CWE retVal = this.getTypedField(15, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Ambulatory Status (PV1-15). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv115_AmbulatoryStatusReps() { + return this.getReps(15); + } + + + /** + * Inserts a repetition of + * PV1-15: "Ambulatory Status" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertAmbulatoryStatus(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(15, rep); + } + + + /** + * Inserts a repetition of + * PV1-15: "Ambulatory Status" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertPv115_AmbulatoryStatus(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(15, rep); + } + + + /** + * Removes a repetition of + * PV1-15: "Ambulatory Status" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removeAmbulatoryStatus(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(15, rep); + } + + + /** + * Removes a repetition of + * PV1-15: "Ambulatory Status" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removePv115_AmbulatoryStatus(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(15, rep); + } + + + + + /** + * Returns + * PV1-16: "VIP Indicator" - creates it if necessary + */ + public CWE getVIPIndicator() { + CWE retVal = this.getTypedField(16, 0); + return retVal; + } + + /** + * Returns + * PV1-16: "VIP Indicator" - creates it if necessary + */ + public CWE getPv116_VIPIndicator() { + CWE retVal = this.getTypedField(16, 0); + return retVal; + } + + + /** + * Returns all repetitions of Admitting Doctor (PV1-17). + */ + public XCN[] getAdmittingDoctor() { + XCN[] retVal = this.getTypedField(17, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Admitting Doctor (PV1-17). + */ + public XCN[] getPv117_AdmittingDoctor() { + XCN[] retVal = this.getTypedField(17, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Admitting Doctor (PV1-17). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getAdmittingDoctorReps() { + return this.getReps(17); + } + + + /** + * Returns a specific repetition of + * PV1-17: "Admitting Doctor" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getAdmittingDoctor(int rep) { + XCN retVal = this.getTypedField(17, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-17: "Admitting Doctor" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getPv117_AdmittingDoctor(int rep) { + XCN retVal = this.getTypedField(17, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Admitting Doctor (PV1-17). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv117_AdmittingDoctorReps() { + return this.getReps(17); + } + + + /** + * Inserts a repetition of + * PV1-17: "Admitting Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertAdmittingDoctor(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(17, rep); + } + + + /** + * Inserts a repetition of + * PV1-17: "Admitting Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertPv117_AdmittingDoctor(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(17, rep); + } + + + /** + * Removes a repetition of + * PV1-17: "Admitting Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeAdmittingDoctor(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(17, rep); + } + + + /** + * Removes a repetition of + * PV1-17: "Admitting Doctor" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removePv117_AdmittingDoctor(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(17, rep); + } + + + + + /** + * Returns + * PV1-18: "Patient Type" - creates it if necessary + */ + public CWE getPatientType() { + CWE retVal = this.getTypedField(18, 0); + return retVal; + } + + /** + * Returns + * PV1-18: "Patient Type" - creates it if necessary + */ + public CWE getPv118_PatientType() { + CWE retVal = this.getTypedField(18, 0); + return retVal; + } + + + + /** + * Returns + * PV1-19: "Visit Number" - creates it if necessary + */ + public CX getVisitNumber() { + CX retVal = this.getTypedField(19, 0); + return retVal; + } + + /** + * Returns + * PV1-19: "Visit Number" - creates it if necessary + */ + public CX getPv119_VisitNumber() { + CX retVal = this.getTypedField(19, 0); + return retVal; + } + + + /** + * Returns all repetitions of Financial Class (PV1-20). + */ + public FC[] getFinancialClass() { + FC[] retVal = this.getTypedField(20, new FC[0]); + return retVal; + } + + + /** + * Returns all repetitions of Financial Class (PV1-20). + */ + public FC[] getPv120_FinancialClass() { + FC[] retVal = this.getTypedField(20, new FC[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Financial Class (PV1-20). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getFinancialClassReps() { + return this.getReps(20); + } + + + /** + * Returns a specific repetition of + * PV1-20: "Financial Class" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public FC getFinancialClass(int rep) { + FC retVal = this.getTypedField(20, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-20: "Financial Class" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public FC getPv120_FinancialClass(int rep) { + FC retVal = this.getTypedField(20, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Financial Class (PV1-20). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv120_FinancialClassReps() { + return this.getReps(20); + } + + + /** + * Inserts a repetition of + * PV1-20: "Financial Class" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public FC insertFinancialClass(int rep) throws HL7Exception { + return (FC) super.insertRepetition(20, rep); + } + + + /** + * Inserts a repetition of + * PV1-20: "Financial Class" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public FC insertPv120_FinancialClass(int rep) throws HL7Exception { + return (FC) super.insertRepetition(20, rep); + } + + + /** + * Removes a repetition of + * PV1-20: "Financial Class" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public FC removeFinancialClass(int rep) throws HL7Exception { + return (FC) super.removeRepetition(20, rep); + } + + + /** + * Removes a repetition of + * PV1-20: "Financial Class" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public FC removePv120_FinancialClass(int rep) throws HL7Exception { + return (FC) super.removeRepetition(20, rep); + } + + + + + /** + * Returns + * PV1-21: "Charge Price Indicator" - creates it if necessary + */ + public CWE getChargePriceIndicator() { + CWE retVal = this.getTypedField(21, 0); + return retVal; + } + + /** + * Returns + * PV1-21: "Charge Price Indicator" - creates it if necessary + */ + public CWE getPv121_ChargePriceIndicator() { + CWE retVal = this.getTypedField(21, 0); + return retVal; + } + + + + /** + * Returns + * PV1-22: "Courtesy Code" - creates it if necessary + */ + public CWE getCourtesyCode() { + CWE retVal = this.getTypedField(22, 0); + return retVal; + } + + /** + * Returns + * PV1-22: "Courtesy Code" - creates it if necessary + */ + public CWE getPv122_CourtesyCode() { + CWE retVal = this.getTypedField(22, 0); + return retVal; + } + + + + /** + * Returns + * PV1-23: "Credit Rating" - creates it if necessary + */ + public CWE getCreditRating() { + CWE retVal = this.getTypedField(23, 0); + return retVal; + } + + /** + * Returns + * PV1-23: "Credit Rating" - creates it if necessary + */ + public CWE getPv123_CreditRating() { + CWE retVal = this.getTypedField(23, 0); + return retVal; + } + + + /** + * Returns all repetitions of Contract Code (PV1-24). + */ + public CWE[] getContractCode() { + CWE[] retVal = this.getTypedField(24, new CWE[0]); + return retVal; + } + + + /** + * Returns all repetitions of Contract Code (PV1-24). + */ + public CWE[] getPv124_ContractCode() { + CWE[] retVal = this.getTypedField(24, new CWE[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Contract Code (PV1-24). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getContractCodeReps() { + return this.getReps(24); + } + + + /** + * Returns a specific repetition of + * PV1-24: "Contract Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getContractCode(int rep) { + CWE retVal = this.getTypedField(24, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-24: "Contract Code" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public CWE getPv124_ContractCode(int rep) { + CWE retVal = this.getTypedField(24, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Contract Code (PV1-24). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv124_ContractCodeReps() { + return this.getReps(24); + } + + + /** + * Inserts a repetition of + * PV1-24: "Contract Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertContractCode(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(24, rep); + } + + + /** + * Inserts a repetition of + * PV1-24: "Contract Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE insertPv124_ContractCode(int rep) throws HL7Exception { + return (CWE) super.insertRepetition(24, rep); + } + + + /** + * Removes a repetition of + * PV1-24: "Contract Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removeContractCode(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(24, rep); + } + + + /** + * Removes a repetition of + * PV1-24: "Contract Code" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public CWE removePv124_ContractCode(int rep) throws HL7Exception { + return (CWE) super.removeRepetition(24, rep); + } + + + + /** + * Returns all repetitions of Contract Effective Date (PV1-25). + */ + public DT[] getContractEffectiveDate() { + DT[] retVal = this.getTypedField(25, new DT[0]); + return retVal; + } + + + /** + * Returns all repetitions of Contract Effective Date (PV1-25). + */ + public DT[] getPv125_ContractEffectiveDate() { + DT[] retVal = this.getTypedField(25, new DT[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Contract Effective Date (PV1-25). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getContractEffectiveDateReps() { + return this.getReps(25); + } + + + /** + * Returns a specific repetition of + * PV1-25: "Contract Effective Date" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public DT getContractEffectiveDate(int rep) { + DT retVal = this.getTypedField(25, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-25: "Contract Effective Date" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public DT getPv125_ContractEffectiveDate(int rep) { + DT retVal = this.getTypedField(25, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Contract Effective Date (PV1-25). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv125_ContractEffectiveDateReps() { + return this.getReps(25); + } + + + /** + * Inserts a repetition of + * PV1-25: "Contract Effective Date" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public DT insertContractEffectiveDate(int rep) throws HL7Exception { + return (DT) super.insertRepetition(25, rep); + } + + + /** + * Inserts a repetition of + * PV1-25: "Contract Effective Date" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public DT insertPv125_ContractEffectiveDate(int rep) throws HL7Exception { + return (DT) super.insertRepetition(25, rep); + } + + + /** + * Removes a repetition of + * PV1-25: "Contract Effective Date" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public DT removeContractEffectiveDate(int rep) throws HL7Exception { + return (DT) super.removeRepetition(25, rep); + } + + + /** + * Removes a repetition of + * PV1-25: "Contract Effective Date" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public DT removePv125_ContractEffectiveDate(int rep) throws HL7Exception { + return (DT) super.removeRepetition(25, rep); + } + + + + /** + * Returns all repetitions of Contract Amount (PV1-26). + */ + public NM[] getContractAmount() { + NM[] retVal = this.getTypedField(26, new NM[0]); + return retVal; + } + + + /** + * Returns all repetitions of Contract Amount (PV1-26). + */ + public NM[] getPv126_ContractAmount() { + NM[] retVal = this.getTypedField(26, new NM[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Contract Amount (PV1-26). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getContractAmountReps() { + return this.getReps(26); + } + + + /** + * Returns a specific repetition of + * PV1-26: "Contract Amount" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public NM getContractAmount(int rep) { + NM retVal = this.getTypedField(26, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-26: "Contract Amount" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public NM getPv126_ContractAmount(int rep) { + NM retVal = this.getTypedField(26, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Contract Amount (PV1-26). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv126_ContractAmountReps() { + return this.getReps(26); + } + + + /** + * Inserts a repetition of + * PV1-26: "Contract Amount" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public NM insertContractAmount(int rep) throws HL7Exception { + return (NM) super.insertRepetition(26, rep); + } + + + /** + * Inserts a repetition of + * PV1-26: "Contract Amount" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public NM insertPv126_ContractAmount(int rep) throws HL7Exception { + return (NM) super.insertRepetition(26, rep); + } + + + /** + * Removes a repetition of + * PV1-26: "Contract Amount" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public NM removeContractAmount(int rep) throws HL7Exception { + return (NM) super.removeRepetition(26, rep); + } + + + /** + * Removes a repetition of + * PV1-26: "Contract Amount" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public NM removePv126_ContractAmount(int rep) throws HL7Exception { + return (NM) super.removeRepetition(26, rep); + } + + + + /** + * Returns all repetitions of Contract Period (PV1-27). + */ + public NM[] getContractPeriod() { + NM[] retVal = this.getTypedField(27, new NM[0]); + return retVal; + } + + + /** + * Returns all repetitions of Contract Period (PV1-27). + */ + public NM[] getPv127_ContractPeriod() { + NM[] retVal = this.getTypedField(27, new NM[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Contract Period (PV1-27). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getContractPeriodReps() { + return this.getReps(27); + } + + + /** + * Returns a specific repetition of + * PV1-27: "Contract Period" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public NM getContractPeriod(int rep) { + NM retVal = this.getTypedField(27, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-27: "Contract Period" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public NM getPv127_ContractPeriod(int rep) { + NM retVal = this.getTypedField(27, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Contract Period (PV1-27). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv127_ContractPeriodReps() { + return this.getReps(27); + } + + + /** + * Inserts a repetition of + * PV1-27: "Contract Period" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public NM insertContractPeriod(int rep) throws HL7Exception { + return (NM) super.insertRepetition(27, rep); + } + + + /** + * Inserts a repetition of + * PV1-27: "Contract Period" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public NM insertPv127_ContractPeriod(int rep) throws HL7Exception { + return (NM) super.insertRepetition(27, rep); + } + + + /** + * Removes a repetition of + * PV1-27: "Contract Period" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public NM removeContractPeriod(int rep) throws HL7Exception { + return (NM) super.removeRepetition(27, rep); + } + + + /** + * Removes a repetition of + * PV1-27: "Contract Period" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public NM removePv127_ContractPeriod(int rep) throws HL7Exception { + return (NM) super.removeRepetition(27, rep); + } + + + + + /** + * Returns + * PV1-28: "Interest Code" - creates it if necessary + */ + public CWE getInterestCode() { + CWE retVal = this.getTypedField(28, 0); + return retVal; + } + + /** + * Returns + * PV1-28: "Interest Code" - creates it if necessary + */ + public CWE getPv128_InterestCode() { + CWE retVal = this.getTypedField(28, 0); + return retVal; + } + + + + /** + * Returns + * PV1-29: "Transfer to Bad Debt Code" - creates it if necessary + */ + public CWE getTransferToBadDebtCode() { + CWE retVal = this.getTypedField(29, 0); + return retVal; + } + + /** + * Returns + * PV1-29: "Transfer to Bad Debt Code" - creates it if necessary + */ + public CWE getPv129_TransferToBadDebtCode() { + CWE retVal = this.getTypedField(29, 0); + return retVal; + } + + + + /** + * Returns + * PV1-30: "Transfer to Bad Debt Date" - creates it if necessary + */ + public DT getTransferToBadDebtDate() { + DT retVal = this.getTypedField(30, 0); + return retVal; + } + + /** + * Returns + * PV1-30: "Transfer to Bad Debt Date" - creates it if necessary + */ + public DT getPv130_TransferToBadDebtDate() { + DT retVal = this.getTypedField(30, 0); + return retVal; + } + + + + /** + * Returns + * PV1-31: "Bad Debt Agency Code" - creates it if necessary + */ + public CWE getBadDebtAgencyCode() { + CWE retVal = this.getTypedField(31, 0); + return retVal; + } + + /** + * Returns + * PV1-31: "Bad Debt Agency Code" - creates it if necessary + */ + public CWE getPv131_BadDebtAgencyCode() { + CWE retVal = this.getTypedField(31, 0); + return retVal; + } + + + + /** + * Returns + * PV1-32: "Bad Debt Transfer Amount" - creates it if necessary + */ + public NM getBadDebtTransferAmount() { + NM retVal = this.getTypedField(32, 0); + return retVal; + } + + /** + * Returns + * PV1-32: "Bad Debt Transfer Amount" - creates it if necessary + */ + public NM getPv132_BadDebtTransferAmount() { + NM retVal = this.getTypedField(32, 0); + return retVal; + } + + + + /** + * Returns + * PV1-33: "Bad Debt Recovery Amount" - creates it if necessary + */ + public NM getBadDebtRecoveryAmount() { + NM retVal = this.getTypedField(33, 0); + return retVal; + } + + /** + * Returns + * PV1-33: "Bad Debt Recovery Amount" - creates it if necessary + */ + public NM getPv133_BadDebtRecoveryAmount() { + NM retVal = this.getTypedField(33, 0); + return retVal; + } + + + + /** + * Returns + * PV1-34: "Delete Account Indicator" - creates it if necessary + */ + public CWE getDeleteAccountIndicator() { + CWE retVal = this.getTypedField(34, 0); + return retVal; + } + + /** + * Returns + * PV1-34: "Delete Account Indicator" - creates it if necessary + */ + public CWE getPv134_DeleteAccountIndicator() { + CWE retVal = this.getTypedField(34, 0); + return retVal; + } + + + + /** + * Returns + * PV1-35: "Delete Account Date" - creates it if necessary + */ + public DT getDeleteAccountDate() { + DT retVal = this.getTypedField(35, 0); + return retVal; + } + + /** + * Returns + * PV1-35: "Delete Account Date" - creates it if necessary + */ + public DT getPv135_DeleteAccountDate() { + DT retVal = this.getTypedField(35, 0); + return retVal; + } + + + + /** + * Returns + * PV1-36: "Discharge Disposition" - creates it if necessary + */ + public CWE getDischargeDisposition() { + CWE retVal = this.getTypedField(36, 0); + return retVal; + } + + /** + * Returns + * PV1-36: "Discharge Disposition" - creates it if necessary + */ + public CWE getPv136_DischargeDisposition() { + CWE retVal = this.getTypedField(36, 0); + return retVal; + } + + + + /** + * Returns + * PV1-37: "Discharged to Location" - creates it if necessary + */ + public DLD getDischargedToLocation() { + DLD retVal = this.getTypedField(37, 0); + return retVal; + } + + /** + * Returns + * PV1-37: "Discharged to Location" - creates it if necessary + */ + public DLD getPv137_DischargedToLocation() { + DLD retVal = this.getTypedField(37, 0); + return retVal; + } + + + + /** + * Returns + * PV1-38: "Diet Type" - creates it if necessary + */ + public CWE getDietType() { + CWE retVal = this.getTypedField(38, 0); + return retVal; + } + + /** + * Returns + * PV1-38: "Diet Type" - creates it if necessary + */ + public CWE getPv138_DietType() { + CWE retVal = this.getTypedField(38, 0); + return retVal; + } + + + + /** + * Returns + * PV1-39: "Servicing Facility" - creates it if necessary + */ + public CWE getServicingFacility() { + CWE retVal = this.getTypedField(39, 0); + return retVal; + } + + /** + * Returns + * PV1-39: "Servicing Facility" - creates it if necessary + */ + public CWE getPv139_ServicingFacility() { + CWE retVal = this.getTypedField(39, 0); + return retVal; + } + + + + /** + * Returns + * PV1-40: "Bed Status" - creates it if necessary + */ + public CWE getBedStatus() { + CWE retVal = this.getTypedField(40, 0); + return retVal; + } + + /** + * Returns + * PV1-40: "Bed Status" - creates it if necessary + */ + public CWE getPv140_BedStatus() { + CWE retVal = this.getTypedField(40, 0); + return retVal; + } + + + + /** + * Returns + * PV1-41: "Account Status" - creates it if necessary + */ + public CWE getAccountStatus() { + CWE retVal = this.getTypedField(41, 0); + return retVal; + } + + /** + * Returns + * PV1-41: "Account Status" - creates it if necessary + */ + public CWE getPv141_AccountStatus() { + CWE retVal = this.getTypedField(41, 0); + return retVal; + } + + + + /** + * Returns + * PV1-42: "Pending Location" - creates it if necessary + */ + public PL getPendingLocation() { + PL retVal = this.getTypedField(42, 0); + return retVal; + } + + /** + * Returns + * PV1-42: "Pending Location" - creates it if necessary + */ + public PL getPv142_PendingLocation() { + PL retVal = this.getTypedField(42, 0); + return retVal; + } + + + + /** + * Returns + * PV1-43: "Prior Temporary Location" - creates it if necessary + */ + public PL getPriorTemporaryLocation() { + PL retVal = this.getTypedField(43, 0); + return retVal; + } + + /** + * Returns + * PV1-43: "Prior Temporary Location" - creates it if necessary + */ + public PL getPv143_PriorTemporaryLocation() { + PL retVal = this.getTypedField(43, 0); + return retVal; + } + + + + /** + * Returns + * PV1-44: "Admit Date/Time" - creates it if necessary + */ + public DTM getAdmitDateTime() { + DTM retVal = this.getTypedField(44, 0); + return retVal; + } + + /** + * Returns + * PV1-44: "Admit Date/Time" - creates it if necessary + */ + public DTM getPv144_AdmitDateTime() { + DTM retVal = this.getTypedField(44, 0); + return retVal; + } + + + + /** + * Returns all repetitions of Discharge Date/Time (PV1-45). + */ + public DTM[] getDischargeDateTime() { + DTM[] retVal = this.getTypedField(45, new DTM[0]); + return retVal; + } + + + /** + * Returns all repetitions of Discharge Date/Time (PV1-45). + */ + public DTM[] getPv145_DischargeDateTime() { + DTM[] retVal = this.getTypedField(45, new DTM[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Discharge Date/Time (PV1-45). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getDischargeDateTimeReps() { + return this.getReps(45); + } + + + /** + * Returns a specific repetition of + * PV1-45: "Discharge Date/Time" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public DTM getDischargeDateTime(int rep) { + DTM retVal = this.getTypedField(45, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-45: "Discharge Date/Time" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public DTM getPv145_DischargeDateTime(int rep) { + DTM retVal = this.getTypedField(45, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Discharge Date/Time (PV1-45). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv145_DischargeDateTimeReps() { + return this.getReps(45); + } + + + /** + * Inserts a repetition of + * PV1-45: "Discharge Date/Time" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public DTM insertDischargeDateTime(int rep) throws HL7Exception { + return (DTM) super.insertRepetition(45, rep); + } + + + /** + * Inserts a repetition of + * PV1-45: "Discharge Date/Time" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public DTM insertPv145_DischargeDateTime(int rep) throws HL7Exception { + return (DTM) super.insertRepetition(45, rep); + } + + + /** + * Removes a repetition of + * PV1-45: "Discharge Date/Time" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public DTM removeDischargeDateTime(int rep) throws HL7Exception { + return (DTM) super.removeRepetition(45, rep); + } + + + /** + * Removes a repetition of + * PV1-45: "Discharge Date/Time" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public DTM removePv145_DischargeDateTime(int rep) throws HL7Exception { + return (DTM) super.removeRepetition(45, rep); + } + + + + /** + * Returns + * PV1-46: "Current Patient Balance" - creates it if necessary + */ + public NM getCurrentPatientBalance() { + NM retVal = this.getTypedField(46, 0); + return retVal; + } + + /** + * Returns + * PV1-46: "Current Patient Balance" - creates it if necessary + */ + public NM getPv146_CurrentPatientBalance() { + NM retVal = this.getTypedField(46, 0); + return retVal; + } + + + + /** + * Returns + * PV1-47: "Total Charges" - creates it if necessary + */ + public NM getTotalCharges() { + NM retVal = this.getTypedField(47, 0); + return retVal; + } + + /** + * Returns + * PV1-47: "Total Charges" - creates it if necessary + */ + public NM getPv147_TotalCharges() { + NM retVal = this.getTypedField(47, 0); + return retVal; + } + + + + /** + * Returns + * PV1-48: "Total Adjustments" - creates it if necessary + */ + public NM getTotalAdjustments() { + NM retVal = this.getTypedField(48, 0); + return retVal; + } + + /** + * Returns + * PV1-48: "Total Adjustments" - creates it if necessary + */ + public NM getPv148_TotalAdjustments() { + NM retVal = this.getTypedField(48, 0); + return retVal; + } + + + + /** + * Returns + * PV1-49: "Total Payments" - creates it if necessary + */ + public NM getTotalPayments() { + NM retVal = this.getTypedField(49, 0); + return retVal; + } + + /** + * Returns + * PV1-49: "Total Payments" - creates it if necessary + */ + public NM getPv149_TotalPayments() { + NM retVal = this.getTypedField(49, 0); + return retVal; + } + + + + /** + * Returns + * PV1-50: "Alternate Visit ID" - creates it if necessary + */ + public CX getAlternateVisitID() { + CX retVal = this.getTypedField(50, 0); + return retVal; + } + + /** + * Returns + * PV1-50: "Alternate Visit ID" - creates it if necessary + */ + public CX getPv150_AlternateVisitID() { + CX retVal = this.getTypedField(50, 0); + return retVal; + } + + + + /** + * Returns + * PV1-51: "Visit Indicator" - creates it if necessary + */ + public CWE getVisitIndicator() { + CWE retVal = this.getTypedField(51, 0); + return retVal; + } + + /** + * Returns + * PV1-51: "Visit Indicator" - creates it if necessary + */ + public CWE getPv151_VisitIndicator() { + CWE retVal = this.getTypedField(51, 0); + return retVal; + } + + + + /** + * Returns all repetitions of Other Healthcare Provider (PV1-52). + */ + public XCN[] getOtherHealthcareProvider() { + XCN[] retVal = this.getTypedField(52, new XCN[0]); + return retVal; + } + + + /** + * Returns all repetitions of Other Healthcare Provider (PV1-52). + */ + public XCN[] getPv152_OtherHealthcareProvider() { + XCN[] retVal = this.getTypedField(52, new XCN[0]); + return retVal; + } + + + /** + * Returns a count of the current number of repetitions of Other Healthcare Provider (PV1-52). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getOtherHealthcareProviderReps() { + return this.getReps(52); + } + + + /** + * Returns a specific repetition of + * PV1-52: "Other Healthcare Provider" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getOtherHealthcareProvider(int rep) { + XCN retVal = this.getTypedField(52, rep); + return retVal; + } + + /** + * Returns a specific repetition of + * PV1-52: "Other Healthcare Provider" - creates it if necessary + * + * @param rep The repetition index (0-indexed) + */ + public XCN getPv152_OtherHealthcareProvider(int rep) { + XCN retVal = this.getTypedField(52, rep); + return retVal; + } + + /** + * Returns a count of the current number of repetitions of Other Healthcare Provider (PV1-52). + * This method does not create a repetition, so if no repetitions have currently been defined or accessed, + * it will return zero. + */ + public int getPv152_OtherHealthcareProviderReps() { + return this.getReps(52); + } + + + /** + * Inserts a repetition of + * PV1-52: "Other Healthcare Provider" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertOtherHealthcareProvider(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(52, rep); + } + + + /** + * Inserts a repetition of + * PV1-52: "Other Healthcare Provider" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN insertPv152_OtherHealthcareProvider(int rep) throws HL7Exception { + return (XCN) super.insertRepetition(52, rep); + } + + + /** + * Removes a repetition of + * PV1-52: "Other Healthcare Provider" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removeOtherHealthcareProvider(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(52, rep); + } + + + /** + * Removes a repetition of + * PV1-52: "Other Healthcare Provider" at a specific index + * + * @param rep The repetition index (0-indexed) + * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions) + */ + public XCN removePv152_OtherHealthcareProvider(int rep) throws HL7Exception { + return (XCN) super.removeRepetition(52, rep); + } + + + + /** + * Returns + * PV1-53: "Service Episode Description" - creates it if necessary + */ + public ST getServiceEpisodeDescription() { + ST retVal = this.getTypedField(53, 0); + return retVal; + } + + /** + * Returns + * PV1-53: "Service Episode Description" - creates it if necessary + */ + public ST getPv153_ServiceEpisodeDescription() { + ST retVal = this.getTypedField(53, 0); + return retVal; + } + + + + /** + * Returns + * PV1-54: "Service Episode Identifier" - creates it if necessary + */ + public CX getServiceEpisodeIdentifier() { + CX retVal = this.getTypedField(54, 0); + return retVal; + } + + /** + * Returns + * PV1-54: "Service Episode Identifier" - creates it if necessary + */ + public CX getPv154_ServiceEpisodeIdentifier() { + CX retVal = this.getTypedField(54, 0); + return retVal; + } + + + + + + /** {@inheritDoc} */ + protected Type createNewTypeWithoutReflection(int field) { + switch (field) { + case 0: return new SI(getMessage()); + case 1: return new CWE(getMessage()); + case 2: return new PL(getMessage()); + case 3: return new CWE(getMessage()); + case 4: return new CX(getMessage()); + case 5: return new PL(getMessage()); + case 6: return new XCN(getMessage()); + case 7: return new XCN(getMessage()); + case 8: return new XCN(getMessage()); + case 9: return new CWE(getMessage()); + case 10: return new PL(getMessage()); + case 11: return new CWE(getMessage()); + case 12: return new CWE(getMessage()); + case 13: return new CWE(getMessage()); + case 14: return new CWE(getMessage()); + case 15: return new CWE(getMessage()); + case 16: return new XCN(getMessage()); + case 17: return new CWE(getMessage()); + case 18: return new CX(getMessage()); + case 19: return new FC(getMessage()); + case 20: return new CWE(getMessage()); + case 21: return new CWE(getMessage()); + case 22: return new CWE(getMessage()); + case 23: return new CWE(getMessage()); + case 24: return new DT(getMessage()); + case 25: return new NM(getMessage()); + case 26: return new NM(getMessage()); + case 27: return new CWE(getMessage()); + case 28: return new CWE(getMessage()); + case 29: return new DT(getMessage()); + case 30: return new CWE(getMessage()); + case 31: return new NM(getMessage()); + case 32: return new NM(getMessage()); + case 33: return new CWE(getMessage()); + case 34: return new DT(getMessage()); + case 35: return new CWE(getMessage()); + case 36: return new DLD(getMessage()); + case 37: return new CWE(getMessage()); + case 38: return new CWE(getMessage()); + case 39: return new CWE(getMessage()); + case 40: return new CWE(getMessage()); + case 41: return new PL(getMessage()); + case 42: return new PL(getMessage()); + case 43: return new DTM(getMessage()); + case 44: return new DTM(getMessage()); + case 45: return new NM(getMessage()); + case 46: return new NM(getMessage()); + case 47: return new NM(getMessage()); + case 48: return new NM(getMessage()); + case 49: return new CX(getMessage()); + case 50: return new CWE(getMessage()); + case 51: return new XCN(getMessage()); + case 52: return new ST(getMessage()); + case 53: return new CX(getMessage()); + default: return null; + } + } + + +} + From 8170ff177b746939464fd683466d43021f711ccd Mon Sep 17 00:00:00 2001 From: Jack Wang Date: Mon, 25 Nov 2024 16:00:46 -0500 Subject: [PATCH 21/34] integration and smoke test data updates (#16549) --- .../Expected_HL7_to_FHIR_FULLELR.fhir | 42466 +++++++--------- .../Expected_HL7_to_FHIR_MARSOTC.fhir | 212 +- .../HL7_to_FHIR/sample_oml_20240319-001.fhir | 1366 +- ...mple_orm_20230809-001-with-enrichment.fhir | 1928 +- .../HL7_to_FHIR/sample_orm_20230809-001.fhir | 1928 +- .../catchall/omlo21/oml_o21-full.fhir | 908 +- .../catchall/ormo01/orm_o01-full.fhir | 930 +- .../catchall/orur01/oru_r01-full.fhir | 7128 +-- ...tioner-xcn17-populated-xcn19-20-empty.fhir | 338 +- 9 files changed, 27068 insertions(+), 30136 deletions(-) diff --git a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir index ba662fd59a1..fdf253fc0b0 100644 --- a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir +++ b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir @@ -1,8991 +1,9289 @@ { - "resourceType" : "Bundle", - "id" : "1730838914186143000.86c6399a-e72b-4c2b-881a-f61e5cb64acb", - "meta" : { - "lastUpdated" : "2024-11-05T15:35:14.191-05:00" + "resourceType": "Bundle", + "id": "1732567199002523000.08f9355b-b13c-43e2-8c36-a5f153920e42", + "meta": { + "lastUpdated": "2024-11-25T15:39:59.002-05:00" }, - "identifier" : { - "system" : "https://reportstream.cdc.gov/prime-router", - "value" : "MT_COCAA_ORU_AAPHELR.1.6214638" + "identifier": { + "system": "https://reportstream.cdc.gov/prime-router", + "value": "MT_COCAA_ORU_AAPHELR.1.6214638" }, - "type" : "message", - "timestamp" : "2028-08-08T11:28:05.000-04:00", - "entry" : [ { - "fullUrl" : "MessageHeader/1730838914242587000.e098f908-1633-482d-a6b9-cb41b799791d", - "resource" : { - "resourceType" : "MessageHeader", - "id" : "1730838914242587000.e098f908-1633-482d-a6b9-cb41b799791d", - "meta" : { - "tag" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "P" - } ] - }, - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", - "valueString" : "^~\\&#" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", - "extension" : [ { - "url" : "MSH.7", - "valueString" : "20280808092805-0600" - }, { - "url" : "MSH.21", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "HL7" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.1.11" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "PHLabReport-NoAck" - } - } ] - } ], - "eventCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "R01", - "display" : "ORU^R01^ORU_R01" - }, - "destination" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144.2.5" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.5" - } ], - "name" : "DCEED.ELR", - "endpoint" : "urn:oid:2.16.840.1.114222.4.1.144.2.5", - "receiver" : { - "reference" : "Organization/1730838914241687000.38e365c3-96b6-4f94-adb8-c51cf51ee4fa" - } - } ], - "sender" : { - "reference" : "Organization/1730838914222135000.950157a5-db43-47f1-bd11-77acd2698a7e" - }, - "source" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MEDITECH" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.3" - } ], - "software" : "Laboratory Applicati", - "version" : "5.67", - "endpoint" : "urn:oid:2.16.840.1.114222.4.3.2.2.1.321.111" - } - } - }, { - "fullUrl" : "Organization/1730838914222135000.950157a5-db43-47f1-bd11-77acd2698a7e", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914222135000.950157a5-db43-47f1-bd11-77acd2698a7e", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "COCAA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914241687000.38e365c3-96b6-4f94-adb8-c51cf51ee4fa", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914241687000.38e365c3-96b6-4f94-adb8-c51cf51ee4fa", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.6" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "CDPHE" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.144" - } ] - } - }, { - "fullUrl" : "Provenance/1730838914496493000.3152c839-7df0-4e43-8edd-00da11597746", - "resource" : { - "resourceType" : "Provenance", - "id" : "1730838914496493000.3152c839-7df0-4e43-8edd-00da11597746", - "target" : [ { - "reference" : "MessageHeader/1730838914242587000.e098f908-1633-482d-a6b9-cb41b799791d" - }, { - "reference" : "DiagnosticReport/1730838914906397000.8c90cfa9-33e8-4fac-a189-93e53f35fa0e" - }, { - "reference" : "DiagnosticReport/1730838914907614000.b8bd28ef-e261-4f29-924c-61000c4723e4" - }, { - "reference" : "DiagnosticReport/1730838914908842000.dbd3e970-1b66-45f6-9070-3aa23495dc1a" - }, { - "reference" : "DiagnosticReport/1730838914909748000.ef38cfa8-4f7f-4064-b60e-7427d1553444" - }, { - "reference" : "DiagnosticReport/1730838914910588000.703ca7ee-7e10-4e6a-888b-4f1d1e4ff655" - } ], - "recorded" : "2028-08-08T09:28:05-06:00", - "activity" : { - "coding" : [ { - "display" : "ORU^R01^ORU_R01" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "author" - } ] - }, - "who" : { - "reference" : "Organization/1730838914496011000.85eb44c7-e023-4a51-a538-77301532004a" - } - } ], - "entity" : [ { - "role" : "source", - "what" : { - "reference" : "Device/1730838914500789000.2d13bc5e-224d-46b0-a011-f6fd59978e02" - } - } ] - } - }, { - "fullUrl" : "Organization/1730838914496011000.85eb44c7-e023-4a51-a538-77301532004a", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914496011000.85eb44c7-e023-4a51-a538-77301532004a", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "COCAA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914500053000.98268f47-8fac-4bec-9fa6-4277285fbeae", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914500053000.98268f47-8fac-4bec-9fa6-4277285fbeae", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + "type": "message", + "timestamp": "2028-08-08T11:28:05.000-04:00", + "entry": [ + { + "fullUrl": "MessageHeader/1732567199004404000.467e37ca-f9d3-472b-b540-e218951a1b94", + "resource": { + "resourceType": "MessageHeader", + "id": "1732567199004404000.467e37ca-f9d3-472b-b540-e218951a1b94", + "meta": { + "tag": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0103", + "code": "P" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "MEDITECH" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MEDITECH" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "1.3.6.1.4.1.24310" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "MEDITECH" - } ], - "name" : "MEDITECH, Inc." - } - }, { - "fullUrl" : "Device/1730838914500789000.2d13bc5e-224d-46b0-a011-f6fd59978e02", - "resource" : { - "resourceType" : "Device", - "id" : "1730838914500789000.2d13bc5e-224d-46b0-a011-f6fd59978e02", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", - "valueReference" : { - "reference" : "Organization/1730838914500053000.98268f47-8fac-4bec-9fa6-4277285fbeae" - } - } ], - "manufacturer" : "MEDITECH, Inc.", - "deviceName" : [ { - "name" : "Laboratory Applicati", - "type" : "manufacturer-name" - } ], - "modelNumber" : "20210810", - "version" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date", - "valueDateTime" : "2021-08-10", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810" - } ] - } - } ], - "value" : "5.67" - } ] - } - }, { - "fullUrl" : "Provenance/1730838914506868000.4788e19e-dcc4-4cb9-9767-9222c5263b6c", - "resource" : { - "resourceType" : "Provenance", - "id" : "1730838914506868000.4788e19e-dcc4-4cb9-9767-9222c5263b6c", - "recorded" : "2024-11-05T15:35:14Z", - "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], - "activity" : { - "coding" : [ { - "code" : "v2-FHIR transformation" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "assembler" - } ] + ] }, - "who" : { - "reference" : "Organization/1730838914506543000.a36b35f0-5f0d-41e5-ba64-2f3bf85174f2" - } - } ] - } - }, { - "fullUrl" : "Organization/1730838914506543000.a36b35f0-5f0d-41e5-ba64-2f3bf85174f2", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914506543000.a36b35f0-5f0d-41e5-ba64-2f3bf85174f2", - "identifier" : [ { - "value" : "CDC PRIME - Atlanta" - }, { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" - } ] + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", + "valueString": "^~\\\u0026#" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension": [ + { + "url": "MSH.7", + "valueString": "20280808092805-0600" + }, + { + "url": "MSH.21", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "HL7" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.1.11" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "PHLabReport-NoAck" + } + } + ] + } + ], + "eventCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v2-0003", + "code": "R01", + "display": "ORU^R01^ORU_R01" }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.237821" - } ] - } - }, { - "fullUrl" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949", - "resource" : { - "resourceType" : "Patient", - "id" : "1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949", - "meta" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", - "valueReference" : { - "reference" : "Organization/1730838914527903000.1222d535-4f49-48f9-8a37-a4ddf9a15ae1" - } - } ], - "lastUpdated" : "2021-08-09T08:52:00-06:00", - "_lastUpdated" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210809085200-0600" - } ] - } - }, - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", - "valueAnnotation" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "P" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "EH" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "V1", - "code" : "C", - "display" : "Comment" - } ] + "destination": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144.2.5" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.5" + } + ], + "name": "DCEED.ELR", + "endpoint": "urn:oid:2.16.840.1.114222.4.1.144.2.5", + "receiver": { + "reference": "Organization/1732567199004102000.9b13857b-8f0b-4db3-afd1-423b67991227" } - } ], - "text" : "EH" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", - "extension" : [ { - "url" : "PID.8", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "M" - } ] - } - }, { - "url" : "PID.30", - "valueString" : "N" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-animal", - "extension" : [ { - "url" : "species", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.35" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "1", - "code" : "337915000", - "display" : "Homo sapiens (organism)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "1", - "code" : "Human", - "display" : "Human" - } ] - } - } ] - }, { - "url" : "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70005" - } ], - "system" : "http://terminology.hl7.org/CodeSystem/v3-Race", - "version" : "2.5.1", - "code" : "2106-3", - "display" : "White" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "W", - "display" : "White" - } ] - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-religion", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70006" - } ], - "code" : "NOE", - "display" : "Nonreligious" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70189" - } ], - "system" : "http://terminology.hl7.org/CodeSystem/v2-0189", - "version" : "2.5.1", - "code" : "N", - "display" : "Not Hispanic or Latino" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.61", - "code" : "2", - "display" : "Not Hispanic or Latin" - } ] - } - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1730838914513826000.3b984fdc-6364-4ca3-b69d-8fa24657b0ff" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "MR" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" - } ], - "type" : { - "coding" : [ { - "code" : "MR" - } ] - }, - "system" : "MEDITECH", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MEDITECH" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, - "value" : "100001" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1730838914514813000.1c1c8c49-c361-43ea-9cc4-e50f2c9a0655" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "SS" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" - } ], - "type" : { - "coding" : [ { - "code" : "SS" - } ] - }, - "system" : "MEDITECH", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MEDITECH" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, - "value" : "285-64-4175" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1730838914515647000.dcdfa862-315e-4830-82f5-cd54b8e17e6c" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "PI" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" - } ], - "type" : { - "coding" : [ { - "code" : "PI" - } ] - }, - "system" : "MEDITECH", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MEDITECH" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, - "value" : "X605236" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1730838914516610000.cf7db57f-c9da-4779-9f27-54b4c9943238" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "AN" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" - } ], - "type" : { - "coding" : [ { - "code" : "AN" - } ] - }, - "system" : "MEDITECH", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "MEDITECH" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, - "value" : "E40014904640" - } ], - "name" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ { - "url" : "XPN.2", - "valueString" : "LONNIE" - }, { - "url" : "XPN.7", - "valueString" : "L" - } ] - } ], - "use" : "official", - "family" : "BIERLY", - "given" : [ "LONNIE" ] - } ], - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "6930111" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "PRN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "6930111" - } ] - } ], - "system" : "phone", - "use" : "home" - }, { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "9999999" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "9999999" - }, { - "url" : "XTN.9", - "valueString" : "Business" - } ] - } ], - "system" : "phone", - "use" : "work" - } ], - "gender" : "male", - "birthDate" : "1936-10-23", - "_birthDate" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "19361023" - } ] - }, - "deceasedBoolean" : false, - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4673 ELM ST" - } ] - }, { - "url" : "XAD.2", - "valueString" : "CHERRY CRK NURSING CTR" - }, { - "url" : "XAD.7", - "valueCode" : "H" - } ] - } ], - "use" : "home", - "line" : [ "4673 ELM ST", "CHERRY CRK NURSING CTR" ], - "city" : "CANTERBURY", - "state" : "IG", - "postalCode" : "80014", - "country" : "USA" - } ], - "maritalStatus" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "S" - } ] - }, - "contact" : [ { - "extension" : [ { - "url" : "https://hl7.org/fhir/StructureDefinition/relationship", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70063" - } ], - "version" : "2.5.1", - "code" : "OTH", - "display" : "Other" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "OT", - "display" : "OTHER RELATIONSHIP" - } ] - } - } ], - "name" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ { - "url" : "XPN.2", - "valueString" : "GENARO" - }, { - "url" : "XPN.7", - "valueString" : "L" - } ] - } ], - "use" : "official", - "family" : "SURYAN", - "given" : [ "GENARO" ] - }, - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "720" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "3013954" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "PRN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "3013954" - } ] - } ], - "system" : "phone", - "use" : "home" - } ], - "address" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4861 20TH AVE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "H" - } ] - } ], - "use" : "home", - "line" : [ "4861 20TH AVE" ], - "city" : "THUNDER MOUNTAIN", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA" - }, - "organization" : { - "reference" : "Organization/1730838914530223000.90cb6c4c-bb89-4421-bd20-14f8e3ea20fc" - } - } ] - } - }, { - "fullUrl" : "Organization/1730838914513826000.3b984fdc-6364-4ca3-b69d-8fa24657b0ff", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914513826000.3b984fdc-6364-4ca3-b69d-8fa24657b0ff", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "COCAA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914514813000.1c1c8c49-c361-43ea-9cc4-e50f2c9a0655", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914514813000.1c1c8c49-c361-43ea-9cc4-e50f2c9a0655", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "COCAA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914515647000.dcdfa862-315e-4830-82f5-cd54b8e17e6c", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914515647000.dcdfa862-315e-4830-82f5-cd54b8e17e6c", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "COCAA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914516610000.cf7db57f-c9da-4779-9f27-54b4c9943238", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914516610000.cf7db57f-c9da-4779-9f27-54b4c9943238", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "COCAA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914527903000.1222d535-4f49-48f9-8a37-a4ddf9a15ae1", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914527903000.1222d535-4f49-48f9-8a37-a4ddf9a15ae1", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "COCAA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914530223000.90cb6c4c-bb89-4421-bd20-14f8e3ea20fc", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914530223000.90cb6c4c-bb89-4421-bd20-14f8e3ea20fc", - "contact" : [ { - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "720" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "3013954" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "3013954" - } ] - } ], - "system" : "phone", - "use" : "work" - } ], - "address" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4861 20TH AVE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "H" - } ] - } ], - "use" : "home", - "line" : [ "4861 20TH AVE" ], - "city" : "AURORA", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA" - } - } ] - } - }, { - "fullUrl" : "Provenance/1730838914540118000.668eb9be-2cd4-4137-ba71-a6db3e0e6685", - "resource" : { - "resourceType" : "Provenance", - "id" : "1730838914540118000.668eb9be-2cd4-4137-ba71-a6db3e0e6685", - "target" : [ { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - } ], - "occurredDateTime" : "2021-08-09T08:52:00-06:00", - "recorded" : "2024-11-05T15:35:14Z", - "activity" : { - "coding" : [ { - "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", - "code" : "UPDATE" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "performer" - } ] - }, - "who" : { - "reference" : "Organization/1730838914539914000.0dd096ef-30ea-48a1-9d25-077e6db2229e" - } - } ] - } - }, { - "fullUrl" : "Organization/1730838914539914000.0dd096ef-30ea-48a1-9d25-077e6db2229e", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914539914000.0dd096ef-30ea-48a1-9d25-077e6db2229e", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "COCAA" - } ] - } - }, { - "fullUrl" : "RelatedPerson/1730838914542891000.88dbe7f4-ec82-4bdb-9d6e-b005e3c161af", - "resource" : { - "resourceType" : "RelatedPerson", - "id" : "1730838914542891000.88dbe7f4-ec82-4bdb-9d6e-b005e3c161af", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "NK1" - } ], - "patient" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "relationship" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70063" - } ], - "version" : "2.5.1", - "code" : "OTH", - "display" : "Other" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "OT", - "display" : "OTHER RELATIONSHIP" - } ] - } ], - "name" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ { - "url" : "XPN.2", - "valueString" : "GENARO" - }, { - "url" : "XPN.7", - "valueString" : "L" - } ] - } ], - "use" : "official", - "family" : "SURYAN", - "given" : [ "GENARO" ] - } ], - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "720" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "3013954" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "PRN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "3013954" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.5" - } ], - "system" : "phone", - "use" : "home" - }, { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "720" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "3013954" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "3013954" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.31" - } ], - "system" : "phone", - "use" : "work" - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4861 20TH AVE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "H" - } ] - } ], - "use" : "home", - "line" : [ "4861 20TH AVE" ], - "city" : "THUNDER MOUNTAIN", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.32" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4861 20TH AVE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "H" - } ] - } ], - "use" : "home", - "line" : [ "4861 20TH AVE" ], - "city" : "AURORA", - "state" : "IG", - "postalCode" : "99999", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446", - "resource" : { - "resourceType" : "Encounter", - "id" : "1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit", - "extension" : [ { - "url" : "PV1.18", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "IN" - } ] - } - }, { - "url" : "PV1.39", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "COCAA" - } ] - } - }, { - "url" : "PV1.41", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "AD" - } ] - } - } ] - } ], - "status" : "in-progress", - "class" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "I" - } ] - } - } ], - "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode", - "code" : "IMP", - "display" : "inpatient encounter" - }, - "type" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "E" - } ] - } ], - "serviceType" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "ICU" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "episodeOfCare" : [ { - "reference" : "EpisodeOfCare/1730838914552716000.63633f12-d84d-460a-a852-bf2771719059" - } ], - "participant" : [ { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "ATND", - "display" : "attender" - } ] - } ], - "individual" : { - "reference" : "Practitioner/1730838914546680000.5cc0f083-06e3-45d8-82f8-890ccbb1b2d1" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "REF" - } ], - "text" : "referrer" - } ], - "individual" : { - "reference" : "Practitioner/1730838914547804000.6be90203-e57d-40fa-9eef-4cdf04256c8a" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "CON" - } ], - "text" : "consultant" - } ], - "individual" : { - "reference" : "Practitioner/1730838914548472000.6641a460-b80b-475e-a1ac-a8104fc1219b" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "CON" - } ], - "text" : "consultant" - } ], - "individual" : { - "reference" : "Practitioner/1730838914549867000.150f788c-2683-412a-a45f-875a915d342c" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "CON" - } ], - "text" : "consultant" - } ], - "individual" : { - "reference" : "Practitioner/1730838914550564000.d87782d7-2879-40e8-98e4-ed6361ccce67" - } - }, { - "type" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", - "code" : "ADM" - } ], - "text" : "admitter" - } ], - "individual" : { - "reference" : "Practitioner/1730838914551197000.1ceda897-a6bb-455e-9fc8-ab8aab662de0" - } - } ], - "period" : { - "start" : "2028-08-02T05:56:00Z", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202808020556" - } ] - } - }, - "hospitalization" : { - "admitSource" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "PR" - } ] - }, - "dischargeDisposition" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "SAP" - } ] - } - }, - "location" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.3" - } ], - "location" : { - "reference" : "Location/1730838914552300000.c836b45a-83b7-413b-898f-530403408d68" - }, - "status" : "active" - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914546680000.5cc0f083-06e3-45d8-82f8-890ccbb1b2d1", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914546680000.5cc0f083-06e3-45d8-82f8-890ccbb1b2d1", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Medical Center of Au" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "James" - }, { - "url" : "XCN.4", - "valueString" : "Madison" - }, { - "url" : "XCN.7", - "valueString" : "MD" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.7" - } ], - "identifier" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "Medical Center of Au", - "value" : "1437205069" - } ], - "name" : [ { - "family" : "Hunt", - "given" : [ "James", "Madison" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914547804000.6be90203-e57d-40fa-9eef-4cdf04256c8a", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914547804000.6be90203-e57d-40fa-9eef-4cdf04256c8a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Medical Center of Au" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "James" - }, { - "url" : "XCN.4", - "valueString" : "Madison" - }, { - "url" : "XCN.7", - "valueString" : "MD" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.8" - } ], - "identifier" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "Medical Center of Au", - "value" : "1437205069" - } ], - "name" : [ { - "family" : "Hunt", - "given" : [ "James", "Madison" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914548472000.6641a460-b80b-475e-a1ac-a8104fc1219b", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914548472000.6641a460-b80b-475e-a1ac-a8104fc1219b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Medical Center of Au" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "James" - }, { - "url" : "XCN.4", - "valueString" : "Madison" - }, { - "url" : "XCN.7", - "valueString" : "MD" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.9" - } ], - "identifier" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "Medical Center of Au", - "value" : "1437205069" - } ], - "name" : [ { - "family" : "Hunt", - "given" : [ "James", "Madison" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914548694000.732288ae-582a-4975-b29a-e04e1dd8cda0", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914548694000.732288ae-582a-4975-b29a-e04e1dd8cda0", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "Medical Center of Au" - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914549867000.150f788c-2683-412a-a45f-875a915d342c", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914549867000.150f788c-2683-412a-a45f-875a915d342c", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Medical Center of Au" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "James" - }, { - "url" : "XCN.4", - "valueString" : "M" - }, { - "url" : "XCN.7", - "valueString" : "MD" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.9" - } ], - "identifier" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "value" : "1962467126", - "assigner" : { - "reference" : "Organization/1730838914548694000.732288ae-582a-4975-b29a-e04e1dd8cda0" - } - } ], - "name" : [ { - "family" : "Neid", - "given" : [ "James", "M" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914550090000.8cb4f5d1-2568-48ec-bc07-258252c68085", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914550090000.8cb4f5d1-2568-48ec-bc07-258252c68085", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "Medical Center of Au" - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914550564000.d87782d7-2879-40e8-98e4-ed6361ccce67", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914550564000.d87782d7-2879-40e8-98e4-ed6361ccce67", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Medical Center of Au" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Todd" - }, { - "url" : "XCN.7", - "valueString" : "NP" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.9" - } ], - "identifier" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] + } + ], + "sender": { + "reference": "Organization/1732567199003506000.45e9129c-fbb9-4b84-84db-8e1f7f3e2325" }, - "value" : "1184669806", - "assigner" : { - "reference" : "Organization/1730838914550090000.8cb4f5d1-2568-48ec-bc07-258252c68085" + "source": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "MEDITECH" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.3" + } + ], + "software": "Laboratory Applicati", + "version": "5.67", + "endpoint": "urn:oid:2.16.840.1.114222.4.3.2.2.1.321.111" } - } ], - "name" : [ { - "family" : "Hultman", - "given" : [ "Todd" ], - "suffix" : [ "NP" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914551197000.1ceda897-a6bb-455e-9fc8-ab8aab662de0", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914551197000.1ceda897-a6bb-455e-9fc8-ab8aab662de0", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Medical Center of Au" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "James" - }, { - "url" : "XCN.4", - "valueString" : "Madison" - }, { - "url" : "XCN.7", - "valueString" : "MD" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.17" - } ], - "identifier" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "Medical Center of Au", - "value" : "1437205069" - } ], - "name" : [ { - "family" : "Hunt", - "given" : [ "James", "Madison" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Location/1730838914552009000.890b9438-bb14-4e0b-af4c-cdd83433b5a7", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914552009000.890b9438-bb14-4e0b-af4c-cdd83433b5a7", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "E.ICUB" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ] - } ], - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "_code" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", - "valueString" : "poc" - } ] - } - } ] - } - } - }, { - "fullUrl" : "Location/1730838914552121000.707e7104-aaeb-4cfc-904e-1194dea0154b", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914552121000.707e7104-aaeb-4cfc-904e-1194dea0154b", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "E.ICB" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ] - } ], - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "ro" - } ] - }, - "partOf" : { - "reference" : "Location/1730838914552009000.890b9438-bb14-4e0b-af4c-cdd83433b5a7" - } - } - }, { - "fullUrl" : "Location/1730838914552300000.c836b45a-83b7-413b-898f-530403408d68", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914552300000.c836b45a-83b7-413b-898f-530403408d68", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "05" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ] - } ], - "mode" : "instance", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "bd" - } ] - }, - "partOf" : { - "reference" : "Location/1730838914552121000.707e7104-aaeb-4cfc-904e-1194dea0154b" } - } - }, { - "fullUrl" : "EpisodeOfCare/1730838914552716000.63633f12-d84d-460a-a852-bf2771719059", - "resource" : { - "resourceType" : "EpisodeOfCare", - "id" : "1730838914552716000.63633f12-d84d-460a-a852-bf2771719059", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.54" - } ] - } - }, { - "fullUrl" : "Observation/1730838914729489000.2eb7ce94-28f7-4662-bfb6-4613a8cb9a9d", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914729489000.2eb7ce94-28f7-4662-bfb6-4613a8cb9a9d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BCEXT", - "display" : "EXTENDED BLOOD CULTURE" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914729887000.4ce42479-53b9-4524-bf1e-f563696512b2" - }, { - "reference" : "PractitionerRole/1730838914730084000.7dd9dc04-1afe-4e32-85e6-64e364569eac" - } ], - "dataAbsentReason" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/data-absent-reason", - "code" : "unknown" - } ] + }, + { + "fullUrl": "Organization/1732567199003506000.45e9129c-fbb9-4b84-84db-8e1f7f3e2325", + "resource": { + "resourceType": "Organization", + "id": "1732567199003506000.45e9129c-fbb9-4b84-84db-8e1f7f3e2325", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "COCAA" + } + ] } - } - }, { - "fullUrl" : "Organization/1730838914729887000.4ce42479-53b9-4524-bf1e-f563696512b2", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914729887000.4ce42479-53b9-4524-bf1e-f563696512b2", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "MCOE" - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, { - "fullUrl" : "Location/1730838914730294000.d9c2aab1-96d1-4f69-9a28-b2df4a7669ee", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914730294000.d9c2aab1-96d1-4f69-9a28-b2df4a7669ee", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "ROSE MEDICAL CENTER ", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "fullUrl": "Organization/1732567199004102000.9b13857b-8f0b-4db3-afd1-423b67991227", + "resource": { + "resourceType": "Organization", + "id": "1732567199004102000.9b13857b-8f0b-4db3-afd1-423b67991227", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.6" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "CDPHE" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.144" + } + ] } - } - }, { - "fullUrl" : "Practitioner/1730838914730858000.9ae58182-9c90-423f-a8b7-0875aa64b87e", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914730858000.9ae58182-9c90-423f-a8b7-0875aa64b87e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Shalini" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914730294000.d9c2aab1-96d1-4f69-9a28-b2df4a7669ee" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1033122247" - } ], - "name" : [ { - "use" : "official", - "family" : "Chahal", - "given" : [ "Shalini" ], - "prefix" : [ "Dr." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914732634000.d30d8730-ab33-4f45-88e7-55d10ca20a55", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914732634000.d30d8730-ab33-4f45-88e7-55d10ca20a55", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "4567 E. NINTH AVENUE" ], - "city" : "DENVER", - "district" : "S", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914730084000.7dd9dc04-1afe-4e32-85e6-64e364569eac", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914730084000.7dd9dc04-1afe-4e32-85e6-64e364569eac", - "practitioner" : { - "reference" : "Practitioner/1730838914730858000.9ae58182-9c90-423f-a8b7-0875aa64b87e" - }, - "organization" : { - "reference" : "Organization/1730838914732634000.d30d8730-ab33-4f45-88e7-55d10ca20a55" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914734896000.8ade4c13-8de9-451c-8e52-e7a17049b8de", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914734896000.8ade4c13-8de9-451c-8e52-e7a17049b8de", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BCEXT", - "display" : "EXTENDED BLOOD CULTURE" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914735204000.0c8ddf3d-e44a-45ec-8c1b-fe5056d098da" - }, { - "reference" : "PractitionerRole/1730838914735369000.9fb82d20-370a-4513-8b29-b2b2cf5b1c12" - } ], - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding" : { - "system" : "SNOMEDCT", - "code" : "406575008", - "display" : "Infection caused by vancomycin resistant enterococcus (disorder)" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding" : { - "system" : "SNOMEDCT", - "code" : "406575008", - "display" : "Infection caused by vancomycin resistant enterococcus (disorder)" + }, + { + "fullUrl": "Provenance/1732567199005807000.c686b48b-a0d9-4ec1-9f73-a38cf10999d0", + "resource": { + "resourceType": "Provenance", + "id": "1732567199005807000.c686b48b-a0d9-4ec1-9f73-a38cf10999d0", + "target": [ + { + "reference": "MessageHeader/1732567199004404000.467e37ca-f9d3-472b-b540-e218951a1b94" + }, + { + "reference": "DiagnosticReport/1732567199356748000.fc0e43dd-691b-41de-bd5b-323d746c1386" + }, + { + "reference": "DiagnosticReport/1732567199359055000.aead7c1e-173e-41ea-bbf9-fa3e82f9791d" + }, + { + "reference": "DiagnosticReport/1732567199361322000.8959170f-9898-4e59-8bcb-dad2696865d6" + }, + { + "reference": "DiagnosticReport/1732567199362781000.90549015-0ca5-4d87-ace3-3082703bf9a0" + }, + { + "reference": "DiagnosticReport/1732567199364257000.b75cb014-9f4f-4196-8138-7b6575c4d240" + } + ], + "recorded": "2028-08-08T09:28:05-06:00", + "activity": { + "coding": [ + { + "display": "ORU^R01^ORU_R01" } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding" : { - "system" : "SNOMEDCT", - "code" : "406575008", - "display" : "Infection caused by vancomycin resistant enterococcus (disorder)" + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "author" + } + ] + }, + "who": { + "reference": "Organization/1732567199005638000.0d8e3d94-7a5f-4abe-835b-412b8aadb24a" } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding" : { - "system" : "SNOMEDCT", - "code" : "406575008", - "display" : "Infection caused by vancomycin resistant enterococcus (disorder)" + } + ], + "entity": [ + { + "role": "source", + "what": { + "reference": "Device/1732567199006900000.a7666ee4-a336-48a0-90e5-2e50ce5eb764" } - } ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "782959008", - "display" : "Vancomycin resistant Enterococcus raffinosus" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ENTRAFVRE", - "display" : "ENTEROCOCCUS RAFFINOSIS, VRE" - } ], - "text" : "ENTEROCOCCUS RAFFINOSIS, VRE" + } + ] } - } - }, { - "fullUrl" : "Organization/1730838914735204000.0c8ddf3d-e44a-45ec-8c1b-fe5056d098da", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914735204000.0c8ddf3d-e44a-45ec-8c1b-fe5056d098da", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "MCOE" - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, { - "fullUrl" : "Location/1730838914735548000.d2bb45b6-1102-423c-a55b-7dd741d1cee8", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914735548000.d2bb45b6-1102-423c-a55b-7dd741d1cee8", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "ROSE MEDICAL CENTER ", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "fullUrl": "Organization/1732567199005638000.0d8e3d94-7a5f-4abe-835b-412b8aadb24a", + "resource": { + "resourceType": "Organization", + "id": "1732567199005638000.0d8e3d94-7a5f-4abe-835b-412b8aadb24a", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "COCAA" + } + ] } - } - }, { - "fullUrl" : "Practitioner/1730838914736117000.555b8bd6-d491-4b4b-ada7-e0f0208e93f2", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914736117000.555b8bd6-d491-4b4b-ada7-e0f0208e93f2", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Shalini" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914735548000.d2bb45b6-1102-423c-a55b-7dd741d1cee8" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1033122247" - } ], - "name" : [ { - "use" : "official", - "family" : "Chahal", - "given" : [ "Shalini" ], - "prefix" : [ "Dr." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914736846000.eee9bfac-c69b-4eac-84f7-2ece5359e9b5", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914736846000.eee9bfac-c69b-4eac-84f7-2ece5359e9b5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "4567 E. NINTH AVENUE" ], - "city" : "DENVER", - "district" : "MD", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914735369000.9fb82d20-370a-4513-8b29-b2b2cf5b1c12", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914735369000.9fb82d20-370a-4513-8b29-b2b2cf5b1c12", - "practitioner" : { - "reference" : "Practitioner/1730838914736117000.555b8bd6-d491-4b4b-ada7-e0f0208e93f2" - }, - "organization" : { - "reference" : "Organization/1730838914736846000.eee9bfac-c69b-4eac-84f7-2ece5359e9b5" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914738722000.8ab918ff-884f-41ce-bf64-2eaa180562d8", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914738722000.8ab918ff-884f-41ce-bf64-2eaa180562d8", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BCEXT", - "display" : "EXTENDED BLOOD CULTURE" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914739040000.7007923b-5132-46ab-bbd3-467c25aaec86" - }, { - "reference" : "PractitionerRole/1730838914739229000.6ad958a3-cd61-4ba8-9ae2-b107b5d2ff44" - } ], - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding" : { - "system" : "SNOMEDCT", - "code" : "45170000", - "display" : "Encephalitis (disorder)" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding" : { - "system" : "SNOMEDCT", - "code" : "45170000", - "display" : "Encephalitis (disorder)" + }, + { + "fullUrl": "Organization/1732567199006813000.48b42179-85c3-4ec7-837d-24790667328a", + "resource": { + "resourceType": "Organization", + "id": "1732567199006813000.48b42179-85c3-4ec7-837d-24790667328a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" } - } ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "53326005", - "display" : "Candida albicans" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "CANALB", - "display" : "CANDIDA ALBICANS" - } ], - "text" : "CANDIDA ALBICANS" - }, - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "***THIS IS AN URGENT RESULT***" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "***THIS IS AN URGENT RESULT***" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "***** Test Results Called To And Verbally Read Back" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "***** Test Results Called To And Verbally Read Back" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "By: RICHARD DDI7840 *****" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "By: RICHARD DDI7840 *****" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "(Date: 08/08/21 Time: 1511 Called BY AMLB.IF.)" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "(Date: 08/08/21 Time: 1511 Called BY AMLB.IF.)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "******************************" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "******************************" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "**THIS IS A CORRECTED REPORT**" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "**THIS IS A CORRECTED REPORT**" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "******************************" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "******************************" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Original report of ALPHA STRP,NOT ENTEROC.OR PNEU" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Original report of ALPHA STRP,NOT ENTEROC.OR PNEU" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "has been revised to ENTEROCOCCUS SPECIES (GRP D). " - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "has been revised to ENTEROCOCCUS SPECIES (GRP D). " - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "***** Test Results Called To And Verbally Read Back" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "***** Test Results Called To And Verbally Read Back" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "By: LISA WSJ9135 AT AURORA MICROBIOLOGY *****" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "By: LISA WSJ9135 AT AURORA MICROBIOLOGY *****" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "(Date: 08/06/21 Time: 0945 Called BY AMLB.LJ1.)" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "(Date: 08/06/21 Time: 0945 Called BY AMLB.LJ1.)" - } ] - } - }, { - "fullUrl" : "Organization/1730838914739040000.7007923b-5132-46ab-bbd3-467c25aaec86", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914739040000.7007923b-5132-46ab-bbd3-467c25aaec86", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "MCOE" - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, { - "fullUrl" : "Location/1730838914739429000.b3b0a505-800b-4280-884b-dade7aec1f76", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914739429000.b3b0a505-800b-4280-884b-dade7aec1f76", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "ROSE MEDICAL CENTER ", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "MEDITECH" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "MEDITECH" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.3.6.1.4.1.24310" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "MEDITECH" + } + ], + "name": "MEDITECH, Inc." } - } - }, { - "fullUrl" : "Practitioner/1730838914740161000.04914e7b-0bb1-4d46-b904-ba65db10dbc2", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914740161000.04914e7b-0bb1-4d46-b904-ba65db10dbc2", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Shalini" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914739429000.b3b0a505-800b-4280-884b-dade7aec1f76" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1033122247" - } ], - "name" : [ { - "use" : "official", - "family" : "Chahal", - "given" : [ "Shalini" ], - "prefix" : [ "Dr." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914741038000.daf2a9d1-a101-4305-bddc-5e68e2e075d5", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914741038000.daf2a9d1-a101-4305-bddc-5e68e2e075d5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Device/1732567199006900000.a7666ee4-a336-48a0-90e5-2e50ce5eb764", + "resource": { + "resourceType": "Device", + "id": "1732567199006900000.a7666ee4-a336-48a0-90e5-2e50ce5eb764", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", + "valueReference": { + "reference": "Organization/1732567199006813000.48b42179-85c3-4ec7-837d-24790667328a" + } + } + ], + "manufacturer": "MEDITECH, Inc.", + "deviceName": [ + { + "name": "Laboratory Applicati", + "type": "manufacturer-name" + } + ], + "modelNumber": "20210810", + "version": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date", + "valueDateTime": "2021-08-10", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810" + } + ] + } + } + ], + "value": "5.67" + } + ] + } + }, + { + "fullUrl": "Provenance/1732567199007755000.7118b927-40ac-4a1e-b9f1-e513e49f8e25", + "resource": { + "resourceType": "Provenance", + "id": "1732567199007755000.7118b927-40ac-4a1e-b9f1-e513e49f8e25", + "recorded": "2024-11-25T15:39:59Z", + "policy": [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity": { + "coding": [ + { + "code": "v2-FHIR transformation" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" + } + ] + }, + "who": { + "reference": "Organization/1732567199007627000.aa77d250-b88f-47d2-93ab-ebbbcc5e9bcd" + } + } + ] + } + }, + { + "fullUrl": "Organization/1732567199007627000.aa77d250-b88f-47d2-93ab-ebbbcc5e9bcd", + "resource": { + "resourceType": "Organization", + "id": "1732567199007627000.aa77d250-b88f-47d2-93ab-ebbbcc5e9bcd", + "identifier": [ + { + "value": "CDC PRIME - Atlanta" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553", + "resource": { + "resourceType": "Patient", + "id": "1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553", + "meta": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", + "valueReference": { + "reference": "Organization/1732567199018837000.90d318e1-73bb-4b7c-b710-0d65228b5a66" + } + } + ], + "lastUpdated": "2021-08-09T08:52:00-06:00", + "_lastUpdated": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210809085200-0600" + } + ] + } + }, + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", + "valueAnnotation": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "P" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "EH" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "V1", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "EH" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", + "extension": [ + { + "url": "PID.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "M" + } + ] + } + }, + { + "url": "PID.30", + "valueString": "N" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-animal", + "extension": [ + { + "url": "species", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.35" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "1", + "code": "337915000", + "display": "Homo sapiens (organism)" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "1", + "code": "Human", + "display": "Human" + } + ] + } + } + ] + }, + { + "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70005" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v3-Race", + "version": "2.5.1", + "code": "2106-3", + "display": "White" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "W", + "display": "White" + } + ] + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-religion", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70006" + } + ], + "code": "NOE", + "display": "Nonreligious" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70189" + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0189", + "version": "2.5.1", + "code": "N", + "display": "Not Hispanic or Latino" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.61", + "code": "2", + "display": "Not Hispanic or Latin" + } + ] + } + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1732567199008445000.f06dcf06-5e1a-4803-a979-dae818f26f49" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "MR" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "MR" + } + ] + }, + "system": "MEDITECH", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "MEDITECH" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "100001" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1732567199009070000.8762fa4b-e253-4bb0-9cd3-838f96fa135c" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "SS" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "SS" + } + ] + }, + "system": "MEDITECH", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "MEDITECH" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "285-64-4175" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1732567199009661000.895e75a4-3a3d-42ac-b425-fca4a15ff565" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "PI" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "PI" + } + ] + }, + "system": "MEDITECH", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "MEDITECH" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "X605236" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1732567199010379000.4dff1ca0-016c-4f61-9f37-49ea51a72952" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "AN" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" + } + ], + "type": { + "coding": [ + { + "code": "AN" + } + ] + }, + "system": "MEDITECH", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "MEDITECH" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "E40014904640" + } + ], + "name": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "LONNIE" + }, + { + "url": "XPN.7", + "valueString": "L" + } + ] + } + ], + "use": "official", + "family": "BIERLY", + "given": [ + "LONNIE" + ] + } + ], + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "6930111" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "PRN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "6930111" + } + ] + } + ], + "system": "phone", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "9999999" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "9999999" + }, + { + "url": "XTN.9", + "valueString": "Business" + } + ] + } + ], + "system": "phone", + "use": "work" + } + ], + "gender": "male", + "birthDate": "1936-10-23", + "_birthDate": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "19361023" + } + ] + }, + "deceasedBoolean": false, + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4673 ELM ST" + } + ] + }, + { + "url": "XAD.2", + "valueString": "CHERRY CRK NURSING CTR" + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "4673 ELM ST", + "CHERRY CRK NURSING CTR" + ], + "city": "CANTERBURY", + "state": "IG", + "postalCode": "80014", + "country": "USA" + } + ], + "maritalStatus": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "S" + } + ] + }, + "contact": [ + { + "extension": [ + { + "url": "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "version": "2.5.1", + "code": "OTH", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "OT", + "display": "OTHER RELATIONSHIP" + } + ] + } + } + ], + "relationship": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "version": "2.5.1", + "code": "OTH", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "OT", + "display": "OTHER RELATIONSHIP" + } + ] + } + ], + "name": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "GENARO" + }, + { + "url": "XPN.7", + "valueString": "L" + } + ] + } + ], + "use": "official", + "family": "SURYAN", + "given": [ + "GENARO" + ] + }, + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "3013954" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "PRN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "3013954" + } + ] + } + ], + "system": "phone", + "use": "home" + } + ], + "address": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE" + ], + "city": "THUNDER MOUNTAIN", + "state": "IG", + "postalCode": "99999", + "country": "USA" + }, + "organization": { + "reference": "Organization/1732567199020915000.6dd63ecd-8dd2-4324-9ead-39535f6cd4aa" + } + } + ] + } + }, + { + "fullUrl": "Organization/1732567199008445000.f06dcf06-5e1a-4803-a979-dae818f26f49", + "resource": { + "resourceType": "Organization", + "id": "1732567199008445000.f06dcf06-5e1a-4803-a979-dae818f26f49", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "COCAA" + } + ] + } + }, + { + "fullUrl": "Organization/1732567199009070000.8762fa4b-e253-4bb0-9cd3-838f96fa135c", + "resource": { + "resourceType": "Organization", + "id": "1732567199009070000.8762fa4b-e253-4bb0-9cd3-838f96fa135c", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "COCAA" + } + ] + } + }, + { + "fullUrl": "Organization/1732567199009661000.895e75a4-3a3d-42ac-b425-fca4a15ff565", + "resource": { + "resourceType": "Organization", + "id": "1732567199009661000.895e75a4-3a3d-42ac-b425-fca4a15ff565", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "COCAA" + } + ] + } + }, + { + "fullUrl": "Organization/1732567199010379000.4dff1ca0-016c-4f61-9f37-49ea51a72952", + "resource": { + "resourceType": "Organization", + "id": "1732567199010379000.4dff1ca0-016c-4f61-9f37-49ea51a72952", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "COCAA" + } + ] + } + }, + { + "fullUrl": "Organization/1732567199018837000.90d318e1-73bb-4b7c-b710-0d65228b5a66", + "resource": { + "resourceType": "Organization", + "id": "1732567199018837000.90d318e1-73bb-4b7c-b710-0d65228b5a66", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "COCAA" + } + ] + } + }, + { + "fullUrl": "Organization/1732567199020915000.6dd63ecd-8dd2-4324-9ead-39535f6cd4aa", + "resource": { + "resourceType": "Organization", + "id": "1732567199020915000.6dd63ecd-8dd2-4324-9ead-39535f6cd4aa", + "contact": [ + { + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "3013954" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "3013954" + } + ] + } + ], + "system": "phone", + "use": "work" + } + ], + "address": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE" + ], + "city": "AURORA", + "state": "IG", + "postalCode": "99999", + "country": "USA" + } + } + ] + } + }, + { + "fullUrl": "Provenance/1732567199027382000.fe8d4ab2-adba-4b4f-a211-a70e1af0e773", + "resource": { + "resourceType": "Provenance", + "id": "1732567199027382000.fe8d4ab2-adba-4b4f-a211-a70e1af0e773", + "target": [ + { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + } + ], + "occurredDateTime": "2021-08-09T08:52:00-06:00", + "recorded": "2024-11-25T15:39:59Z", + "activity": { + "coding": [ + { + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "performer" + } + ] + }, + "who": { + "reference": "Organization/1732567199027242000.ab264c8d-5532-44b8-8bf0-6d067e6bffc5" + } + } + ] + } + }, + { + "fullUrl": "Organization/1732567199027242000.ab264c8d-5532-44b8-8bf0-6d067e6bffc5", + "resource": { + "resourceType": "Organization", + "id": "1732567199027242000.ab264c8d-5532-44b8-8bf0-6d067e6bffc5", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "COCAA" + } + ] + } + }, + { + "fullUrl": "RelatedPerson/1732567199030030000.b81bb95a-e977-4e0f-860b-322b0685fdc0", + "resource": { + "resourceType": "RelatedPerson", + "id": "1732567199030030000.b81bb95a-e977-4e0f-860b-322b0685fdc0", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "NK1" + } + ], + "patient": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "relationship": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "version": "2.5.1", + "code": "OTH", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "OT", + "display": "OTHER RELATIONSHIP" + } + ] + } + ], + "name": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "GENARO" + }, + { + "url": "XPN.7", + "valueString": "L" + } + ] + } + ], + "use": "official", + "family": "SURYAN", + "given": [ + "GENARO" + ] + } + ], + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "3013954" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "PRN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "3013954" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.5" + } + ], + "system": "phone", + "use": "home" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "3013954" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "3013954" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.31" + } + ], + "system": "phone", + "use": "work" + } + ], + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE" + ], + "city": "THUNDER MOUNTAIN", + "state": "IG", + "postalCode": "99999", + "country": "USA" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.32" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "4861 20TH AVE" + ], + "city": "AURORA", + "state": "IG", + "postalCode": "99999", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c", + "resource": { + "resourceType": "Encounter", + "id": "1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit", + "extension": [ + { + "url": "PV1.18", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "IN" + } + ] + } + }, + { + "url": "PV1.39", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "COCAA" + } + ] + } + }, + { + "url": "PV1.41", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AD" + } + ] + } + } + ] + } + ], + "status": "in-progress", + "class": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "I" + } + ] + } + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "IMP", + "display": "inpatient encounter" + }, + "type": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "E" + } + ] + } + ], + "serviceType": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "ICU" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "episodeOfCare": [ + { + "reference": "EpisodeOfCare/1732567199045254000.75995b97-4484-4b6f-9a95-e2094ec15c38" + } + ], + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ATND", + "display": "attender" + } + ] + } + ], + "individual": { + "reference": "Practitioner/1732567199036256000.e300ef6f-d1d5-4307-bab2-1acb5127291a" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "REF" + } + ], + "text": "referrer" + } + ], + "individual": { + "reference": "Practitioner/1732567199037634000.db3178c2-55d7-4fbc-b85a-8ebc37a3a700" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "CON" + } + ], + "text": "consultant" + } + ], + "individual": { + "reference": "Practitioner/1732567199039922000.00cde554-1490-4a7d-b140-feed9bc52201" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "CON" + } + ], + "text": "consultant" + } + ], + "individual": { + "reference": "Practitioner/1732567199040769000.9a1f1d90-965c-4c09-9958-a584cd15f545" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "CON" + } + ], + "text": "consultant" + } + ], + "individual": { + "reference": "Practitioner/1732567199041558000.b95ec212-9b02-455e-9719-556d749fa7b8" + } + }, + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "ADM" + } + ], + "text": "admitter" + } + ], + "individual": { + "reference": "Practitioner/1732567199042363000.798ea31c-9244-4a74-a1ea-054cfcecb55f" + } + } + ], + "period": { + "start": "2028-08-02T05:56:00Z", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202808020556" + } + ] + } + }, + "hospitalization": { + "admitSource": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "PR" + } + ] + }, + "dischargeDisposition": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SAP" + } + ] + } + }, + "location": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.3" + } + ], + "location": { + "reference": "Location/1732567199043855000.3f102a4c-29e8-44d5-86f1-7d620c75e53a" + }, + "status": "active" + } + ] + } + }, + { + "fullUrl": "Practitioner/1732567199036256000.e300ef6f-d1d5-4307-bab2-1acb5127291a", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199036256000.e300ef6f-d1d5-4307-bab2-1acb5127291a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Medical Center of Au" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "James" + }, + { + "url": "XCN.4", + "valueString": "Madison" + }, + { + "url": "XCN.7", + "valueString": "MD" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.7" + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "system": "Medical Center of Au", + "value": "1437205069" + } + ], + "name": [ + { + "family": "Hunt", + "given": [ + "James", + "Madison" + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1732567199037634000.db3178c2-55d7-4fbc-b85a-8ebc37a3a700", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199037634000.db3178c2-55d7-4fbc-b85a-8ebc37a3a700", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Medical Center of Au" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "James" + }, + { + "url": "XCN.4", + "valueString": "Madison" + }, + { + "url": "XCN.7", + "valueString": "MD" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.8" + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "system": "Medical Center of Au", + "value": "1437205069" + } + ], + "name": [ + { + "family": "Hunt", + "given": [ + "James", + "Madison" + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1732567199039922000.00cde554-1490-4a7d-b140-feed9bc52201", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199039922000.00cde554-1490-4a7d-b140-feed9bc52201", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Medical Center of Au" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "James" + }, + { + "url": "XCN.4", + "valueString": "Madison" + }, + { + "url": "XCN.7", + "valueString": "MD" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.9" + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "system": "Medical Center of Au", + "value": "1437205069" + } + ], + "name": [ + { + "family": "Hunt", + "given": [ + "James", + "Madison" + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199040132000.00659366-2881-41e3-9a11-2ddfba58e29e", + "resource": { + "resourceType": "Organization", + "id": "1732567199040132000.00659366-2881-41e3-9a11-2ddfba58e29e", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Medical Center of Au" + } + ] + } + }, + { + "fullUrl": "Practitioner/1732567199040769000.9a1f1d90-965c-4c09-9958-a584cd15f545", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199040769000.9a1f1d90-965c-4c09-9958-a584cd15f545", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Medical Center of Au" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "James" + }, + { + "url": "XCN.4", + "valueString": "M" + }, + { + "url": "XCN.7", + "valueString": "MD" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.9" + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "value": "1962467126", + "assigner": { + "reference": "Organization/1732567199040132000.00659366-2881-41e3-9a11-2ddfba58e29e" + } + } + ], + "name": [ + { + "family": "Neid", + "given": [ + "James", + "M" + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199040970000.5735462e-1f52-4fce-8dd7-40b88c0985df", + "resource": { + "resourceType": "Organization", + "id": "1732567199040970000.5735462e-1f52-4fce-8dd7-40b88c0985df", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Medical Center of Au" + } + ] + } + }, + { + "fullUrl": "Practitioner/1732567199041558000.b95ec212-9b02-455e-9719-556d749fa7b8", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199041558000.b95ec212-9b02-455e-9719-556d749fa7b8", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Medical Center of Au" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Todd" + }, + { + "url": "XCN.7", + "valueString": "NP" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.9" + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "value": "1184669806", + "assigner": { + "reference": "Organization/1732567199040970000.5735462e-1f52-4fce-8dd7-40b88c0985df" + } + } + ], + "name": [ + { + "family": "Hultman", + "given": [ + "Todd" + ], + "suffix": [ + "NP" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1732567199042363000.798ea31c-9244-4a74-a1ea-054cfcecb55f", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199042363000.798ea31c-9244-4a74-a1ea-054cfcecb55f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Medical Center of Au" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "James" + }, + { + "url": "XCN.4", + "valueString": "Madison" + }, + { + "url": "XCN.7", + "valueString": "MD" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.17" + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "system": "Medical Center of Au", + "value": "1437205069" + } + ], + "name": [ + { + "family": "Hunt", + "given": [ + "James", + "Madison" + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Location/1732567199043402000.b2cd2b55-3968-4ecf-8417-b8e77ef149b7", + "resource": { + "resourceType": "Location", + "id": "1732567199043402000.b2cd2b55-3968-4ecf-8417-b8e77ef149b7", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "E.ICUB" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ] + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "_code": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc", + "valueString": "poc" + } + ] + } + } + ] + } + } + }, + { + "fullUrl": "Location/1732567199043476000.0257175d-62e0-4765-90ba-7bde31a1d1f0", + "resource": { + "resourceType": "Location", + "id": "1732567199043476000.0257175d-62e0-4765-90ba-7bde31a1d1f0", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "E.ICB" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ] + } + ], + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "ro" + } + ] + }, + "partOf": { + "reference": "Location/1732567199043402000.b2cd2b55-3968-4ecf-8417-b8e77ef149b7" + } + } + }, + { + "fullUrl": "Location/1732567199043855000.3f102a4c-29e8-44d5-86f1-7d620c75e53a", + "resource": { + "resourceType": "Location", + "id": "1732567199043855000.3f102a4c-29e8-44d5-86f1-7d620c75e53a", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "05" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ] + } + ], + "mode": "instance", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "bd" + } + ] + }, + "partOf": { + "reference": "Location/1732567199043476000.0257175d-62e0-4765-90ba-7bde31a1d1f0" + } + } + }, + { + "fullUrl": "EpisodeOfCare/1732567199045254000.75995b97-4484-4b6f-9a95-e2094ec15c38", + "resource": { + "resourceType": "EpisodeOfCare", + "id": "1732567199045254000.75995b97-4484-4b6f-9a95-e2094ec15c38", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.54" + } + ] + } + }, + { + "fullUrl": "Observation/1732567199047490000.fabe7bf9-7271-45b1-bf3e-573fecaab793", + "resource": { + "resourceType": "Observation", + "id": "1732567199047490000.fabe7bf9-7271-45b1-bf3e-573fecaab793", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7", + "display": "Bacteria identified in Blood by Culture" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BCEXT", + "display": "EXTENDED BLOOD CULTURE" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199047875000.01cce4b5-717e-4a72-987c-82d4d9839333" + }, + { + "reference": "PractitionerRole/1732567199048017000.f74a9434-c892-403b-b94e-5b27683bc19c" + } + ], + "dataAbsentReason": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/data-absent-reason", + "code": "unknown" + } + ] + } + } + }, + { + "fullUrl": "Organization/1732567199047875000.01cce4b5-717e-4a72-987c-82d4d9839333", + "resource": { + "resourceType": "Organization", + "id": "1732567199047875000.01cce4b5-717e-4a72-987c-82d4d9839333", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "MCOE", + "display": "ROSE MEDICAL CENTER (MCOE)" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "MCOE" + } + ], + "name": "ROSE MEDICAL CENTER (MCOE)" + } + }, + { + "fullUrl": "Location/1732567199048261000.c72762b2-9c72-47e7-a26c-a40b6185b868", + "resource": { + "resourceType": "Location", + "id": "1732567199048261000.c72762b2-9c72-47e7-a26c-a40b6185b868", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "ROSE MEDICAL CENTER ", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199049730000.fe95d27e-4e53-48d1-9d59-c43befb7e2ca", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199049730000.fe95d27e-4e53-48d1-9d59-c43befb7e2ca", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Shalini" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199048261000.c72762b2-9c72-47e7-a26c-a40b6185b868" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1033122247" + } + ], + "name": [ + { + "use": "official", + "family": "Chahal", + "given": [ + "Shalini" + ], + "prefix": [ + "Dr." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199052508000.00dbf849-a127-41ba-82e2-1819a0e1a311", + "resource": { + "resourceType": "Organization", + "id": "1732567199052508000.00dbf849-a127-41ba-82e2-1819a0e1a311", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + } + ], + "name": "ROSE MEDICAL CENTER (MCOE)", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4567 E. NINTH AVENUE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "4567 E. NINTH AVENUE" + ], + "city": "DENVER", + "district": "S", + "state": "IG", + "postalCode": "80220", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199048017000.f74a9434-c892-403b-b94e-5b27683bc19c", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199048017000.f74a9434-c892-403b-b94e-5b27683bc19c", + "practitioner": { + "reference": "Practitioner/1732567199049730000.fe95d27e-4e53-48d1-9d59-c43befb7e2ca" + }, + "organization": { + "reference": "Organization/1732567199052508000.00dbf849-a127-41ba-82e2-1819a0e1a311" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199054451000.5d56f5b0-9d28-48a2-aca2-6096f3dd9202", + "resource": { + "resourceType": "Observation", + "id": "1732567199054451000.5d56f5b0-9d28-48a2-aca2-6096f3dd9202", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7", + "display": "Bacteria identified in Blood by Culture" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BCEXT", + "display": "EXTENDED BLOOD CULTURE" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199054791000.94d56e9e-093a-4c3c-8b7f-243adf837966" + }, + { + "reference": "PractitionerRole/1732567199054933000.f3c95499-88e3-46bc-8433-3a983b39d220" + } + ], + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", + "valueCoding": { + "system": "SNOMEDCT", + "code": "406575008", + "display": "Infection caused by vancomycin resistant enterococcus (disorder)" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", + "valueCoding": { + "system": "SNOMEDCT", + "code": "406575008", + "display": "Infection caused by vancomycin resistant enterococcus (disorder)" + } + } + ], + "system": "http://snomed.info/sct", + "version": "07/31/2012", + "code": "782959008", + "display": "Vancomycin resistant Enterococcus raffinosus" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "ENTRAFVRE", + "display": "ENTEROCOCCUS RAFFINOSIS, VRE" + } + ], + "text": "ENTEROCOCCUS RAFFINOSIS, VRE" + } + } + }, + { + "fullUrl": "Organization/1732567199054791000.94d56e9e-093a-4c3c-8b7f-243adf837966", + "resource": { + "resourceType": "Organization", + "id": "1732567199054791000.94d56e9e-093a-4c3c-8b7f-243adf837966", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "MCOE", + "display": "ROSE MEDICAL CENTER (MCOE)" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "MCOE" + } + ], + "name": "ROSE MEDICAL CENTER (MCOE)" + } + }, + { + "fullUrl": "Location/1732567199055120000.83047de3-6d38-48de-97ec-50cbf7ec1d45", + "resource": { + "resourceType": "Location", + "id": "1732567199055120000.83047de3-6d38-48de-97ec-50cbf7ec1d45", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "ROSE MEDICAL CENTER ", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199055913000.b82692c1-4d33-4a06-949f-d51a11cbe31e", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199055913000.b82692c1-4d33-4a06-949f-d51a11cbe31e", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Shalini" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199055120000.83047de3-6d38-48de-97ec-50cbf7ec1d45" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1033122247" + } + ], + "name": [ + { + "use": "official", + "family": "Chahal", + "given": [ + "Shalini" + ], + "prefix": [ + "Dr." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199058462000.2b98266a-950d-4efc-b8c9-ff3ac2a24dac", + "resource": { + "resourceType": "Organization", + "id": "1732567199058462000.2b98266a-950d-4efc-b8c9-ff3ac2a24dac", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + } + ], + "name": "ROSE MEDICAL CENTER (MCOE)", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4567 E. NINTH AVENUE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "4567 E. NINTH AVENUE" + ], + "city": "DENVER", + "district": "MD", + "state": "IG", + "postalCode": "80220", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199054933000.f3c95499-88e3-46bc-8433-3a983b39d220", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199054933000.f3c95499-88e3-46bc-8433-3a983b39d220", + "practitioner": { + "reference": "Practitioner/1732567199055913000.b82692c1-4d33-4a06-949f-d51a11cbe31e" + }, + "organization": { + "reference": "Organization/1732567199058462000.2b98266a-950d-4efc-b8c9-ff3ac2a24dac" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199060378000.fcfe2ad2-c4fb-43d1-81fb-562a506ec857", + "resource": { + "resourceType": "Observation", + "id": "1732567199060378000.fcfe2ad2-c4fb-43d1-81fb-562a506ec857", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7", + "display": "Bacteria identified in Blood by Culture" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BCEXT", + "display": "EXTENDED BLOOD CULTURE" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199060774000.0f606b72-8ad0-4404-afae-38190489fa14" + }, + { + "reference": "PractitionerRole/1732567199060916000.52a88069-5ad6-40a3-b7a0-360c28dc509c" + } + ], + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", + "valueCoding": { + "system": "SNOMEDCT", + "code": "45170000", + "display": "Encephalitis (disorder)" + } + } + ], + "system": "http://snomed.info/sct", + "version": "07/31/2012", + "code": "53326005", + "display": "Candida albicans" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "CANALB", + "display": "CANDIDA ALBICANS" + } + ], + "text": "CANDIDA ALBICANS" + }, + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "***THIS IS AN URGENT RESULT***" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "***THIS IS AN URGENT RESULT***" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "***** Test Results Called To And Verbally Read Back" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "***** Test Results Called To And Verbally Read Back" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "By: RICHARD DDI7840 *****" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "By: RICHARD DDI7840 *****" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "(Date: 08/08/21 Time: 1511 Called BY AMLB.IF.)" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "(Date: 08/08/21 Time: 1511 Called BY AMLB.IF.)" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "******************************" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "******************************" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "**THIS IS A CORRECTED REPORT**" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "**THIS IS A CORRECTED REPORT**" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "******************************" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "******************************" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Original report of ALPHA STRP,NOT ENTEROC.OR PNEU" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Original report of ALPHA STRP,NOT ENTEROC.OR PNEU" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "has been revised to ENTEROCOCCUS SPECIES (GRP D). " + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "has been revised to ENTEROCOCCUS SPECIES (GRP D). " + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "***** Test Results Called To And Verbally Read Back" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "***** Test Results Called To And Verbally Read Back" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "By: LISA WSJ9135 AT AURORA MICROBIOLOGY *****" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "By: LISA WSJ9135 AT AURORA MICROBIOLOGY *****" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "(Date: 08/06/21 Time: 0945 Called BY AMLB.LJ1.)" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "(Date: 08/06/21 Time: 0945 Called BY AMLB.LJ1.)" + } + ] + } + }, + { + "fullUrl": "Organization/1732567199060774000.0f606b72-8ad0-4404-afae-38190489fa14", + "resource": { + "resourceType": "Organization", + "id": "1732567199060774000.0f606b72-8ad0-4404-afae-38190489fa14", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "MCOE", + "display": "ROSE MEDICAL CENTER (MCOE)" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "MCOE" + } + ], + "name": "ROSE MEDICAL CENTER (MCOE)" + } + }, + { + "fullUrl": "Location/1732567199061109000.5681fde5-8cfe-4a9a-b60a-711d80f987d2", + "resource": { + "resourceType": "Location", + "id": "1732567199061109000.5681fde5-8cfe-4a9a-b60a-711d80f987d2", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "ROSE MEDICAL CENTER ", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199061814000.6974189b-649a-47d6-bcf4-85c4673b1b18", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199061814000.6974189b-649a-47d6-bcf4-85c4673b1b18", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Shalini" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199061109000.5681fde5-8cfe-4a9a-b60a-711d80f987d2" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1033122247" + } + ], + "name": [ + { + "use": "official", + "family": "Chahal", + "given": [ + "Shalini" + ], + "prefix": [ + "Dr." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199065007000.ba9c6b50-6ee7-4e52-bd3c-cd0478476298", + "resource": { + "resourceType": "Organization", + "id": "1732567199065007000.ba9c6b50-6ee7-4e52-bd3c-cd0478476298", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + } + ], + "name": "ROSE MEDICAL CENTER (MCOE)", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4567 E. NINTH AVENUE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "4567 E. NINTH AVENUE" + ], + "city": "DENVER", + "district": "MD", + "state": "IG", + "postalCode": "80220", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199060916000.52a88069-5ad6-40a3-b7a0-360c28dc509c", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199060916000.52a88069-5ad6-40a3-b7a0-360c28dc509c", + "practitioner": { + "reference": "Practitioner/1732567199061814000.6974189b-649a-47d6-bcf4-85c4673b1b18" + }, + "organization": { + "reference": "Organization/1732567199065007000.ba9c6b50-6ee7-4e52-bd3c-cd0478476298" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199077189000.133e6966-1206-491f-8afc-cda8f9ff0e3a", + "resource": { + "resourceType": "Observation", + "id": "1732567199077189000.133e6966-1206-491f-8afc-cda8f9ff0e3a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-10T06:25:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7", + "display": "Bacteria identified in Blood by Culture" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BLOODC", + "display": "BLOOD CULTURE" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199077545000.fe6ecfba-4eed-4dec-8531-b7e071f962f6" + }, + { + "reference": "PractitionerRole/1732567199077704000.7a6fdb01-cd74-4e9d-b9af-f1890491e79a" + } + ], + "dataAbsentReason": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/data-absent-reason", + "code": "unknown" + } + ] + } + } + }, + { + "fullUrl": "Organization/1732567199077545000.fe6ecfba-4eed-4dec-8531-b7e071f962f6", + "resource": { + "resourceType": "Organization", + "id": "1732567199077545000.fe6ecfba-4eed-4dec-8531-b7e071f962f6", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199077903000.61b95f3f-d6b9-4ba7-a258-ef92eeba8df9", + "resource": { + "resourceType": "Location", + "id": "1732567199077903000.61b95f3f-d6b9-4ba7-a258-ef92eeba8df9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199078920000.721d43e4-3aec-404d-bb39-d973c6e4c7d5", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199078920000.721d43e4-3aec-404d-bb39-d973c6e4c7d5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199077903000.61b95f3f-d6b9-4ba7-a258-ef92eeba8df9" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199082118000.f68aa789-a17f-4c3a-97dd-20da67d9592d", + "resource": { + "resourceType": "Organization", + "id": "1732567199082118000.f68aa789-a17f-4c3a-97dd-20da67d9592d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "S", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199077704000.7a6fdb01-cd74-4e9d-b9af-f1890491e79a", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199077704000.7a6fdb01-cd74-4e9d-b9af-f1890491e79a", + "practitioner": { + "reference": "Practitioner/1732567199078920000.721d43e4-3aec-404d-bb39-d973c6e4c7d5" + }, + "organization": { + "reference": "Organization/1732567199082118000.f68aa789-a17f-4c3a-97dd-20da67d9592d" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199088223000.363c471d-02e4-4417-a649-1c4eae0d8406", + "resource": { + "resourceType": "Observation", + "id": "1732567199088223000.363c471d-02e4-4417-a649-1c4eae0d8406", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "2.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-10T06:25:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "MBCPCR", + "display": "BLOOD CULTURE PCR" + } + ], + "text": "BLOOD CULTURE PCR" + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199089517000.f2b38a4f-fd68-42ea-9fbc-ad1754ed3881" + }, + { + "reference": "PractitionerRole/1732567199090143000.56266e7c-f65f-4b3a-8cea-19ecfc88052d" + } + ], + "valueString": "GRAM POSITIVE PCR; NO TARGETS DETECTED (SEE COMMENT)" + } + }, + { + "fullUrl": "Organization/1732567199089517000.f2b38a4f-fd68-42ea-9fbc-ad1754ed3881", + "resource": { + "resourceType": "Organization", + "id": "1732567199089517000.f2b38a4f-fd68-42ea-9fbc-ad1754ed3881", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199091215000.97e5ddfa-e2a3-48bc-ad4c-971320fa16fd", + "resource": { + "resourceType": "Location", + "id": "1732567199091215000.97e5ddfa-e2a3-48bc-ad4c-971320fa16fd", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199096645000.5b412f91-0240-480c-b276-8e88145d5035", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199096645000.5b412f91-0240-480c-b276-8e88145d5035", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199091215000.97e5ddfa-e2a3-48bc-ad4c-971320fa16fd" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199098837000.87f253b5-3e92-4178-afc5-d211e950c011", + "resource": { + "resourceType": "Organization", + "id": "1732567199098837000.87f253b5-3e92-4178-afc5-d211e950c011", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199090143000.56266e7c-f65f-4b3a-8cea-19ecfc88052d", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199090143000.56266e7c-f65f-4b3a-8cea-19ecfc88052d", + "practitioner": { + "reference": "Practitioner/1732567199096645000.5b412f91-0240-480c-b276-8e88145d5035" + }, + "organization": { + "reference": "Organization/1732567199098837000.87f253b5-3e92-4178-afc5-d211e950c011" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199100914000.abe72908-3b56-4304-ab0e-ea56554d594d", + "resource": { + "resourceType": "Observation", + "id": "1732567199100914000.abe72908-3b56-4304-ab0e-ea56554d594d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "2.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-10T06:25:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "MPOSBC", + "display": "BLOOD CULTURE GRAM STAIN" + } + ], + "text": "BLOOD CULTURE GRAM STAIN" + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199101272000.9e6e07e3-5116-4349-a190-28714eb5ff05" + }, + { + "reference": "PractitionerRole/1732567199101424000.52e6d76d-bda1-47db-817d-43f148f7fc78" + } + ], + "valueString": "GRAM POSITIVE COCCI IN PAIRS", + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" + } + ], + "version": "2.5.1", + "code": "A", + "display": "Abnormal (applies to non-numeric results)" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "A", + "display": "A" + } + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199101272000.9e6e07e3-5116-4349-a190-28714eb5ff05", + "resource": { + "resourceType": "Organization", + "id": "1732567199101272000.9e6e07e3-5116-4349-a190-28714eb5ff05", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199101617000.2d60572a-9448-44f5-a771-e9210b3a94be", + "resource": { + "resourceType": "Location", + "id": "1732567199101617000.2d60572a-9448-44f5-a771-e9210b3a94be", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199102352000.650ad383-6a62-4fa8-b7e2-18f21ba3ccd3", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199102352000.650ad383-6a62-4fa8-b7e2-18f21ba3ccd3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199101617000.2d60572a-9448-44f5-a771-e9210b3a94be" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199103568000.7e1023b0-4f1a-4584-a02a-8107c9e582e5", + "resource": { + "resourceType": "Organization", + "id": "1732567199103568000.7e1023b0-4f1a-4584-a02a-8107c9e582e5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "A", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199101424000.52e6d76d-bda1-47db-817d-43f148f7fc78", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199101424000.52e6d76d-bda1-47db-817d-43f148f7fc78", + "practitioner": { + "reference": "Practitioner/1732567199102352000.650ad383-6a62-4fa8-b7e2-18f21ba3ccd3" + }, + "organization": { + "reference": "Organization/1732567199103568000.7e1023b0-4f1a-4584-a02a-8107c9e582e5" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199106706000.f4fa25c6-b3ed-43be-bc41-0103e99c7ccb", + "resource": { + "resourceType": "Observation", + "id": "1732567199106706000.f4fa25c6-b3ed-43be-bc41-0103e99c7ccb", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "2.3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-10T06:25:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "MPOSBC", + "display": "BLOOD CULTURE GRAM STAIN" + } + ], + "text": "BLOOD CULTURE GRAM STAIN" + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199108016000.64f09799-a945-46c8-ac1b-cff67ea6ea76" + }, + { + "reference": "PractitionerRole/1732567199108176000.2f8c5ec4-22ae-4f03-85df-bb9485d3a3d7" + } + ], + "valueString": "ANAEROBIC BOTTLE" + } + }, + { + "fullUrl": "Organization/1732567199108016000.64f09799-a945-46c8-ac1b-cff67ea6ea76", + "resource": { + "resourceType": "Organization", + "id": "1732567199108016000.64f09799-a945-46c8-ac1b-cff67ea6ea76", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199108390000.5ca469a7-a710-420e-b063-78623eb8a308", + "resource": { + "resourceType": "Location", + "id": "1732567199108390000.5ca469a7-a710-420e-b063-78623eb8a308", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199109119000.b67f76a7-ab32-4e8c-9839-6b6c4d26b613", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199109119000.b67f76a7-ab32-4e8c-9839-6b6c4d26b613", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199108390000.5ca469a7-a710-420e-b063-78623eb8a308" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199110243000.4fe2d33f-1936-4980-bba7-40daa6674c25", + "resource": { + "resourceType": "Organization", + "id": "1732567199110243000.4fe2d33f-1936-4980-bba7-40daa6674c25", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199108176000.2f8c5ec4-22ae-4f03-85df-bb9485d3a3d7", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199108176000.2f8c5ec4-22ae-4f03-85df-bb9485d3a3d7", + "practitioner": { + "reference": "Practitioner/1732567199109119000.b67f76a7-ab32-4e8c-9839-6b6c4d26b613" + }, + "organization": { + "reference": "Organization/1732567199110243000.4fe2d33f-1936-4980-bba7-40daa6674c25" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199111827000.60f266e4-b9db-4e40-b926-4d43661b0aa5", + "resource": { + "resourceType": "Observation", + "id": "1732567199111827000.60f266e4-b9db-4e40-b926-4d43661b0aa5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "2.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-10T06:25:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "MPOSBC", + "display": "BLOOD CULTURE GRAM STAIN" + } + ], + "text": "BLOOD CULTURE GRAM STAIN" + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199112178000.7afa4acf-0f8c-4a5a-9ea2-cba3d62f31c2" + }, + { + "reference": "PractitionerRole/1732567199112324000.99b03060-1a6d-417f-9767-2612f0045969" + } + ], + "valueString": "YEAST", + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" + } + ], + "version": "2.5.1", + "code": "A", + "display": "Abnormal (applies to non-numeric results)" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "A", + "display": "A" + } + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199112178000.7afa4acf-0f8c-4a5a-9ea2-cba3d62f31c2", + "resource": { + "resourceType": "Organization", + "id": "1732567199112178000.7afa4acf-0f8c-4a5a-9ea2-cba3d62f31c2", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199112525000.00c3374e-c2cd-4bf2-acef-068cf80c01aa", + "resource": { + "resourceType": "Location", + "id": "1732567199112525000.00c3374e-c2cd-4bf2-acef-068cf80c01aa", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199113263000.1e3add48-b786-41ee-b7fc-43cebff789b8", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199113263000.1e3add48-b786-41ee-b7fc-43cebff789b8", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199112525000.00c3374e-c2cd-4bf2-acef-068cf80c01aa" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199117434000.6f50c405-3b83-43ca-a30e-d6be1f2b6ba5", + "resource": { + "resourceType": "Organization", + "id": "1732567199117434000.6f50c405-3b83-43ca-a30e-d6be1f2b6ba5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "A", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199112324000.99b03060-1a6d-417f-9767-2612f0045969", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199112324000.99b03060-1a6d-417f-9767-2612f0045969", + "practitioner": { + "reference": "Practitioner/1732567199113263000.1e3add48-b786-41ee-b7fc-43cebff789b8" + }, + "organization": { + "reference": "Organization/1732567199117434000.6f50c405-3b83-43ca-a30e-d6be1f2b6ba5" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199119630000.d2413f80-e90e-455e-b46b-8fbe1c02c421", + "resource": { + "resourceType": "Observation", + "id": "1732567199119630000.d2413f80-e90e-455e-b46b-8fbe1c02c421", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "2.5" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-10T06:25:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "MPOSBC", + "display": "BLOOD CULTURE GRAM STAIN" + } + ], + "text": "BLOOD CULTURE GRAM STAIN" + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199119974000.66405e0a-81ee-47b5-96bd-d9495bdb5ba3" + }, + { + "reference": "PractitionerRole/1732567199120149000.5bba030f-cefd-4fb3-8aa2-1a8d9a887999" + } + ], + "valueString": "AEROBIC BOTTLE" + } + }, + { + "fullUrl": "Organization/1732567199119974000.66405e0a-81ee-47b5-96bd-d9495bdb5ba3", + "resource": { + "resourceType": "Organization", + "id": "1732567199119974000.66405e0a-81ee-47b5-96bd-d9495bdb5ba3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199120353000.d9c42282-a7aa-4b2d-8703-094c9f80c9e4", + "resource": { + "resourceType": "Location", + "id": "1732567199120353000.d9c42282-a7aa-4b2d-8703-094c9f80c9e4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199121080000.5f438056-fa84-49af-95e0-4e5d499b5889", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199121080000.5f438056-fa84-49af-95e0-4e5d499b5889", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199120353000.d9c42282-a7aa-4b2d-8703-094c9f80c9e4" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199122196000.793d4c22-e4cf-4eca-99b6-30e6fc03df80", + "resource": { + "resourceType": "Organization", + "id": "1732567199122196000.793d4c22-e4cf-4eca-99b6-30e6fc03df80", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199120149000.5bba030f-cefd-4fb3-8aa2-1a8d9a887999", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199120149000.5bba030f-cefd-4fb3-8aa2-1a8d9a887999", + "practitioner": { + "reference": "Practitioner/1732567199121080000.5f438056-fa84-49af-95e0-4e5d499b5889" + }, + "organization": { + "reference": "Organization/1732567199122196000.793d4c22-e4cf-4eca-99b6-30e6fc03df80" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199124582000.d849036b-2d33-44e2-97fc-63b48afa72ee", + "resource": { + "resourceType": "Observation", + "id": "1732567199124582000.d849036b-2d33-44e2-97fc-63b48afa72ee", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-10T06:25:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.11", + "valueString": "C" + } + ] + } + ], + "status": "corrected", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7", + "display": "Bacteria identified in Blood by Culture" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BLOODC", + "display": "BLOOD CULTURE" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199125776000.e83961d8-5a5b-432e-bd83-9b54f5d39dc6" + }, + { + "reference": "PractitionerRole/1732567199126130000.dc05b253-17e5-443f-9b27-96c71716b6fb" + } + ], + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "POSITIVE", + "display": "POSITIVE" + } + ], + "text": "POSITIVE" + }, + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Nucleic acid test for the detection of Staphylococcus spp.," + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Nucleic acid test for the detection of Staphylococcus spp.," + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "spp., S. pneumoniae, S. pyogenes, S. agalactiae," + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "spp., S. pneumoniae, S. pyogenes, S. agalactiae," + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "S. anginosus group, Enterococcus faecalis, Enterococcus" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "S. anginosus group, Enterococcus faecalis, Enterococcus" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "faecium, mec-A mediated methicillin resistance, and" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "faecium, mec-A mediated methicillin resistance, and" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "vanA/vanB mediated Vancomycin resistance was performed and" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "vanA/vanB mediated Vancomycin resistance was performed and" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "was NEGATIVE for all targets tested." + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "was NEGATIVE for all targets tested." + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "*****CORRECTED REPORT*****" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "*****CORRECTED REPORT*****" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Previous report of was incorrect." + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Previous report of was incorrect." + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "The correct report of YEAST PRESENT ON GRAM STAIN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "The correct report of YEAST PRESENT ON GRAM STAIN" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "was called and texted to ALLISON CABRERA" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "was called and texted to ALLISON CABRERA" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Date:08/08/28 Time:0613 Called by:ELB.RMH" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Date:08/08/28 Time:0613 Called by:ELB.RMH" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Critical result called to and read back by:RN LIBBY HILL" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Critical result called to and read back by:RN LIBBY HILL" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Location:ICU on 08/06/21 at 1136 by ELB.HC" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Location:ICU on 08/06/21 at 1136 by ELB.HC" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Critical result called to and read back by:HANNAH STEVENS RN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Critical result called to and read back by:HANNAH STEVENS RN" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Location:ICUB on 08/02/28 at 2201 by ELB.MS3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Location:ICUB on 08/02/28 at 2201 by ELB.MS3" + } + ] + } + }, + { + "fullUrl": "Organization/1732567199125776000.e83961d8-5a5b-432e-bd83-9b54f5d39dc6", + "resource": { + "resourceType": "Organization", + "id": "1732567199125776000.e83961d8-5a5b-432e-bd83-9b54f5d39dc6", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] } - } ], - "code" : "L" - } - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "4567 E. NINTH AVENUE" ], - "city" : "DENVER", - "district" : "MD", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914739229000.6ad958a3-cd61-4ba8-9ae2-b107b5d2ff44", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914739229000.6ad958a3-cd61-4ba8-9ae2-b107b5d2ff44", - "practitioner" : { - "reference" : "Practitioner/1730838914740161000.04914e7b-0bb1-4d46-b904-ba65db10dbc2" - }, - "organization" : { - "reference" : "Organization/1730838914741038000.daf2a9d1-a101-4305-bddc-5e68e2e075d5" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914746679000.6cb47aca-33cd-460f-8769-e80973694db3", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914746679000.6cb47aca-33cd-460f-8769-e80973694db3", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLOODC", - "display" : "BLOOD CULTURE" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914746992000.6d25507d-e554-4da0-aad2-8eb1d4bba5bb" - }, { - "reference" : "PractitionerRole/1730838914747157000.75a61a96-bde6-4814-b3ea-a9a0eecca9fd" - } ], - "dataAbsentReason" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/data-absent-reason", - "code" : "unknown" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" } - } - }, { - "fullUrl" : "Organization/1730838914746992000.6d25507d-e554-4da0-aad2-8eb1d4bba5bb", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914746992000.6d25507d-e554-4da0-aad2-8eb1d4bba5bb", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] + }, + { + "fullUrl": "Location/1732567199127140000.1e372c8c-f4ad-47b2-85ac-5625e7d1975b", + "resource": { + "resourceType": "Location", + "id": "1732567199127140000.1e372c8c-f4ad-47b2-85ac-5625e7d1975b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914747491000.5d2b74f8-135f-4fed-a9ce-c781ce233981", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914747491000.5d2b74f8-135f-4fed-a9ce-c781ce233981", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] } - } - }, { - "fullUrl" : "Practitioner/1730838914748040000.7392f614-e8f3-41fa-bef5-8884adfbdb30", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914748040000.7392f614-e8f3-41fa-bef5-8884adfbdb30", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914747491000.5d2b74f8-135f-4fed-a9ce-c781ce233981" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] + }, + { + "fullUrl": "Practitioner/1732567199128042000.afd9f46e-255f-4d2a-bfb4-48a3edcdbe60", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199128042000.afd9f46e-255f-4d2a-bfb4-48a3edcdbe60", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199127140000.1e372c8c-f4ad-47b2-85ac-5625e7d1975b" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199129256000.416647fc-d6dd-4083-9d59-e3e80bdf33a5", + "resource": { + "resourceType": "Organization", + "id": "1732567199129256000.416647fc-d6dd-4083-9d59-e3e80bdf33a5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199126130000.dc05b253-17e5-443f-9b27-96c71716b6fb", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199126130000.dc05b253-17e5-443f-9b27-96c71716b6fb", + "practitioner": { + "reference": "Practitioner/1732567199128042000.afd9f46e-255f-4d2a-bfb4-48a3edcdbe60" }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914748986000.239794cf-d92f-41b7-8a4f-346db0c5391d", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914748986000.239794cf-d92f-41b7-8a4f-346db0c5391d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + "organization": { + "reference": "Organization/1732567199129256000.416647fc-d6dd-4083-9d59-e3e80bdf33a5" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199140275000.94eea07e-6d97-41f9-9dd1-4cd3422211f1", + "resource": { + "resourceType": "Observation", + "id": "1732567199140275000.94eea07e-6d97-41f9-9dd1-4cd3422211f1", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "CE" + }, + { + "url": "OBX.11", + "valueString": "F" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "S", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914747157000.75a61a96-bde6-4814-b3ea-a9a0eecca9fd", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914747157000.75a61a96-bde6-4814-b3ea-a9a0eecca9fd", - "practitioner" : { - "reference" : "Practitioner/1730838914748040000.7392f614-e8f3-41fa-bef5-8884adfbdb30" - }, - "organization" : { - "reference" : "Organization/1730838914748986000.239794cf-d92f-41b7-8a4f-346db0c5391d" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914750457000.11d7a4c7-d29d-406f-a873-41d6f778e1f6", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914750457000.11d7a4c7-d29d-406f-a873-41d6f778e1f6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MBCPCR", - "display" : "BLOOD CULTURE PCR" - } ], - "text" : "BLOOD CULTURE PCR" - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914750742000.53e68f9d-a714-455d-aa25-bfd988eefd9d" - }, { - "reference" : "PractitionerRole/1730838914750904000.e46934f0-987f-438b-b612-b9258465e314" - } ], - "valueString" : "GRAM POSITIVE PCR; NO TARGETS DETECTED (SEE COMMENT)" - } - }, { - "fullUrl" : "Organization/1730838914750742000.53e68f9d-a714-455d-aa25-bfd988eefd9d", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914750742000.53e68f9d-a714-455d-aa25-bfd988eefd9d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914751160000.5b7c1429-7166-4343-8aee-ed6533a901e8", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914751160000.5b7c1429-7166-4343-8aee-ed6533a901e8", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914751739000.4925ede6-c4c0-4741-ac8e-a825a2bd5f51", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914751739000.4925ede6-c4c0-4741-ac8e-a825a2bd5f51", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914751160000.5b7c1429-7166-4343-8aee-ed6533a901e8" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] + ] }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914752664000.de1ad85d-b623-4744-871b-acddfb644f15", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914752664000.de1ad85d-b623-4744-871b-acddfb644f15", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914750904000.e46934f0-987f-438b-b612-b9258465e314", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914750904000.e46934f0-987f-438b-b612-b9258465e314", - "practitioner" : { - "reference" : "Practitioner/1730838914751739000.4925ede6-c4c0-4741-ac8e-a825a2bd5f51" - }, - "organization" : { - "reference" : "Organization/1730838914752664000.de1ad85d-b623-4744-871b-acddfb644f15" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914754255000.1450c286-7c87-4dac-a1ee-e4ae783ece39", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914754255000.1450c286-7c87-4dac-a1ee-e4ae783ece39", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MPOSBC", - "display" : "BLOOD CULTURE GRAM STAIN" - } ], - "text" : "BLOOD CULTURE GRAM STAIN" - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914754536000.72316943-9fe1-4f68-b813-cc470c45632b" - }, { - "reference" : "PractitionerRole/1730838914754726000.c0b84a9e-e94c-43cc-8e78-ad12f6c83724" - } ], - "valueString" : "GRAM POSITIVE COCCI IN PAIRS", - "interpretation" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } ], - "version" : "2.5.1", - "code" : "A", - "display" : "Abnormal (applies to non-numeric results)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "A", - "display" : "A" - } ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914754536000.72316943-9fe1-4f68-b813-cc470c45632b", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914754536000.72316943-9fe1-4f68-b813-cc470c45632b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914754912000.0915f94b-86c4-4d99-a876-ae0e250a2be8", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914754912000.0915f94b-86c4-4d99-a876-ae0e250a2be8", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914755506000.94b4d33b-2bad-443d-8c05-4941d9b8b991", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914755506000.94b4d33b-2bad-443d-8c05-4941d9b8b991", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914754912000.0915f94b-86c4-4d99-a876-ae0e250a2be8" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914756379000.fd4c09f7-d193-47c5-9acc-ff236a1b86f1", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914756379000.fd4c09f7-d193-47c5-9acc-ff236a1b86f1", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + "effectiveDateTime": "2028-08-02T02:52:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + ] }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "A", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914754726000.c0b84a9e-e94c-43cc-8e78-ad12f6c83724", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914754726000.c0b84a9e-e94c-43cc-8e78-ad12f6c83724", - "practitioner" : { - "reference" : "Practitioner/1730838914755506000.94b4d33b-2bad-443d-8c05-4941d9b8b991" - }, - "organization" : { - "reference" : "Organization/1730838914756379000.fd4c09f7-d193-47c5-9acc-ff236a1b86f1" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914757918000.71ba2d30-22a8-4a57-9b4f-ac2ea4a6af9e", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914757918000.71ba2d30-22a8-4a57-9b4f-ac2ea4a6af9e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MPOSBC", - "display" : "BLOOD CULTURE GRAM STAIN" - } ], - "text" : "BLOOD CULTURE GRAM STAIN" - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914758206000.036b7df2-7e27-43f0-bcde-4f5043376e7b" - }, { - "reference" : "PractitionerRole/1730838914758362000.58bd98c3-0c63-473c-9420-be20c9ec79f6" - } ], - "valueString" : "ANAEROBIC BOTTLE" - } - }, { - "fullUrl" : "Organization/1730838914758206000.036b7df2-7e27-43f0-bcde-4f5043376e7b", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914758206000.036b7df2-7e27-43f0-bcde-4f5043376e7b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] + "performer": [ + { + "reference": "Organization/1732567199140682000.9be34146-8804-4cfb-8415-b929d002cd7b" + }, + { + "reference": "PractitionerRole/1732567199140827000.c49650e7-8164-432b-b209-2ec7e364bd14" + } + ], + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "COM" + } + ] } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914758543000.61224df6-d5be-4cf6-9ab0-2eedeaf4a320", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914758543000.61224df6-d5be-4cf6-9ab0-2eedeaf4a320", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] } - } - }, { - "fullUrl" : "Practitioner/1730838914759070000.c6f2542a-e9a0-4a0f-8355-46f5d63ce9e0", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914759070000.c6f2542a-e9a0-4a0f-8355-46f5d63ce9e0", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914758543000.61224df6-d5be-4cf6-9ab0-2eedeaf4a320" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914759949000.48d12ee7-bd88-4e86-b4ef-374e23efb22f", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914759949000.48d12ee7-bd88-4e86-b4ef-374e23efb22f", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Organization/1732567199140682000.9be34146-8804-4cfb-8415-b929d002cd7b", + "resource": { + "resourceType": "Organization", + "id": "1732567199140682000.9be34146-8804-4cfb-8415-b929d002cd7b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914758362000.58bd98c3-0c63-473c-9420-be20c9ec79f6", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914758362000.58bd98c3-0c63-473c-9420-be20c9ec79f6", - "practitioner" : { - "reference" : "Practitioner/1730838914759070000.c6f2542a-e9a0-4a0f-8355-46f5d63ce9e0" - }, - "organization" : { - "reference" : "Organization/1730838914759949000.48d12ee7-bd88-4e86-b4ef-374e23efb22f" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914761281000.8248137a-4beb-4915-a234-653c14b8991a", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914761281000.8248137a-4beb-4915-a234-653c14b8991a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MPOSBC", - "display" : "BLOOD CULTURE GRAM STAIN" - } ], - "text" : "BLOOD CULTURE GRAM STAIN" - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914761569000.94163319-903f-4f61-bad9-f28a3ec0c734" - }, { - "reference" : "PractitionerRole/1730838914761697000.2dd3cf37-5ece-4de0-8091-41a80bab711d" - } ], - "valueString" : "YEAST", - "interpretation" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } ], - "version" : "2.5.1", - "code" : "A", - "display" : "Abnormal (applies to non-numeric results)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "A", - "display" : "A" - } ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914761569000.94163319-903f-4f61-bad9-f28a3ec0c734", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914761569000.94163319-903f-4f61-bad9-f28a3ec0c734", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914761888000.13e1459a-ff3e-470d-b738-f5fb1428a39b", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914761888000.13e1459a-ff3e-470d-b738-f5fb1428a39b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" } - } - }, { - "fullUrl" : "Practitioner/1730838914762388000.b231661e-1f78-4bc7-8cf1-55193d1a9d61", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914762388000.b231661e-1f78-4bc7-8cf1-55193d1a9d61", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914761888000.13e1459a-ff3e-470d-b738-f5fb1428a39b" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914763287000.b8c3e4b7-cd32-4435-a629-94ef14ced79d", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914763287000.b8c3e4b7-cd32-4435-a629-94ef14ced79d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Location/1732567199141031000.a8a24659-133e-4e8a-a09a-d6a33358d9b7", + "resource": { + "resourceType": "Location", + "id": "1732567199141031000.a8a24659-133e-4e8a-a09a-d6a33358d9b7", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "A", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914761697000.2dd3cf37-5ece-4de0-8091-41a80bab711d", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914761697000.2dd3cf37-5ece-4de0-8091-41a80bab711d", - "practitioner" : { - "reference" : "Practitioner/1730838914762388000.b231661e-1f78-4bc7-8cf1-55193d1a9d61" - }, - "organization" : { - "reference" : "Organization/1730838914763287000.b8c3e4b7-cd32-4435-a629-94ef14ced79d" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914764878000.6afb20de-601f-4d38-bafd-690a16277184", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914764878000.6afb20de-601f-4d38-bafd-690a16277184", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2.5" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MPOSBC", - "display" : "BLOOD CULTURE GRAM STAIN" - } ], - "text" : "BLOOD CULTURE GRAM STAIN" - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914765197000.c3052de5-605e-4586-99d3-7ea0ae7a18f6" - }, { - "reference" : "PractitionerRole/1730838914765343000.8bf63cb2-9ad2-442a-9211-0f4449b5f33e" - } ], - "valueString" : "AEROBIC BOTTLE" - } - }, { - "fullUrl" : "Organization/1730838914765197000.c3052de5-605e-4586-99d3-7ea0ae7a18f6", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914765197000.c3052de5-605e-4586-99d3-7ea0ae7a18f6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] + ] } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914765554000.e2d9df31-c9e2-4e98-a04c-d735e333e01d", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914765554000.e2d9df31-c9e2-4e98-a04c-d735e333e01d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] } - } - }, { - "fullUrl" : "Practitioner/1730838914766240000.ee6af7ea-4296-415c-afe9-338ddd8eead9", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914766240000.ee6af7ea-4296-415c-afe9-338ddd8eead9", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914765554000.e2d9df31-c9e2-4e98-a04c-d735e333e01d" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914767295000.9df9b693-2a28-46a2-929a-7ab73616e189", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914767295000.9df9b693-2a28-46a2-929a-7ab73616e189", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Practitioner/1732567199141788000.02bc94f5-a418-403b-aabe-7413aa652fa9", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199141788000.02bc94f5-a418-403b-aabe-7413aa652fa9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199141031000.a8a24659-133e-4e8a-a09a-d6a33358d9b7" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199143056000.da689751-fac0-4dc7-94de-ee4fee5af2f4", + "resource": { + "resourceType": "Organization", + "id": "1732567199143056000.da689751-fac0-4dc7-94de-ee4fee5af2f4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914765343000.8bf63cb2-9ad2-442a-9211-0f4449b5f33e", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914765343000.8bf63cb2-9ad2-442a-9211-0f4449b5f33e", - "practitioner" : { - "reference" : "Practitioner/1730838914766240000.ee6af7ea-4296-415c-afe9-338ddd8eead9" - }, - "organization" : { - "reference" : "Organization/1730838914767295000.9df9b693-2a28-46a2-929a-7ab73616e189" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914769074000.2cbaf2ff-ff70-4bfd-a814-c2f3cfb51c50", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914769074000.2cbaf2ff-ff70-4bfd-a814-c2f3cfb51c50", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "CWE" - }, { - "url" : "OBX.11", - "valueString" : "C" - } ] - } ], - "status" : "corrected", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLOODC", - "display" : "BLOOD CULTURE" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914769447000.f3914c63-1deb-46c3-b639-a684d8cebfef" - }, { - "reference" : "PractitionerRole/1730838914769615000.53960ca1-dd67-4c05-9904-2eb26198c17c" - } ], - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "POSITIVE", - "display" : "POSITIVE" - } ], - "text" : "POSITIVE" - }, - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Nucleic acid test for the detection of Staphylococcus spp.," - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Nucleic acid test for the detection of Staphylococcus spp.," - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "spp., S. pneumoniae, S. pyogenes, S. agalactiae," - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "spp., S. pneumoniae, S. pyogenes, S. agalactiae," - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "S. anginosus group, Enterococcus faecalis, Enterococcus" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "S. anginosus group, Enterococcus faecalis, Enterococcus" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "faecium, mec-A mediated methicillin resistance, and" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "faecium, mec-A mediated methicillin resistance, and" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "vanA/vanB mediated Vancomycin resistance was performed and" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "vanA/vanB mediated Vancomycin resistance was performed and" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "was NEGATIVE for all targets tested." - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "was NEGATIVE for all targets tested." - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "*****CORRECTED REPORT*****" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "*****CORRECTED REPORT*****" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Previous report of was incorrect." - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Previous report of was incorrect." - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "The correct report of YEAST PRESENT ON GRAM STAIN" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "The correct report of YEAST PRESENT ON GRAM STAIN" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "was called and texted to ALLISON CABRERA" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "was called and texted to ALLISON CABRERA" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Date:08/08/28 Time:0613 Called by:ELB.RMH" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Date:08/08/28 Time:0613 Called by:ELB.RMH" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:RN LIBBY HILL" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Critical result called to and read back by:RN LIBBY HILL" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICU on 08/06/21 at 1136 by ELB.HC" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Location:ICU on 08/06/21 at 1136 by ELB.HC" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:HANNAH STEVENS RN" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Critical result called to and read back by:HANNAH STEVENS RN" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/02/28 at 2201 by ELB.MS3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Location:ICUB on 08/02/28 at 2201 by ELB.MS3" - } ] - } - }, { - "fullUrl" : "Organization/1730838914769447000.f3914c63-1deb-46c3-b639-a684d8cebfef", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914769447000.f3914c63-1deb-46c3-b639-a684d8cebfef", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914769844000.dfcc6738-80bd-4f6b-8059-bb2faaf91aa6", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914769844000.dfcc6738-80bd-4f6b-8059-bb2faaf91aa6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "S", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] } - } - }, { - "fullUrl" : "Practitioner/1730838914770578000.953e22ec-c55e-4cae-b0a6-b36dd96589c5", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914770578000.953e22ec-c55e-4cae-b0a6-b36dd96589c5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914769844000.dfcc6738-80bd-4f6b-8059-bb2faaf91aa6" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] + }, + { + "fullUrl": "PractitionerRole/1732567199140827000.c49650e7-8164-432b-b209-2ec7e364bd14", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199140827000.c49650e7-8164-432b-b209-2ec7e364bd14", + "practitioner": { + "reference": "Practitioner/1732567199141788000.02bc94f5-a418-403b-aabe-7413aa652fa9" }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914771593000.8945a665-8298-442c-9afa-89eaed432315", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914771593000.8945a665-8298-442c-9afa-89eaed432315", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + "organization": { + "reference": "Organization/1732567199143056000.da689751-fac0-4dc7-94de-ee4fee5af2f4" }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914769615000.53960ca1-dd67-4c05-9904-2eb26198c17c", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914769615000.53960ca1-dd67-4c05-9904-2eb26198c17c", - "practitioner" : { - "reference" : "Practitioner/1730838914770578000.953e22ec-c55e-4cae-b0a6-b36dd96589c5" - }, - "organization" : { - "reference" : "Organization/1730838914771593000.8945a665-8298-442c-9afa-89eaed432315" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914778922000.ecf78aac-289c-40ab-96cc-09e0898af48e", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914778922000.ecf78aac-289c-40ab-96cc-09e0898af48e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "CE" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914779247000.fe2bcee3-4b65-45bb-b7d4-27f81f1ffce7" - }, { - "reference" : "PractitionerRole/1730838914779388000.e2634d64-71ba-4adf-91d4-7d634327fa7c" - } ], - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "COM" - } ] - } - } - }, { - "fullUrl" : "Organization/1730838914779247000.fe2bcee3-4b65-45bb-b7d4-27f81f1ffce7", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914779247000.fe2bcee3-4b65-45bb-b7d4-27f81f1ffce7", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914779571000.b51c8ee9-129b-4b12-9f78-d93168c05099", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914779571000.b51c8ee9-129b-4b12-9f78-d93168c05099", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] } - } - }, { - "fullUrl" : "Practitioner/1730838914780165000.353ec5dc-8dac-493e-b9df-d6c9ed962ab7", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914780165000.353ec5dc-8dac-493e-b9df-d6c9ed962ab7", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914779571000.b51c8ee9-129b-4b12-9f78-d93168c05099" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914781218000.136fb33e-2632-4b36-ac5a-65bddc09c252", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914781218000.136fb33e-2632-4b36-ac5a-65bddc09c252", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Observation/1732567199144879000.8eb1281b-d897-4d62-9de5-8b1c0b228c15", + "resource": { + "resourceType": "Observation", + "id": "1732567199144879000.8eb1281b-d897-4d62-9de5-8b1c0b228c15", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "F" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + ] }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "S", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914779388000.e2634d64-71ba-4adf-91d4-7d634327fa7c", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914779388000.e2634d64-71ba-4adf-91d4-7d634327fa7c", - "practitioner" : { - "reference" : "Practitioner/1730838914780165000.353ec5dc-8dac-493e-b9df-d6c9ed962ab7" - }, - "organization" : { - "reference" : "Organization/1730838914781218000.136fb33e-2632-4b36-ac5a-65bddc09c252" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914782556000.dbc35447-b50c-4640-8d1c-cb706d3bb6f5", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914782556000.dbc35447-b50c-4640-8d1c-cb706d3bb6f5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "performer" : [ { - "reference" : "Organization/1730838914782879000.64a2ba47-f6dc-4d53-b217-54d39d9ee0af" - }, { - "reference" : "PractitionerRole/1730838914783027000.50d6e0f6-0bc6-4b82-94d2-2f68301499bf" - } ], - "valueString" : "This is a rapid molecular assay that simultaneously detects" - } - }, { - "fullUrl" : "Organization/1730838914782879000.64a2ba47-f6dc-4d53-b217-54d39d9ee0af", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914782879000.64a2ba47-f6dc-4d53-b217-54d39d9ee0af", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914783211000.5bcc25e7-8795-41eb-9d15-cdae29f37001", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914783211000.5bcc25e7-8795-41eb-9d15-cdae29f37001", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914783841000.3eb3508b-4f67-4c7e-8871-4a979ae74a07", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914783841000.3eb3508b-4f67-4c7e-8871-4a979ae74a07", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914783211000.5bcc25e7-8795-41eb-9d15-cdae29f37001" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914784827000.b4011a83-ef96-4eaf-ae2e-9d21dc8a80b6", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914784827000.b4011a83-ef96-4eaf-ae2e-9d21dc8a80b6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914783027000.50d6e0f6-0bc6-4b82-94d2-2f68301499bf", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914783027000.50d6e0f6-0bc6-4b82-94d2-2f68301499bf", - "practitioner" : { - "reference" : "Practitioner/1730838914783841000.3eb3508b-4f67-4c7e-8871-4a979ae74a07" - }, - "organization" : { - "reference" : "Organization/1730838914784827000.b4011a83-ef96-4eaf-ae2e-9d21dc8a80b6" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914786102000.4b49ec3b-8e55-4b36-9fbf-962835c9ebdf", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914786102000.4b49ec3b-8e55-4b36-9fbf-962835c9ebdf", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "performer" : [ { - "reference" : "Organization/1730838914786461000.0749975d-6fab-4c1b-a942-fe734c02a854" - }, { - "reference" : "PractitionerRole/1730838914786600000.823ba33f-6ce7-4a20-a7ba-9279697d2561" - } ], - "valueString" : "and identifies the following gram-positive organisms:" - } - }, { - "fullUrl" : "Organization/1730838914786461000.0749975d-6fab-4c1b-a942-fe734c02a854", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914786461000.0749975d-6fab-4c1b-a942-fe734c02a854", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914786808000.e62955fc-f6ef-403d-8182-7ba826cc405c", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914786808000.e62955fc-f6ef-403d-8182-7ba826cc405c", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + "performer": [ + { + "reference": "Organization/1732567199145332000.2857ccdd-4bce-4d12-9c42-c9e3303221f3" + }, + { + "reference": "PractitionerRole/1732567199145476000.9ac6f302-c84f-4751-abad-5a31aa01dbe5" + } + ], + "valueString": "This is a rapid molecular assay that simultaneously detects" } - } - }, { - "fullUrl" : "Practitioner/1730838914787415000.cfded77d-35b4-4f32-b152-e0ba6a36919a", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914787415000.cfded77d-35b4-4f32-b152-e0ba6a36919a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914786808000.e62955fc-f6ef-403d-8182-7ba826cc405c" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914788381000.58e2980f-4873-4c4a-a240-55dc609d5e91", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914788381000.58e2980f-4873-4c4a-a240-55dc609d5e91", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Organization/1732567199145332000.2857ccdd-4bce-4d12-9c42-c9e3303221f3", + "resource": { + "resourceType": "Organization", + "id": "1732567199145332000.2857ccdd-4bce-4d12-9c42-c9e3303221f3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914786600000.823ba33f-6ce7-4a20-a7ba-9279697d2561", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914786600000.823ba33f-6ce7-4a20-a7ba-9279697d2561", - "practitioner" : { - "reference" : "Practitioner/1730838914787415000.cfded77d-35b4-4f32-b152-e0ba6a36919a" - }, - "organization" : { - "reference" : "Organization/1730838914788381000.58e2980f-4873-4c4a-a240-55dc609d5e91" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914789774000.c044d0e9-a99c-4a74-8886-cf10726f0c49", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914789774000.c044d0e9-a99c-4a74-8886-cf10726f0c49", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "performer" : [ { - "reference" : "Organization/1730838914790108000.98512ceb-beca-45c9-a724-e6ce7d2ca901" - }, { - "reference" : "PractitionerRole/1730838914790275000.5f16a0f2-ebf6-4636-8c93-7cc569d5b2e5" - } ], - "dataAbsentReason" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/data-absent-reason", - "code" : "unknown" - } ] - } - } - }, { - "fullUrl" : "Organization/1730838914790108000.98512ceb-beca-45c9-a724-e6ce7d2ca901", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914790108000.98512ceb-beca-45c9-a724-e6ce7d2ca901", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914790541000.dafeb5dd-b9cb-4b84-a9cf-053a4b1a9c6b", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914790541000.dafeb5dd-b9cb-4b84-a9cf-053a4b1a9c6b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" } - } - }, { - "fullUrl" : "Practitioner/1730838914791232000.ab08dbac-9ee0-4fca-a827-7fe374ff30b3", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914791232000.ab08dbac-9ee0-4fca-a827-7fe374ff30b3", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914790541000.dafeb5dd-b9cb-4b84-a9cf-053a4b1a9c6b" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914792242000.0f7f91eb-e2b6-4438-bc7c-ece3cb275e63", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914792242000.0f7f91eb-e2b6-4438-bc7c-ece3cb275e63", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Location/1732567199145761000.68bc5468-628c-4140-a886-a0d11b0a4485", + "resource": { + "resourceType": "Location", + "id": "1732567199145761000.68bc5468-628c-4140-a886-a0d11b0a4485", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914790275000.5f16a0f2-ebf6-4636-8c93-7cc569d5b2e5", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914790275000.5f16a0f2-ebf6-4636-8c93-7cc569d5b2e5", - "practitioner" : { - "reference" : "Practitioner/1730838914791232000.ab08dbac-9ee0-4fca-a827-7fe374ff30b3" - }, - "organization" : { - "reference" : "Organization/1730838914792242000.0f7f91eb-e2b6-4438-bc7c-ece3cb275e63" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914793666000.5f0b4487-9875-4569-b863-77aba7499d86", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914793666000.5f0b4487-9875-4569-b863-77aba7499d86", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "performer" : [ { - "reference" : "Organization/1730838914794067000.6014a50a-d6bf-4091-b721-51c4852dd0b2" - }, { - "reference" : "PractitionerRole/1730838914794241000.5411a19d-072b-4098-8688-b51aacdffc93" - } ], - "valueString" : "Staphylococcus spp. Streptococcus pyogenes" - } - }, { - "fullUrl" : "Organization/1730838914794067000.6014a50a-d6bf-4091-b721-51c4852dd0b2", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914794067000.6014a50a-d6bf-4091-b721-51c4852dd0b2", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] + ] } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914794443000.62d73e1f-5992-482d-8e87-8c9ecbce48cb", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914794443000.62d73e1f-5992-482d-8e87-8c9ecbce48cb", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] } - } - }, { - "fullUrl" : "Practitioner/1730838914795168000.9e5aef11-469f-40db-8918-e7a2cfb06480", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914795168000.9e5aef11-469f-40db-8918-e7a2cfb06480", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914794443000.62d73e1f-5992-482d-8e87-8c9ecbce48cb" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914796128000.597739d8-f8f8-4407-a532-c8c3099b13e1", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914796128000.597739d8-f8f8-4407-a532-c8c3099b13e1", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914794241000.5411a19d-072b-4098-8688-b51aacdffc93", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914794241000.5411a19d-072b-4098-8688-b51aacdffc93", - "practitioner" : { - "reference" : "Practitioner/1730838914795168000.9e5aef11-469f-40db-8918-e7a2cfb06480" - }, - "organization" : { - "reference" : "Organization/1730838914796128000.597739d8-f8f8-4407-a532-c8c3099b13e1" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914797256000.c05d181b-9b59-460e-9f74-7e587e5c5afa", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914797256000.c05d181b-9b59-460e-9f74-7e587e5c5afa", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "performer" : [ { - "reference" : "Organization/1730838914797511000.b32fa9f4-1c74-42bd-aae7-8be1170fde76" - }, { - "reference" : "PractitionerRole/1730838914797645000.7f99607c-d7fd-488f-a617-f31ae6f58ab8" - } ], - "valueString" : "Staphylococcus aureus Streptococcus agalactiae" - } - }, { - "fullUrl" : "Organization/1730838914797511000.b32fa9f4-1c74-42bd-aae7-8be1170fde76", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914797511000.b32fa9f4-1c74-42bd-aae7-8be1170fde76", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914797795000.9ae51191-040e-4772-9581-d3192e38adb8", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914797795000.9ae51191-040e-4772-9581-d3192e38adb8", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "fullUrl": "Practitioner/1732567199146577000.d9ace530-909e-43e5-8687-dcfbe17ce2fa", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199146577000.d9ace530-909e-43e5-8687-dcfbe17ce2fa", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199145761000.68bc5468-628c-4140-a886-a0d11b0a4485" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] } - } - }, { - "fullUrl" : "Practitioner/1730838914798306000.e7ba3ff2-e2de-4105-8559-e301afba0feb", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914798306000.e7ba3ff2-e2de-4105-8559-e301afba0feb", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914797795000.9ae51191-040e-4772-9581-d3192e38adb8" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914799032000.6670f7ef-42e2-4b96-b443-87c25d906686", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914799032000.6670f7ef-42e2-4b96-b443-87c25d906686", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Organization/1732567199147724000.6d86369a-f01e-4564-835d-26bcdcd6fb8d", + "resource": { + "resourceType": "Organization", + "id": "1732567199147724000.6d86369a-f01e-4564-835d-26bcdcd6fb8d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914797645000.7f99607c-d7fd-488f-a617-f31ae6f58ab8", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914797645000.7f99607c-d7fd-488f-a617-f31ae6f58ab8", - "practitioner" : { - "reference" : "Practitioner/1730838914798306000.e7ba3ff2-e2de-4105-8559-e301afba0feb" - }, - "organization" : { - "reference" : "Organization/1730838914799032000.6670f7ef-42e2-4b96-b443-87c25d906686" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914800181000.fc301ec4-32f0-411c-907e-deb1c242e47b", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914800181000.fc301ec4-32f0-411c-907e-deb1c242e47b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "performer" : [ { - "reference" : "Organization/1730838914800435000.5e686451-c528-4d05-9e41-7cc68d08ecd7" - }, { - "reference" : "PractitionerRole/1730838914800564000.365a4cbe-013d-4363-ae9f-c9e203a5970b" - } ], - "valueString" : "Staphylococcus epidermidis Streptococcus anginosus group" - } - }, { - "fullUrl" : "Organization/1730838914800435000.5e686451-c528-4d05-9e41-7cc68d08ecd7", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914800435000.5e686451-c528-4d05-9e41-7cc68d08ecd7", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914800701000.3ad60af5-09e3-488a-9f87-5e47b62bd8c6", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914800701000.3ad60af5-09e3-488a-9f87-5e47b62bd8c6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] } - } - }, { - "fullUrl" : "Practitioner/1730838914801180000.ff44b59d-a607-4a5d-ba27-7bd7789e18f4", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914801180000.ff44b59d-a607-4a5d-ba27-7bd7789e18f4", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914800701000.3ad60af5-09e3-488a-9f87-5e47b62bd8c6" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] + }, + { + "fullUrl": "PractitionerRole/1732567199145476000.9ac6f302-c84f-4751-abad-5a31aa01dbe5", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199145476000.9ac6f302-c84f-4751-abad-5a31aa01dbe5", + "practitioner": { + "reference": "Practitioner/1732567199146577000.d9ace530-909e-43e5-8687-dcfbe17ce2fa" }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914801897000.69491e0c-e686-42d2-a352-94f839d6a845", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914801897000.69491e0c-e686-42d2-a352-94f839d6a845", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + "organization": { + "reference": "Organization/1732567199147724000.6d86369a-f01e-4564-835d-26bcdcd6fb8d" }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914800564000.365a4cbe-013d-4363-ae9f-c9e203a5970b", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914800564000.365a4cbe-013d-4363-ae9f-c9e203a5970b", - "practitioner" : { - "reference" : "Practitioner/1730838914801180000.ff44b59d-a607-4a5d-ba27-7bd7789e18f4" - }, - "organization" : { - "reference" : "Organization/1730838914801897000.69491e0c-e686-42d2-a352-94f839d6a845" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914802931000.82b080f0-5516-4a8d-88b2-a72d6b99b35e", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914802931000.82b080f0-5516-4a8d-88b2-a72d6b99b35e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "performer" : [ { - "reference" : "Organization/1730838914803158000.b9081a3b-19c6-4e99-b0db-bd6150484427" - }, { - "reference" : "PractitionerRole/1730838914803264000.6b14df92-ee17-43e8-b382-ecde91b47bc0" - } ], - "valueString" : "Staphylococcus lugdunensis Streptococcus faecalis" - } - }, { - "fullUrl" : "Organization/1730838914803158000.b9081a3b-19c6-4e99-b0db-bd6150484427", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914803158000.b9081a3b-19c6-4e99-b0db-bd6150484427", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914803402000.b450f80c-dd9a-4488-b46d-8c2bdd8f0e74", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914803402000.b450f80c-dd9a-4488-b46d-8c2bdd8f0e74", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] } - } - }, { - "fullUrl" : "Practitioner/1730838914803827000.cef353e3-b41a-429a-9287-0468f3f4e7f6", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914803827000.cef353e3-b41a-429a-9287-0468f3f4e7f6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914803402000.b450f80c-dd9a-4488-b46d-8c2bdd8f0e74" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914804468000.a02931c7-2a98-4ff7-a3dc-b0a80bd70655", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914804468000.a02931c7-2a98-4ff7-a3dc-b0a80bd70655", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Observation/1732567199150834000.a2f961f6-b583-4923-b910-41a11a600b51", + "resource": { + "resourceType": "Observation", + "id": "1732567199150834000.a2f961f6-b583-4923-b910-41a11a600b51", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" + } + ] } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914803264000.6b14df92-ee17-43e8-b382-ecde91b47bc0", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914803264000.6b14df92-ee17-43e8-b382-ecde91b47bc0", - "practitioner" : { - "reference" : "Practitioner/1730838914803827000.cef353e3-b41a-429a-9287-0468f3f4e7f6" - }, - "organization" : { - "reference" : "Organization/1730838914804468000.a02931c7-2a98-4ff7-a3dc-b0a80bd70655" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914805532000.6c345aea-068c-4186-aba0-efa2b8496e16", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914805532000.6c345aea-068c-4186-aba0-efa2b8496e16", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "performer" : [ { - "reference" : "Organization/1730838914805742000.8e5efd65-7b42-419f-95eb-0fb0d10c15c6" - }, { - "reference" : "PractitionerRole/1730838914805860000.4598e8fe-4a3a-4886-8149-b26e63148e6c" - } ], - "valueString" : "Streptococcus spp. Enterococcus faecium" - } - }, { - "fullUrl" : "Organization/1730838914805742000.8e5efd65-7b42-419f-95eb-0fb0d10c15c6", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914805742000.8e5efd65-7b42-419f-95eb-0fb0d10c15c6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914805986000.475a6589-48db-4dc2-b5d9-7a607fddac6d", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914805986000.475a6589-48db-4dc2-b5d9-7a607fddac6d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914806384000.5baedfd2-2208-4fcb-84ee-b3568c9f83e3", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914806384000.5baedfd2-2208-4fcb-84ee-b3568c9f83e3", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914805986000.475a6589-48db-4dc2-b5d9-7a607fddac6d" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914807013000.4c768d12-d7c5-44d2-880f-cb6fdf7ba7b5", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914807013000.4c768d12-d7c5-44d2-880f-cb6fdf7ba7b5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "F" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + ] }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914805860000.4598e8fe-4a3a-4886-8149-b26e63148e6c", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914805860000.4598e8fe-4a3a-4886-8149-b26e63148e6c", - "practitioner" : { - "reference" : "Practitioner/1730838914806384000.5baedfd2-2208-4fcb-84ee-b3568c9f83e3" - }, - "organization" : { - "reference" : "Organization/1730838914807013000.4c768d12-d7c5-44d2-880f-cb6fdf7ba7b5" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914808096000.7f370244-46ef-47e3-8e04-ff4d9f94994d", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914808096000.7f370244-46ef-47e3-8e04-ff4d9f94994d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.11", - "valueString" : "F" - } ] - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "performer" : [ { - "reference" : "Organization/1730838914808316000.06d1fdec-082f-4e0e-9c63-53f0c1d7863e" - }, { - "reference" : "PractitionerRole/1730838914808428000.a517ba0f-ba20-4587-a1cd-f401578e7d64" - } ], - "valueString" : "Streptococcus pneumoniae " - } - }, { - "fullUrl" : "Organization/1730838914808316000.06d1fdec-082f-4e0e-9c63-53f0c1d7863e", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914808316000.06d1fdec-082f-4e0e-9c63-53f0c1d7863e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "RML" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914808554000.07b9f4eb-9b30-4800-82f0-b94a26bb8a48", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914808554000.07b9f4eb-9b30-4800-82f0-b94a26bb8a48", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914808947000.f24bcfda-77e8-4277-b7e9-848fa67555f8", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914808947000.f24bcfda-77e8-4277-b7e9-848fa67555f8", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, { - "url" : "XCN.4", - "valueString" : "R" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914808554000.07b9f4eb-9b30-4800-82f0-b94a26bb8a48" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "system" : "RML", - "value" : "1740336429" - } ], - "name" : [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ "GREGORY", "R" ], - "prefix" : [ "DR." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914809538000.29c470e6-241a-4042-8d1f-8b9b0dac03fe", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914809538000.29c470e6-241a-4042-8d1f-8b9b0dac03fe", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914808428000.a517ba0f-ba20-4587-a1cd-f401578e7d64", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914808428000.a517ba0f-ba20-4587-a1cd-f401578e7d64", - "practitioner" : { - "reference" : "Practitioner/1730838914808947000.f24bcfda-77e8-4277-b7e9-848fa67555f8" - }, - "organization" : { - "reference" : "Organization/1730838914809538000.29c470e6-241a-4042-8d1f-8b9b0dac03fe" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914810702000.dd0bc552-e245-459e-a91c-ce9357b7b433", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914810702000.dd0bc552-e245-459e-a91c-ce9357b7b433", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ { - "url" : "SN.1", - "valueString" : "=" - }, { - "url" : "SN.2", - "valueString" : "0.5" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "SN" - }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" - } ] - } - }, { - "url" : "OBX.11", - "valueString" : "P" - } ] - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "35788-9", - "display" : "DAPTOmycin [Susceptibility] by Minimum inhibitory concentration (MIC)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "DAP", - "display" : "DAPTOMYCIN" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914810912000.407aff5c-a6bf-43bd-b4d5-5e5fcbdf3210" - }, { - "reference" : "PractitionerRole/1730838914811023000.4cf03d3f-d285-44e9-b4c8-990b36aa3765" - } ], - "interpretation" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } ], - "version" : "2.5.1", - "code" : "S", - "display" : "Susceptible. Indicates for microbiology susceptibilities only." - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "S", - "display" : "S" - } ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914810912000.407aff5c-a6bf-43bd-b4d5-5e5fcbdf3210", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914810912000.407aff5c-a6bf-43bd-b4d5-5e5fcbdf3210", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "MCOE" - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, { - "fullUrl" : "Location/1730838914811215000.b34f0c0e-7d93-4dad-b852-8eade3f06f1d", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914811215000.b34f0c0e-7d93-4dad-b852-8eade3f06f1d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "ROSE MEDICAL CENTER ", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + "performer": [ + { + "reference": "Organization/1732567199151229000.c7adbe43-6acf-4f74-b99a-5fa7021b7104" + }, + { + "reference": "PractitionerRole/1732567199151370000.479a6efa-2189-4de7-b192-2d1786e30911" + } + ], + "valueString": "and identifies the following gram-positive organisms:" } - } - }, { - "fullUrl" : "Practitioner/1730838914811587000.4ea36225-71ef-472d-9605-9902913f1832", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914811587000.4ea36225-71ef-472d-9605-9902913f1832", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Shalini" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914811215000.b34f0c0e-7d93-4dad-b852-8eade3f06f1d" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1033122247" - } ], - "name" : [ { - "use" : "official", - "family" : "Chahal", - "given" : [ "Shalini" ], - "prefix" : [ "Dr." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914812081000.21d1d9f3-437f-4bd4-8709-eb56bbe813e8", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914812081000.21d1d9f3-437f-4bd4-8709-eb56bbe813e8", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "Organization/1732567199151229000.c7adbe43-6acf-4f74-b99a-5fa7021b7104", + "resource": { + "resourceType": "Organization", + "id": "1732567199151229000.c7adbe43-6acf-4f74-b99a-5fa7021b7104", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" } ], - "identifier" : [ + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199151613000.c1ee51bd-f3e8-431e-89b9-007abacef41e", + "resource": { + "resourceType": "Location", + "id": "1732567199151613000.c1ee51bd-f3e8-431e-89b9-007abacef41e", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606246044000.e22fa2ea-20cf-44cc-acab-b42ad43fb1dc", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606246044000.e22fa2ea-20cf-44cc-acab-b42ad43fb1dc", - "extension" : [ + "fullUrl": "Practitioner/1732567199152352000.450989f7-8e0a-4435-873b-ad510f0705a4", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199152352000.450989f7-8e0a-4435-873b-ad510f0705a4", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "XCN.3", + "valueString": "GREGORY" }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.4", + "valueString": "R" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199151613000.c1ee51bd-f3e8-431e-89b9-007abacef41e" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1740336429" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ + "use": "official", + "family": "KOTNIS", + "given": [ "GREGORY", "R" ], - "prefix" : [ + "prefix": [ "DR." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -8993,135 +9291,136 @@ } }, { - "fullUrl" : "Organization/1716965606247296000.90da0f2d-9838-4c2d-a22b-8cfaa82d3bfe", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606247296000.90da0f2d-9838-4c2d-a22b-8cfaa82d3bfe", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199153502000.dad66219-9d7d-45f1-ab4e-cbb4ae2d481b", + "resource": { + "resourceType": "Organization", + "id": "1732567199153502000.dad66219-9d7d-45f1-ab4e-cbb4ae2d481b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "XON.10", + "valueString": "06D0055551" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "06D0055551" + "value": "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "TMCA, SOUTH CAMPUS", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ + "use": "work", + "line": [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606245298000.6ba02662-aa7d-4324-a20a-a48fe3049087", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606245298000.6ba02662-aa7d-4324-a20a-a48fe3049087", - "practitioner" : { - "reference" : "Practitioner/1716965606246044000.e22fa2ea-20cf-44cc-acab-b42ad43fb1dc" + "fullUrl": "PractitionerRole/1732567199151370000.479a6efa-2189-4de7-b192-2d1786e30911", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199151370000.479a6efa-2189-4de7-b192-2d1786e30911", + "practitioner": { + "reference": "Practitioner/1732567199152352000.450989f7-8e0a-4435-873b-ad510f0705a4" }, - "organization" : { - "reference" : "Organization/1716965606247296000.90da0f2d-9838-4c2d-a22b-8cfaa82d3bfe" + "organization": { + "reference": "Organization/1732567199153502000.dad66219-9d7d-45f1-ab4e-cbb4ae2d481b" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -9129,120 +9428,385 @@ } }, { - "fullUrl" : "Observation/1716965606249020000.bbb42dfb-f43f-4759-b4b6-0d76ab5904ea", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606249020000.bbb42dfb-f43f-4759-b4b6-0d76ab5904ea", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2.2" + "fullUrl": "Observation/1732567199155168000.12ef8744-f345-48fa-8305-8d7d9382fc8d", + "resource": { + "resourceType": "Observation", + "id": "1732567199155168000.12ef8744-f345-48fa-8305-8d7d9382fc8d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.2", + "valueId": "ST" }, { - "url" : "OBX.11", - "valueString" : "C" + "url": "OBX.11", + "valueString": "F" } ] } ], - "status" : "corrected", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MPOSBC", - "display" : "BLOOD CULTURE GRAM STAIN" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } - ], - "text" : "BLOOD CULTURE GRAM STAIN" + ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ + "performer": [ + { + "reference": "Organization/1732567199155516000.f3645888-21ff-40dd-90f0-e5b200d92b83" + }, + { + "reference": "PractitionerRole/1732567199155662000.5372287b-f277-4255-bc64-27aa72e2a79f" + } + ], + "dataAbsentReason": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" + "system": "http://terminology.hl7.org/CodeSystem/data-absent-reason", + "code": "unknown" } ] - }, - "performer" : [ + } + } + }, + { + "fullUrl": "Organization/1732567199155516000.f3645888-21ff-40dd-90f0-e5b200d92b83", + "resource": { + "resourceType": "Organization", + "id": "1732567199155516000.f3645888-21ff-40dd-90f0-e5b200d92b83", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199155863000.dc5728c7-083f-4727-9220-d1c8244c4f00", + "resource": { + "resourceType": "Location", + "id": "1732567199155863000.dc5728c7-083f-4727-9220-d1c8244c4f00", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199156635000.525ec202-838a-4aba-9acc-129294e6331e", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199156635000.525ec202-838a-4aba-9acc-129294e6331e", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "GREGORY" + }, + { + "url": "XCN.4", + "valueString": "R" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199155863000.dc5728c7-083f-4727-9220-d1c8244c4f00" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ { - "reference" : "Organization/1716965606249400000.bc96e108-813e-4ee1-a9fd-f46e30bce734" + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199157781000.592684c8-88c0-4343-8e75-d5695a402781", + "resource": { + "resourceType": "Organization", + "id": "1732567199157781000.592684c8-88c0-4343-8e75-d5695a402781", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } }, { - "reference" : "PractitionerRole/1716965606249543000.cbcd88aa-4c3f-4465-9f92-67f72b4f4e9e" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] } ], - "valueString" : "GRAM POSITIVE COCCI IN PAIRS", - "interpretation" : [ + "identifier": [ { - "coding" : [ + "extension": [ { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - ], - "version" : "2.5.1", - "code" : "A", - "display" : "Abnormal (applies to non-numeric results)" - }, + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ + { + "extension": [ { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "XAD.7", + "valueCode": "B" } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "A", - "display" : "A" + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199155662000.5372287b-f277-4255-bc64-27aa72e2a79f", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199155662000.5372287b-f277-4255-bc64-27aa72e2a79f", + "practitioner": { + "reference": "Practitioner/1732567199156635000.525ec202-838a-4aba-9acc-129294e6331e" + }, + "organization": { + "reference": "Organization/1732567199157781000.592684c8-88c0-4343-8e75-d5695a402781" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -9250,121 +9814,241 @@ } }, { - "fullUrl" : "Organization/1716965606249400000.bc96e108-813e-4ee1-a9fd-f46e30bce734", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606249400000.bc96e108-813e-4ee1-a9fd-f46e30bce734", - "extension" : [ + "fullUrl": "Observation/1732567199159440000.6ccfebb0-cd42-4d6a-8931-d3d6396031ca", + "resource": { + "resourceType": "Observation", + "id": "1732567199159440000.6ccfebb0-cd42-4d6a-8931-d3d6396031ca", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, + { + "url": "OBX.11", + "valueString": "F" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "performer": [ + { + "reference": "Organization/1732567199159828000.1f8b7d9b-16af-4de0-a41d-03f204a01600" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "reference": "PractitionerRole/1732567199159973000.122ae170-0f9b-4cfa-b275-363c7a018604" + } + ], + "valueString": "Staphylococcus spp. Streptococcus pyogenes" + } + }, + { + "fullUrl": "Organization/1732567199159828000.1f8b7d9b-16af-4de0-a41d-03f204a01600", + "resource": { + "resourceType": "Organization", + "id": "1732567199159828000.1f8b7d9b-16af-4de0-a41d-03f204a01600", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" } ], - "identifier" : [ + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199160151000.671e1ce5-80db-4553-9c3c-dbc1dffe8ab7", + "resource": { + "resourceType": "Location", + "id": "1732567199160151000.671e1ce5-80db-4553-9c3c-dbc1dffe8ab7", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606250351000.155ef210-9aba-4417-a112-9a89de12afc5", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606250351000.155ef210-9aba-4417-a112-9a89de12afc5", - "extension" : [ + "fullUrl": "Practitioner/1732567199160825000.84765f56-a9a4-4900-b449-5b84b9bf9439", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199160825000.84765f56-a9a4-4900-b449-5b84b9bf9439", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "XCN.3", + "valueString": "GREGORY" }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.4", + "valueString": "R" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199160151000.671e1ce5-80db-4553-9c3c-dbc1dffe8ab7" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1740336429" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ + "use": "official", + "family": "KOTNIS", + "given": [ "GREGORY", "R" ], - "prefix" : [ + "prefix": [ "DR." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -9372,136 +10056,136 @@ } }, { - "fullUrl" : "Organization/1716965606251484000.528db132-06b7-4e38-84d6-5c6eab758549", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606251484000.528db132-06b7-4e38-84d6-5c6eab758549", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199161885000.d10d9c4c-dcf9-443b-8532-8b2f13d72058", + "resource": { + "resourceType": "Organization", + "id": "1732567199161885000.d10d9c4c-dcf9-443b-8532-8b2f13d72058", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "XON.10", + "valueString": "06D0055551" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "06D0055551" + "value": "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "TMCA, SOUTH CAMPUS", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ + "use": "work", + "line": [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "A", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606249543000.cbcd88aa-4c3f-4465-9f92-67f72b4f4e9e", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606249543000.cbcd88aa-4c3f-4465-9f92-67f72b4f4e9e", - "practitioner" : { - "reference" : "Practitioner/1716965606250351000.155ef210-9aba-4417-a112-9a89de12afc5" + "fullUrl": "PractitionerRole/1732567199159973000.122ae170-0f9b-4cfa-b275-363c7a018604", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199159973000.122ae170-0f9b-4cfa-b275-363c7a018604", + "practitioner": { + "reference": "Practitioner/1732567199160825000.84765f56-a9a4-4900-b449-5b84b9bf9439" }, - "organization" : { - "reference" : "Organization/1716965606251484000.528db132-06b7-4e38-84d6-5c6eab758549" + "organization": { + "reference": "Organization/1732567199161885000.d10d9c4c-dcf9-443b-8532-8b2f13d72058" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -9509,205 +10193,241 @@ } }, { - "fullUrl" : "Observation/1716965606253448000.36543fb8-4ced-4a07-b306-f00d5b61a61d", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606253448000.36543fb8-4ced-4a07-b306-f00d5b61a61d", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2.3" + "fullUrl": "Observation/1732567199163332000.633e21bf-037b-46c5-8bf3-1d0b04273b08", + "resource": { + "resourceType": "Observation", + "id": "1732567199163332000.633e21bf-037b-46c5-8bf3-1d0b04273b08", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.2", + "valueId": "ST" }, { - "url" : "OBX.11", - "valueString" : "C" + "url": "OBX.11", + "valueString": "F" } ] } ], - "status" : "corrected", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MPOSBC", - "display" : "BLOOD CULTURE GRAM STAIN" - } - ], - "text" : "BLOOD CULTURE GRAM STAIN" - }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } ] }, - "performer" : [ + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "performer": [ { - "reference" : "Organization/1716965606253790000.0f408216-c41b-4d4c-beaf-9c0cd9183beb" + "reference": "Organization/1732567199163641000.bfd5bcfd-b6a4-473b-b712-7d8112ee73cb" }, { - "reference" : "PractitionerRole/1716965606253938000.6487b12c-2067-4156-b4ad-f639ba18137d" + "reference": "PractitionerRole/1732567199163772000.29d9095a-b12d-4dba-b762-ef1f207a545c" } ], - "valueString" : "ANAEROBIC BOTTLE" + "valueString": "Staphylococcus aureus Streptococcus agalactiae" } }, { - "fullUrl" : "Organization/1716965606253790000.0f408216-c41b-4d4c-beaf-9c0cd9183beb", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606253790000.0f408216-c41b-4d4c-beaf-9c0cd9183beb", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "Organization/1732567199163641000.bfd5bcfd-b6a4-473b-b712-7d8112ee73cb", + "resource": { + "resourceType": "Organization", + "id": "1732567199163641000.bfd5bcfd-b6a4-473b-b712-7d8112ee73cb", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" } ], - "identifier" : [ + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199163977000.a7fded36-4a5e-429e-9bf1-650400e96261", + "resource": { + "resourceType": "Location", + "id": "1732567199163977000.a7fded36-4a5e-429e-9bf1-650400e96261", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606254706000.a426bbe3-282a-455c-a593-4808caefe2b4", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606254706000.a426bbe3-282a-455c-a593-4808caefe2b4", - "extension" : [ + "fullUrl": "Practitioner/1732567199164652000.fb41b7ab-96a1-416c-af1a-3c8c2428dfe3", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199164652000.fb41b7ab-96a1-416c-af1a-3c8c2428dfe3", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "XCN.3", + "valueString": "GREGORY" }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.4", + "valueString": "R" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199163977000.a7fded36-4a5e-429e-9bf1-650400e96261" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1740336429" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ + "use": "official", + "family": "KOTNIS", + "given": [ "GREGORY", "R" ], - "prefix" : [ + "prefix": [ "DR." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -9715,135 +10435,136 @@ } }, { - "fullUrl" : "Organization/1716965606255971000.6a5993d7-642f-44cf-81a3-d2a35ea26afa", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606255971000.6a5993d7-642f-44cf-81a3-d2a35ea26afa", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199165687000.040be333-7f50-431c-989a-15a900496ead", + "resource": { + "resourceType": "Organization", + "id": "1732567199165687000.040be333-7f50-431c-989a-15a900496ead", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "XON.10", + "valueString": "06D0055551" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "06D0055551" + "value": "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "TMCA, SOUTH CAMPUS", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ + "use": "work", + "line": [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606253938000.6487b12c-2067-4156-b4ad-f639ba18137d", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606253938000.6487b12c-2067-4156-b4ad-f639ba18137d", - "practitioner" : { - "reference" : "Practitioner/1716965606254706000.a426bbe3-282a-455c-a593-4808caefe2b4" + "fullUrl": "PractitionerRole/1732567199163772000.29d9095a-b12d-4dba-b762-ef1f207a545c", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199163772000.29d9095a-b12d-4dba-b762-ef1f207a545c", + "practitioner": { + "reference": "Practitioner/1732567199164652000.fb41b7ab-96a1-416c-af1a-3c8c2428dfe3" }, - "organization" : { - "reference" : "Organization/1716965606255971000.6a5993d7-642f-44cf-81a3-d2a35ea26afa" + "organization": { + "reference": "Organization/1732567199165687000.040be333-7f50-431c-989a-15a900496ead" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -9851,242 +10572,241 @@ } }, { - "fullUrl" : "Observation/1716965606257897000.8dc165ed-8c61-428e-a79f-d0acda7b19c6", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606257897000.8dc165ed-8c61-428e-a79f-d0acda7b19c6", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2.4" + "fullUrl": "Observation/1732567199167298000.20b3c4c6-2814-4819-8809-71e9513bd24b", + "resource": { + "resourceType": "Observation", + "id": "1732567199167298000.20b3c4c6-2814-4819-8809-71e9513bd24b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.2", + "valueId": "ST" }, { - "url" : "OBX.11", - "valueString" : "C" + "url": "OBX.11", + "valueString": "F" } ] } ], - "status" : "corrected", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MPOSBC", - "display" : "BLOOD CULTURE GRAM STAIN" - } - ], - "text" : "BLOOD CULTURE GRAM STAIN" - }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } ] }, - "performer" : [ + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "performer": [ { - "reference" : "Organization/1716965606258459000.825559f7-5f2e-4334-8f41-78e5aa63939e" + "reference": "Organization/1732567199167651000.10e0be9c-a716-4234-95ae-8b17139fcaa6" }, { - "reference" : "PractitionerRole/1716965606258610000.491dfc60-d8cc-4bd1-a489-3a97694325ab" + "reference": "PractitionerRole/1732567199167787000.7f9bb897-46f1-4303-86dd-1403e2a9a83d" } ], - "valueString" : "YEAST", - "interpretation" : [ - { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } - ], - "version" : "2.5.1", - "code" : "A", - "display" : "Abnormal (applies to non-numeric results)" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "A", - "display" : "A" - } - ] - } - ] + "valueString": "Staphylococcus epidermidis Streptococcus anginosus group" } }, { - "fullUrl" : "Organization/1716965606258459000.825559f7-5f2e-4334-8f41-78e5aa63939e", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606258459000.825559f7-5f2e-4334-8f41-78e5aa63939e", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "Organization/1732567199167651000.10e0be9c-a716-4234-95ae-8b17139fcaa6", + "resource": { + "resourceType": "Organization", + "id": "1732567199167651000.10e0be9c-a716-4234-95ae-8b17139fcaa6", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" } ], - "identifier" : [ + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199167986000.5220a6d3-ccef-4a18-9e17-6774dcd6ba46", + "resource": { + "resourceType": "Location", + "id": "1732567199167986000.5220a6d3-ccef-4a18-9e17-6774dcd6ba46", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606259297000.5548acf2-3007-48a8-b83b-46ba233d6118", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606259297000.5548acf2-3007-48a8-b83b-46ba233d6118", - "extension" : [ + "fullUrl": "Practitioner/1732567199169049000.819f48ae-8148-4e18-ab78-bedde1a941a9", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199169049000.819f48ae-8148-4e18-ab78-bedde1a941a9", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "XCN.3", + "valueString": "GREGORY" }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.4", + "valueString": "R" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199167986000.5220a6d3-ccef-4a18-9e17-6774dcd6ba46" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1740336429" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ + "use": "official", + "family": "KOTNIS", + "given": [ "GREGORY", "R" ], - "prefix" : [ + "prefix": [ "DR." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -10094,136 +10814,136 @@ } }, { - "fullUrl" : "Organization/1716965606260597000.9409ef9d-ab7c-4379-a18d-01891ceda153", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606260597000.9409ef9d-ab7c-4379-a18d-01891ceda153", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199172364000.5e317ab3-ff5c-4f28-a180-38f49e6114cc", + "resource": { + "resourceType": "Organization", + "id": "1732567199172364000.5e317ab3-ff5c-4f28-a180-38f49e6114cc", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "XON.10", + "valueString": "06D0055551" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "06D0055551" + "value": "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "TMCA, SOUTH CAMPUS", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ + "use": "work", + "line": [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "A", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606258610000.491dfc60-d8cc-4bd1-a489-3a97694325ab", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606258610000.491dfc60-d8cc-4bd1-a489-3a97694325ab", - "practitioner" : { - "reference" : "Practitioner/1716965606259297000.5548acf2-3007-48a8-b83b-46ba233d6118" + "fullUrl": "PractitionerRole/1732567199167787000.7f9bb897-46f1-4303-86dd-1403e2a9a83d", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199167787000.7f9bb897-46f1-4303-86dd-1403e2a9a83d", + "practitioner": { + "reference": "Practitioner/1732567199169049000.819f48ae-8148-4e18-ab78-bedde1a941a9" }, - "organization" : { - "reference" : "Organization/1716965606260597000.9409ef9d-ab7c-4379-a18d-01891ceda153" + "organization": { + "reference": "Organization/1732567199172364000.5e317ab3-ff5c-4f28-a180-38f49e6114cc" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -10231,205 +10951,241 @@ } }, { - "fullUrl" : "Observation/1716965606262604000.ef8bec03-717c-443b-ae3c-9b7236b764e8", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606262604000.ef8bec03-717c-443b-ae3c-9b7236b764e8", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "2.5" + "fullUrl": "Observation/1732567199175898000.1cc90ee7-dd03-44d1-8201-1d9ea729977c", + "resource": { + "resourceType": "Observation", + "id": "1732567199175898000.1cc90ee7-dd03-44d1-8201-1d9ea729977c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.2", + "valueId": "ST" }, { - "url" : "OBX.11", - "valueString" : "C" + "url": "OBX.11", + "valueString": "F" } ] } ], - "status" : "corrected", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MPOSBC", - "display" : "BLOOD CULTURE GRAM STAIN" - } - ], - "text" : "BLOOD CULTURE GRAM STAIN" - }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } ] }, - "performer" : [ + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "performer": [ { - "reference" : "Organization/1716965606262950000.a6bccf54-09d7-4437-9d67-a83ac8f18528" + "reference": "Organization/1732567199176893000.20622861-e1ae-4562-8d3b-c10ac7cad12e" }, { - "reference" : "PractitionerRole/1716965606263088000.6273cca6-961d-4d66-9e2c-7c25b21fd0ae" + "reference": "PractitionerRole/1732567199177261000.817fbdf5-753e-4063-852c-a74c07d1eecc" } ], - "valueString" : "AEROBIC BOTTLE" + "valueString": "Staphylococcus lugdunensis Streptococcus faecalis" } }, { - "fullUrl" : "Organization/1716965606262950000.a6bccf54-09d7-4437-9d67-a83ac8f18528", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606262950000.a6bccf54-09d7-4437-9d67-a83ac8f18528", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "Organization/1732567199176893000.20622861-e1ae-4562-8d3b-c10ac7cad12e", + "resource": { + "resourceType": "Organization", + "id": "1732567199176893000.20622861-e1ae-4562-8d3b-c10ac7cad12e", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" } ], - "identifier" : [ + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199177908000.03686705-4d4f-4dd4-9c99-f432a52bf9c6", + "resource": { + "resourceType": "Location", + "id": "1732567199177908000.03686705-4d4f-4dd4-9c99-f432a52bf9c6", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606263778000.e0ce2d09-2f4b-42e6-826a-04a80f40f8ae", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606263778000.e0ce2d09-2f4b-42e6-826a-04a80f40f8ae", - "extension" : [ + "fullUrl": "Practitioner/1732567199179509000.cb36654c-1f6c-4b5e-ab40-1166b7ef0608", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199179509000.cb36654c-1f6c-4b5e-ab40-1166b7ef0608", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "XCN.3", + "valueString": "GREGORY" }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.4", + "valueString": "R" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199177908000.03686705-4d4f-4dd4-9c99-f432a52bf9c6" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1740336429" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ + "use": "official", + "family": "KOTNIS", + "given": [ "GREGORY", "R" ], - "prefix" : [ + "prefix": [ "DR." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -10437,135 +11193,136 @@ } }, { - "fullUrl" : "Organization/1716965606265174000.e5a4c8ba-7c0b-427e-a1bc-e35c93f666dd", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606265174000.e5a4c8ba-7c0b-427e-a1bc-e35c93f666dd", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199182234000.31d5eaa5-d202-4761-a639-27c7350c75ee", + "resource": { + "resourceType": "Organization", + "id": "1732567199182234000.31d5eaa5-d202-4761-a639-27c7350c75ee", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "XON.10", + "valueString": "06D0055551" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "06D0055551" + "value": "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "TMCA, SOUTH CAMPUS", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ + "use": "work", + "line": [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606263088000.6273cca6-961d-4d66-9e2c-7c25b21fd0ae", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606263088000.6273cca6-961d-4d66-9e2c-7c25b21fd0ae", - "practitioner" : { - "reference" : "Practitioner/1716965606263778000.e0ce2d09-2f4b-42e6-826a-04a80f40f8ae" + "fullUrl": "PractitionerRole/1732567199177261000.817fbdf5-753e-4063-852c-a74c07d1eecc", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199177261000.817fbdf5-753e-4063-852c-a74c07d1eecc", + "practitioner": { + "reference": "Practitioner/1732567199179509000.cb36654c-1f6c-4b5e-ab40-1166b7ef0608" }, - "organization" : { - "reference" : "Organization/1716965606265174000.e5a4c8ba-7c0b-427e-a1bc-e35c93f666dd" + "organization": { + "reference": "Organization/1732567199182234000.31d5eaa5-d202-4761-a639-27c7350c75ee" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -10573,1287 +11330,1091 @@ } }, { - "fullUrl" : "Observation/1716965606267022000.e84ea561-0e3b-4a52-b1b9-1e9d0783ceb8", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606267022000.e84ea561-0e3b-4a52-b1b9-1e9d0783ceb8", - "extension" : [ + "fullUrl": "Observation/1732567199183716000.d968c1df-10f8-4a2b-b0a4-f3fc282f4363", + "resource": { + "resourceType": "Observation", + "id": "1732567199183716000.d968c1df-10f8-4a2b-b0a4-f3fc282f4363", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-10T06:25:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "ST" }, { - "url" : "OBX.11", - "valueString" : "C" + "url": "OBX.11", + "valueString": "F" } ] } ], - "status" : "corrected", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLOODC", - "display" : "BLOOD CULTURE" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716965606267361000.0008a639-90ee-45cf-beee-4b99bb9f7610" + "reference": "Organization/1732567199184045000.a2dcef48-2519-47e7-9a16-a7186721440f" }, { - "reference" : "PractitionerRole/1716965606267497000.be80ed4a-ba10-4953-82b8-9f5f472583db" + "reference": "PractitionerRole/1732567199184187000.a6781f5d-8f16-48ee-8977-d54cb18ed607" } ], - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, + "valueString": "Streptococcus spp. Enterococcus faecium" + } + }, + { + "fullUrl": "Organization/1732567199184045000.a2dcef48-2519-47e7-9a16-a7186721440f", + "resource": { + "resourceType": "Organization", + "id": "1732567199184045000.a2dcef48-2519-47e7-9a16-a7186721440f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "POSITIVE", - "display" : "POSITIVE" - } - ], - "text" : "POSITIVE" - }, - "note" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Nucleic acid test for the detection of Staphylococcus spp.," - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } - } - ], - "text" : "Nucleic acid test for the detection of Staphylococcus spp.," - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } - } - ], - "text" : "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "spp., S. pneumoniae, S. pyogenes, S. agalactiae," - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } - } - ], - "text" : "spp., S. pneumoniae, S. pyogenes, S. agalactiae," - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "S. anginosus group, Enterococcus faecalis, Enterococcus" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } - } - ], - "text" : "S. anginosus group, Enterococcus faecalis, Enterococcus" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "faecium, mec-A mediated methicillin resistance, and" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } - ] + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" } - } - ], - "text" : "faecium, mec-A mediated methicillin resistance, and" + ] + } }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199184369000.a3467bf0-a18b-4e1b-b3e9-c97ea7da38c4", + "resource": { + "resourceType": "Location", + "id": "1732567199184369000.a3467bf0-a18b-4e1b-b3e9-c97ea7da38c4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199185071000.bd4dba32-d76a-4a9b-97cf-dae90c32a46f", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199185071000.bd4dba32-d76a-4a9b-97cf-dae90c32a46f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "vanA/vanB mediated Vancomycin resistance was performed and" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - ], - "text" : "vanA/vanB mediated Vancomycin resistance was performed and" + ] }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] + "url": "XCN.3", + "valueString": "GREGORY" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "was NEGATIVE for all targets tested." + "url": "XCN.4", + "valueString": "R" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199184369000.a3467bf0-a18b-4e1b-b3e9-c97ea7da38c4" + } + } + ], + "type": { + "coding": [ + { + "extension": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } - ] + ], + "code": "FI" } - } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." ], - "text" : "was NEGATIVE for all targets tested." + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199186108000.15a96528-a661-428f-94f2-e93f05062500", + "resource": { + "resourceType": "Organization", + "id": "1732567199186108000.15a96528-a661-428f-94f2-e93f05062500", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } + "url": "XON.10", + "valueString": "06D0055551" } ] - }, + } + ], + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "NTE.2", - "valueId" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "*****CORRECTED REPORT*****" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } } ], - "text" : "*****CORRECTED REPORT*****" - }, + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, { - "url" : "NTE.2", - "valueId" : "L" + "url": "XAD.7", + "valueCode": "B" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Previous report of was incorrect." - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } } ], - "text" : "Previous report of was incorrect." - }, + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199184187000.a6781f5d-8f16-48ee-8977-d54cb18ed607", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199184187000.a6781f5d-8f16-48ee-8977-d54cb18ed607", + "practitioner": { + "reference": "Practitioner/1732567199185071000.bd4dba32-d76a-4a9b-97cf-dae90c32a46f" + }, + "organization": { + "reference": "Organization/1732567199186108000.15a96528-a661-428f-94f2-e93f05062500" + }, + "code": [ { - "extension" : [ + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199187552000.9acf86c2-c4f3-49a3-95e7-cc6857b20b50", + "resource": { + "resourceType": "Observation", + "id": "1732567199187552000.9acf86c2-c4f3-49a3-95e7-cc6857b20b50", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2021-08-05T01:38:00-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210805013800-0600" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "The correct report of YEAST PRESENT ON GRAM STAIN" + "url": "OBX.2", + "valueId": "ST" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" + "url": "OBX.11", + "valueString": "F" + } + ] + } + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "performer": [ + { + "reference": "Organization/1732567199187858000.9ad81edc-29c1-4afe-88f0-53b6717bd47b" + }, + { + "reference": "PractitionerRole/1732567199187982000.9f65e43a-e848-41dc-a1bd-3ded05ebd627" + } + ], + "valueString": "Streptococcus pneumoniae " + } + }, + { + "fullUrl": "Organization/1732567199187858000.9ad81edc-29c1-4afe-88f0-53b6717bd47b", + "resource": { + "resourceType": "Organization", + "id": "1732567199187858000.9ad81edc-29c1-4afe-88f0-53b6717bd47b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } - ] + ], + "code": "RML", + "display": "TMCA, SOUTH CAMPUS" } - } - ], - "text" : "The correct report of YEAST PRESENT ON GRAM STAIN" + ] + } }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "RML" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199188174000.d8de0243-6dec-4e3c-a5f2-d059d135a80c", + "resource": { + "resourceType": "Location", + "id": "1732567199188174000.d8de0243-6dec-4e3c-a5f2-d059d135a80c", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199188862000.6413c851-72e8-4896-8d6b-6a994e5a6eae", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199188862000.6413c851-72e8-4896-8d6b-6a994e5a6eae", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "was called and texted to ALLISON CABRERA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - ], - "text" : "was called and texted to ALLISON CABRERA" + ] }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] + "url": "XCN.3", + "valueString": "GREGORY" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Date:08/08/28 Time:0613 Called by:ELB.RMH" + "url": "XCN.4", + "valueString": "R" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199188174000.d8de0243-6dec-4e3c-a5f2-d059d135a80c" + } + } + ], + "type": { + "coding": [ + { + "extension": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } - ] + ], + "code": "FI" } - } + ] + }, + "system": "RML", + "value": "1740336429" + } + ], + "name": [ + { + "use": "official", + "family": "KOTNIS", + "given": [ + "GREGORY", + "R" + ], + "prefix": [ + "DR." ], - "text" : "Date:08/08/28 Time:0613 Called by:ELB.RMH" + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199189907000.916e8311-7241-498e-854a-9dfd1f7527db", + "resource": { + "resourceType": "Organization", + "id": "1732567199189907000.916e8311-7241-498e-854a-9dfd1f7527db", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } + "url": "XON.10", + "valueString": "06D0055551" } ] - }, + } + ], + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, { - "url" : "NTE.2", - "valueId" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:RN LIBBY HILL" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } } ], - "text" : "Critical result called to and read back by:RN LIBBY HILL" - }, + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" + } + ] + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, { - "url" : "NTE.2", - "valueId" : "L" + "url": "XAD.7", + "valueCode": "B" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICU on 08/06/21 at 1136 by ELB.HC" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } } ], - "text" : "Location:ICU on 08/06/21 at 1136 by ELB.HC" - }, + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199187982000.9f65e43a-e848-41dc-a1bd-3ded05ebd627", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199187982000.9f65e43a-e848-41dc-a1bd-3ded05ebd627", + "practitioner": { + "reference": "Practitioner/1732567199188862000.6413c851-72e8-4896-8d6b-6a994e5a6eae" + }, + "organization": { + "reference": "Organization/1732567199189907000.916e8311-7241-498e-854a-9dfd1f7527db" + }, + "code": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199191704000.a2684432-4d02-4883-a6b0-a0d03f4c62c1", + "resource": { + "resourceType": "Observation", + "id": "1732567199191704000.a2684432-4d02-4883-a6b0-a0d03f4c62c1", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:HANNAH STEVENS RN" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" } - } - ], - "text" : "Critical result called to and read back by:HANNAH STEVENS RN" + ] + } }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] + "url": "SN.1", + "valueString": "\u003d" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/02/28 at 2201 by ELB.MS3" + "url": "SN.2", + "valueString": "0.5" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "SN" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" + "system": "http://unitsofmeasure.org", + "version": "2.40", + "code": "ug/mL", + "display": "MicroGrams Per MilliLiter [Mass Concentration Units]" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "ug/mL", + "display": "ug/mL" } ] } + }, + { + "url": "OBX.11", + "valueString": "P" } - ], - "text" : "Location:ICUB on 08/02/28 at 2201 by ELB.MS3" + ] + } + ], + "status": "preliminary", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "35788-9", + "display": "DAPTOmycin [Susceptibility] by Minimum inhibitory concentration (MIC)" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "DAP", + "display": "DAPTOMYCIN" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-07T16:36:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199192011000.2c2df7e2-982e-49e3-bae1-b672e9c01101" + }, + { + "reference": "PractitionerRole/1732567199192136000.35f4a7e6-2229-49c8-b3d9-430ce01e85f8" + } + ], + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" + } + ], + "version": "2.5.1", + "code": "S", + "display": "Susceptible. Indicates for microbiology susceptibilities only." + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "S", + "display": "S" + } + ] } ] } }, { - "fullUrl" : "Organization/1716965606267361000.0008a639-90ee-45cf-beee-4b99bb9f7610", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606267361000.0008a639-90ee-45cf-beee-4b99bb9f7610", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "Organization/1732567199192011000.2c2df7e2-982e-49e3-bae1-b672e9c01101", + "resource": { + "resourceType": "Organization", + "id": "1732567199192011000.2c2df7e2-982e-49e3-bae1-b672e9c01101", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "code": "MCOE", + "display": "ROSE MEDICAL CENTER (MCOE)" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" } ], - "identifier" : [ + "identifier": [ + { + "system": "LB", + "value": "MCOE" + } + ], + "name": "ROSE MEDICAL CENTER (MCOE)" + } + }, + { + "fullUrl": "Location/1732567199192312000.f4d7a721-8afb-4d52-a454-21085b9cebd6", + "resource": { + "resourceType": "Location", + "id": "1732567199192312000.f4d7a721-8afb-4d52-a454-21085b9cebd6", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "ROSE MEDICAL CENTER ", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606268251000.99019172-8b1e-4351-9e3c-1330aa94576a", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606268251000.99019172-8b1e-4351-9e3c-1330aa94576a", - "extension" : [ + "fullUrl": "Practitioner/1732567199192968000.336ce742-638b-47a0-a005-8a3f6c1845c8", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199192968000.336ce742-638b-47a0-a005-8a3f6c1845c8", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.3", + "valueString": "Shalini" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199192312000.f4d7a721-8afb-4d52-a454-21085b9cebd6" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1033122247" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" + "use": "official", + "family": "Chahal", + "given": [ + "Shalini" ], - "prefix" : [ - "DR." + "prefix": [ + "Dr." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -11861,136 +12422,525 @@ } }, { - "fullUrl" : "Organization/1716965606269387000.5364047d-c2de-488b-b95e-af3f122ef704", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606269387000.5364047d-c2de-488b-b95e-af3f122ef704", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199193796000.b6f33900-8fce-4fa4-8feb-443916c30b4b", + "resource": { + "resourceType": "Organization", + "id": "1732567199193796000.b6f33900-8fce-4fa4-8feb-443916c30b4b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" + } + } + ], + "name": "ROSE MEDICAL CENTER (MCOE)", + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4567 E. NINTH AVENUE" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "4567 E. NINTH AVENUE" + ], + "city": "DENVER", + "district": "S", + "state": "IG", + "postalCode": "80220", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199192136000.35f4a7e6-2229-49c8-b3d9-430ce01e85f8", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199192136000.35f4a7e6-2229-49c8-b3d9-430ce01e85f8", + "practitioner": { + "reference": "Practitioner/1732567199192968000.336ce742-638b-47a0-a005-8a3f6c1845c8" + }, + "organization": { + "reference": "Organization/1732567199193796000.b6f33900-8fce-4fa4-8feb-443916c30b4b" + }, + "code": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" + } + ] + } + ] + } + }, + { + "fullUrl": "Observation/1732567199195790000.44b30c3b-2f5c-48ba-a04f-d6a0edb924e1", + "resource": { + "resourceType": "Observation", + "id": "1732567199195790000.44b30c3b-2f5c-48ba-a04f-d6a0edb924e1", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", + "extension": [ + { + "url": "SN.1", + "valueString": "\u003d" + }, + { + "url": "SN.2", + "valueString": "16" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "SN" + }, + { + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" + } + ], + "system": "http://unitsofmeasure.org", + "version": "2.40", + "code": "ug/mL", + "display": "MicroGrams Per MilliLiter [Mass Concentration Units]" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "ug/mL", + "display": "ug/mL" + } + ] + } + }, { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "OBX.11", + "valueString": "P" } ] } ], - "identifier" : [ + "status": "preliminary", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "28-1", + "display": "Ampicillin [Susceptibility] by Minimum inhibitory concentration (MIC)" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "AM", + "display": "AMPICILLIN" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectiveDateTime": "2028-08-07T16:36:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + }, + "performer": [ + { + "reference": "Organization/1732567199196108000.a6c48235-fdff-4256-8a8e-ba1ccf020359" + }, + { + "reference": "PractitionerRole/1732567199196250000.32f19fd4-aa0f-406c-a747-ac7c0e8cf2d1" + } + ], + "interpretation": [ { - "extension" : [ + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" + } + ], + "version": "2.5.1", + "code": "R", + "display": "Resistant. Indicates for microbiology susceptibilities only." + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } - ] + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "R", + "display": "R" + } + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199196108000.a6c48235-fdff-4256-8a8e-ba1ccf020359", + "resource": { + "resourceType": "Organization", + "id": "1732567199196108000.a6c48235-fdff-4256-8a8e-ba1ccf020359", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" + } + ], + "code": "MCOE", + "display": "ROSE MEDICAL CENTER (MCOE)" + } + ] + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "MCOE" + } + ], + "name": "ROSE MEDICAL CENTER (MCOE)" + } + }, + { + "fullUrl": "Location/1732567199196440000.9ab0799c-dce2-4ae1-9fad-d218e4d75384", + "resource": { + "resourceType": "Location", + "id": "1732567199196440000.9ab0799c-dce2-4ae1-9fad-d218e4d75384", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "ROSE MEDICAL CENTER ", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199198124000.1d433f22-0cd9-4396-8327-5a8b475e969a", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199198124000.1d433f22-0cd9-4396-8327-5a8b475e969a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Shalini" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199196440000.9ab0799c-dce2-4ae1-9fad-d218e4d75384" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "FI" + } + ] + }, + "system": "RML", + "value": "1033122247" + } + ], + "name": [ + { + "use": "official", + "family": "Chahal", + "given": [ + "Shalini" + ], + "prefix": [ + "Dr." ], - "type" : { - "coding" : [ + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732567199199624000.ba843b99-65a5-48f0-bf7d-631bc27bf3a8", + "resource": { + "resourceType": "Organization", + "id": "1732567199199624000.ba843b99-65a5-48f0-bf7d-631bc27bf3a8", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } } - ] - }, - "value" : "06D0055551" + ], + "code": "L" + } } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "ROSE MEDICAL CENTER (MCOE)", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "4567 E. NINTH AVENUE" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" + "use": "work", + "line": [ + "4567 E. NINTH AVENUE" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "DENVER", + "district": "R", + "state": "IG", + "postalCode": "80220", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606267497000.be80ed4a-ba10-4953-82b8-9f5f472583db", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606267497000.be80ed4a-ba10-4953-82b8-9f5f472583db", - "practitioner" : { - "reference" : "Practitioner/1716965606268251000.99019172-8b1e-4351-9e3c-1330aa94576a" + "fullUrl": "PractitionerRole/1732567199196250000.32f19fd4-aa0f-406c-a747-ac7c0e8cf2d1", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199196250000.32f19fd4-aa0f-406c-a747-ac7c0e8cf2d1", + "practitioner": { + "reference": "Practitioner/1732567199198124000.1d433f22-0cd9-4396-8327-5a8b475e969a" }, - "organization" : { - "reference" : "Organization/1716965606269387000.5364047d-c2de-488b-b95e-af3f122ef704" + "organization": { + "reference": "Organization/1732567199199624000.ba843b99-65a5-48f0-bf7d-631bc27bf3a8" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -11998,237 +12948,321 @@ } }, { - "fullUrl" : "Observation/1716965606277300000.f7d57f1b-a7ce-4dd7-aa41-86dc1a24e5d9", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606277300000.f7d57f1b-a7ce-4dd7-aa41-86dc1a24e5d9", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "Observation/1732567199201535000.07b1653e-e7a8-4c04-ac81-a46d6bc1f724", + "resource": { + "resourceType": "Observation", + "id": "1732567199201535000.07b1653e-e7a8-4c04-ac81-a46d6bc1f724", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, { - "url" : "OBX.2", - "valueId" : "CE" + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" + } + ], + "system": "http://unitsofmeasure.org", + "version": "2.40", + "code": "ug/mL", + "display": "MicroGrams Per MilliLiter [Mass Concentration Units]" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "ug/mL", + "display": "ug/mL" + } + ] + } }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "OBX.11", + "valueString": "P" } ] } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "preliminary", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" + "system": "http://loinc.org", + "version": "2.40", + "code": "7018-5", + "display": "Gentamicin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "GMS", + "display": "GENTAMICIN SYNERGY SCREEN" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "effectiveDateTime" : "2028-08-02T02:52:01-06:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2028-08-07T16:36:01-06:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" } ] }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716965606277693000.d68747c3-ac7b-45eb-af9f-e6cfe1687b24" + "reference": "Organization/1732567199201851000.4a84e947-9cf8-4e47-927a-487ed6b4a628" }, { - "reference" : "PractitionerRole/1716965606277846000.0f708c16-acaa-4120-914e-deb0ab03c36d" + "reference": "PractitionerRole/1732567199201989000.29a2fca8-f40b-491d-8e22-8db2330d4bfc" } ], - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "COM" - } - ] - } + "valueString": "SYN-S", + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" + } + ], + "version": "2.5.1", + "code": "S", + "display": "Susceptible. Indicates for microbiology susceptibilities only." + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "S", + "display": "S" + } + ] + } + ] } }, { - "fullUrl" : "Organization/1716965606277693000.d68747c3-ac7b-45eb-af9f-e6cfe1687b24", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606277693000.d68747c3-ac7b-45eb-af9f-e6cfe1687b24", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "Organization/1732567199201851000.4a84e947-9cf8-4e47-927a-487ed6b4a628", + "resource": { + "resourceType": "Organization", + "id": "1732567199201851000.4a84e947-9cf8-4e47-927a-487ed6b4a628", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "code": "MCOE", + "display": "ROSE MEDICAL CENTER (MCOE)" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "MCOE" } ], - "identifier" : [ + "name": "ROSE MEDICAL CENTER (MCOE)" + } + }, + { + "fullUrl": "Location/1732567199202165000.e44d7fed-55be-4e12-9ebb-b360cebe1af0", + "resource": { + "resourceType": "Location", + "id": "1732567199202165000.e44d7fed-55be-4e12-9ebb-b360cebe1af0", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "ROSE MEDICAL CENTER ", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606278533000.97d9dac8-f9d8-4a59-aa6e-4595c3666f8d", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606278533000.97d9dac8-f9d8-4a59-aa6e-4595c3666f8d", - "extension" : [ + "fullUrl": "Practitioner/1732567199202803000.d533a949-441e-4b2f-b1d5-2206be092dd8", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199202803000.d533a949-441e-4b2f-b1d5-2206be092dd8", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.3", + "valueString": "Shalini" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199202165000.e44d7fed-55be-4e12-9ebb-b360cebe1af0" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1033122247" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" + "use": "official", + "family": "Chahal", + "given": [ + "Shalini" ], - "prefix" : [ - "DR." + "prefix": [ + "Dr." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -12236,136 +13270,95 @@ } }, { - "fullUrl" : "Organization/1716965606279684000.f8ce196d-1f18-433f-bf82-6e3b35c1efc3", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606279684000.f8ce196d-1f18-433f-bf82-6e3b35c1efc3", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199203634000.5e2c74a5-a91d-4cb3-aece-9439026760fd", + "resource": { + "resourceType": "Organization", + "id": "1732567199203634000.5e2c74a5-a91d-4cb3-aece-9439026760fd", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ - { - "url" : "XON.10", - "valueString" : "06D0055551" - } - ] - } - ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } - ] - }, - "value" : "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "ROSE MEDICAL CENTER (MCOE)", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "4567 E. NINTH AVENUE" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" + "use": "work", + "line": [ + "4567 E. NINTH AVENUE" ], - "city" : "AURORA", - "district" : "S", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "DENVER", + "district": "S", + "state": "IG", + "postalCode": "80220", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606277846000.0f708c16-acaa-4120-914e-deb0ab03c36d", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606277846000.0f708c16-acaa-4120-914e-deb0ab03c36d", - "practitioner" : { - "reference" : "Practitioner/1716965606278533000.97d9dac8-f9d8-4a59-aa6e-4595c3666f8d" + "fullUrl": "PractitionerRole/1732567199201989000.29a2fca8-f40b-491d-8e22-8db2330d4bfc", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199201989000.29a2fca8-f40b-491d-8e22-8db2330d4bfc", + "practitioner": { + "reference": "Practitioner/1732567199202803000.d533a949-441e-4b2f-b1d5-2206be092dd8" }, - "organization" : { - "reference" : "Organization/1716965606279684000.f8ce196d-1f18-433f-bf82-6e3b35c1efc3" + "organization": { + "reference": "Organization/1732567199203634000.5e2c74a5-a91d-4cb3-aece-9439026760fd" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -12373,211 +13366,333 @@ } }, { - "fullUrl" : "Observation/1716965606281118000.4fa78b52-80f5-4a79-945e-7914c6fa3e0a", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606281118000.4fa78b52-80f5-4a79-945e-7914c6fa3e0a", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" + "fullUrl": "Observation/1732567199205607000.da0c61c1-eede-4f6d-a884-8780b69fc92d", + "resource": { + "resourceType": "Observation", + "id": "1732567199205607000.da0c61c1-eede-4f6d-a884-8780b69fc92d", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", + "extension": [ + { + "url": "SN.1", + "valueString": "\u003d" + }, + { + "url": "SN.2", + "valueString": "2" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "SN" + }, { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" + } + ], + "system": "http://unitsofmeasure.org", + "version": "2.40", + "code": "ug/mL", + "display": "MicroGrams Per MilliLiter [Mass Concentration Units]" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "ug/mL", + "display": "ug/mL" + } + ] + } }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "OBX.11", + "valueString": "P" } ] } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "preliminary", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" + "system": "http://loinc.org", + "version": "2.40", + "code": "29254-0", + "display": "Linezolid [Susceptibility] by Minimum inhibitory concentration (MIC)" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "LZD", + "display": "LINEZOLID" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "effectiveDateTime": "2028-08-07T16:36:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716965606281480000.fda52230-b445-40de-a00c-6f88b8daaf68" + "reference": "Organization/1732567199205919000.eef0b9d3-0049-42b9-a5e2-e3753fd6520e" }, { - "reference" : "PractitionerRole/1716965606281621000.abc446d9-7fc0-4108-a3f0-911133a6ab01" + "reference": "PractitionerRole/1732567199206056000.d45c2caf-df5d-42ad-9691-a1cc8b1c5567" } ], - "valueString" : "This is a rapid molecular assay that simultaneously detects" + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" + } + ], + "version": "2.5.1", + "code": "S", + "display": "Susceptible. Indicates for microbiology susceptibilities only." + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "S", + "display": "S" + } + ] + } + ] } }, { - "fullUrl" : "Organization/1716965606281480000.fda52230-b445-40de-a00c-6f88b8daaf68", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606281480000.fda52230-b445-40de-a00c-6f88b8daaf68", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "Organization/1732567199205919000.eef0b9d3-0049-42b9-a5e2-e3753fd6520e", + "resource": { + "resourceType": "Organization", + "id": "1732567199205919000.eef0b9d3-0049-42b9-a5e2-e3753fd6520e", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "code": "MCOE", + "display": "ROSE MEDICAL CENTER (MCOE)" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "MCOE" } ], - "identifier" : [ + "name": "ROSE MEDICAL CENTER (MCOE)" + } + }, + { + "fullUrl": "Location/1732567199206244000.32d53286-2793-456b-8fe7-0135add7e293", + "resource": { + "resourceType": "Location", + "id": "1732567199206244000.32d53286-2793-456b-8fe7-0135add7e293", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "ROSE MEDICAL CENTER ", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606282300000.caf3586b-6431-45d1-b2df-552068e55da7", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606282300000.caf3586b-6431-45d1-b2df-552068e55da7", - "extension" : [ + "fullUrl": "Practitioner/1732567199206893000.bfe9fe4e-48aa-488f-8a3d-36f53416d846", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199206893000.bfe9fe4e-48aa-488f-8a3d-36f53416d846", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "XCN.3", + "valueString": "Shalini" }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.21", - "valueString" : "MD" - }, - { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199206244000.32d53286-2793-456b-8fe7-0135add7e293" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1033122247" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" + "use": "official", + "family": "Chahal", + "given": [ + "Shalini" ], - "prefix" : [ - "DR." + "prefix": [ + "Dr." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -12585,136 +13700,95 @@ } }, { - "fullUrl" : "Organization/1716965606283456000.a00aafa2-1301-43e0-8287-3162d8318f8c", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606283456000.a00aafa2-1301-43e0-8287-3162d8318f8c", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199207765000.01258fae-b7b0-40d0-a39a-73e55b16aae9", + "resource": { + "resourceType": "Organization", + "id": "1732567199207765000.01258fae-b7b0-40d0-a39a-73e55b16aae9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ - { - "url" : "XON.10", - "valueString" : "06D0055551" - } - ] - } - ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } - ] - }, - "value" : "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "ROSE MEDICAL CENTER (MCOE)", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "4567 E. NINTH AVENUE" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" + "use": "work", + "line": [ + "4567 E. NINTH AVENUE" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "DENVER", + "district": "S", + "state": "IG", + "postalCode": "80220", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606281621000.abc446d9-7fc0-4108-a3f0-911133a6ab01", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606281621000.abc446d9-7fc0-4108-a3f0-911133a6ab01", - "practitioner" : { - "reference" : "Practitioner/1716965606282300000.caf3586b-6431-45d1-b2df-552068e55da7" + "fullUrl": "PractitionerRole/1732567199206056000.d45c2caf-df5d-42ad-9691-a1cc8b1c5567", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199206056000.d45c2caf-df5d-42ad-9691-a1cc8b1c5567", + "practitioner": { + "reference": "Practitioner/1732567199206893000.bfe9fe4e-48aa-488f-8a3d-36f53416d846" }, - "organization" : { - "reference" : "Organization/1716965606283456000.a00aafa2-1301-43e0-8287-3162d8318f8c" + "organization": { + "reference": "Organization/1732567199207765000.01258fae-b7b0-40d0-a39a-73e55b16aae9" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -12722,211 +13796,321 @@ } }, { - "fullUrl" : "Observation/1716965606285144000.506b93c2-2238-4ee0-a7ff-c35d0ea7abe4", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606285144000.506b93c2-2238-4ee0-a7ff-c35d0ea7abe4", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" + "fullUrl": "Observation/1732567199211107000.7231f3ff-1cf8-4db9-a452-f19059611bf2", + "resource": { + "resourceType": "Observation", + "id": "1732567199211107000.7231f3ff-1cf8-4db9-a452-f19059611bf2", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "ST" + }, { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" + } + ], + "system": "http://unitsofmeasure.org", + "version": "2.40", + "code": "ug/mL", + "display": "MicroGrams Per MilliLiter [Mass Concentration Units]" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "ug/mL", + "display": "ug/mL" + } + ] + } }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "OBX.11", + "valueString": "P" } ] } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "preliminary", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" + "system": "http://loinc.org", + "version": "2.40", + "code": "6933-6", + "display": "Streptomycin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "STS", + "display": "STREPTOMYCIN SYNERGY SCREEN" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "effectiveDateTime": "2028-08-07T16:36:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716965606285489000.c3dde7c7-9b83-4228-bb4c-20a4df3da54d" + "reference": "Organization/1732567199211435000.241fa32a-7d73-4bba-8257-840a6247da06" }, { - "reference" : "PractitionerRole/1716965606285638000.95015fe3-e810-42ea-b090-2162d464d259" + "reference": "PractitionerRole/1732567199211572000.23956087-5a2a-4a3f-b8f9-70a46acb0154" } ], - "valueString" : "and identifies the following gram-positive organisms:" + "valueString": "SYN-S", + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" + } + ], + "version": "2.5.1", + "code": "S", + "display": "Susceptible. Indicates for microbiology susceptibilities only." + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "S", + "display": "S" + } + ] + } + ] } }, { - "fullUrl" : "Organization/1716965606285489000.c3dde7c7-9b83-4228-bb4c-20a4df3da54d", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606285489000.c3dde7c7-9b83-4228-bb4c-20a4df3da54d", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "Organization/1732567199211435000.241fa32a-7d73-4bba-8257-840a6247da06", + "resource": { + "resourceType": "Organization", + "id": "1732567199211435000.241fa32a-7d73-4bba-8257-840a6247da06", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "code": "MCOE", + "display": "ROSE MEDICAL CENTER (MCOE)" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" + } + ], + "identifier": [ + { + "system": "LB", + "value": "MCOE" } ], - "identifier" : [ + "name": "ROSE MEDICAL CENTER (MCOE)" + } + }, + { + "fullUrl": "Location/1732567199211763000.fec7de5d-93c2-4e2d-82b7-56c06397275c", + "resource": { + "resourceType": "Location", + "id": "1732567199211763000.fec7de5d-93c2-4e2d-82b7-56c06397275c", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "ROSE MEDICAL CENTER ", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606286344000.f21e33c5-c1cc-4189-9bd5-39c7170a34fe", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606286344000.f21e33c5-c1cc-4189-9bd5-39c7170a34fe", - "extension" : [ + "fullUrl": "Practitioner/1732567199212513000.c6e4ff80-e801-4bb9-bcd9-18a9d77236bb", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199212513000.c6e4ff80-e801-4bb9-bcd9-18a9d77236bb", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "XCN.3", + "valueString": "Shalini" }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.21", - "valueString" : "MD" - }, - { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199211763000.fec7de5d-93c2-4e2d-82b7-56c06397275c" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1033122247" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" + "use": "official", + "family": "Chahal", + "given": [ + "Shalini" ], - "prefix" : [ - "DR." + "prefix": [ + "Dr." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -12934,136 +14118,95 @@ } }, { - "fullUrl" : "Organization/1716965606287644000.c3e2ac28-578c-4b70-958f-bc541a4a9c41", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606287644000.c3e2ac28-578c-4b70-958f-bc541a4a9c41", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199213460000.5f2a2ae4-178f-4a7b-8a46-0ec02d28532a", + "resource": { + "resourceType": "Organization", + "id": "1732567199213460000.5f2a2ae4-178f-4a7b-8a46-0ec02d28532a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ - { - "url" : "XON.10", - "valueString" : "06D0055551" - } - ] - } - ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } - ] - }, - "value" : "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "ROSE MEDICAL CENTER (MCOE)", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "4567 E. NINTH AVENUE" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" + "use": "work", + "line": [ + "4567 E. NINTH AVENUE" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "DENVER", + "district": "S", + "state": "IG", + "postalCode": "80220", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606285638000.95015fe3-e810-42ea-b090-2162d464d259", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606285638000.95015fe3-e810-42ea-b090-2162d464d259", - "practitioner" : { - "reference" : "Practitioner/1716965606286344000.f21e33c5-c1cc-4189-9bd5-39c7170a34fe" + "fullUrl": "PractitionerRole/1732567199211572000.23956087-5a2a-4a3f-b8f9-70a46acb0154", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199211572000.23956087-5a2a-4a3f-b8f9-70a46acb0154", + "practitioner": { + "reference": "Practitioner/1732567199212513000.c6e4ff80-e801-4bb9-bcd9-18a9d77236bb" }, - "organization" : { - "reference" : "Organization/1716965606287644000.c3e2ac28-578c-4b70-958f-bc541a4a9c41" + "organization": { + "reference": "Organization/1732567199213460000.5f2a2ae4-178f-4a7b-8a46-0ec02d28532a" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -13071,218 +14214,341 @@ } }, { - "fullUrl" : "Observation/1716965606289569000.d4949994-3ef8-4d78-b051-fc9f96e54358", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606289569000.d4949994-3ef8-4d78-b051-fc9f96e54358", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" + "fullUrl": "Observation/1732567199215596000.2c9e9f7e-00f6-4758-9689-90b5a8193f09", + "resource": { + "resourceType": "Observation", + "id": "1732567199215596000.2c9e9f7e-00f6-4758-9689-90b5a8193f09", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", + "extension": [ + { + "url": "SN.1", + "valueString": "\u003e\u003d" + }, + { + "url": "SN.2", + "valueString": "32" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBX.2", + "valueId": "SN" + }, + { + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" + } + ], + "system": "http://unitsofmeasure.org", + "version": "2.40", + "code": "ug/mL", + "display": "MicroGrams Per MilliLiter [Mass Concentration Units]" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "ug/mL", + "display": "ug/mL" + } + ] + } }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "OBX.11", + "valueString": "P" } ] } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "preliminary", + "code": { + "coding": [ { - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", + "valueCoding": { + "system": "SNOMEDCT", + "code": "406604002", + "display": "Infection caused by vancomycin intermediate Staphylococcus aureus (disorder)" + } } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" + "system": "http://loinc.org", + "version": "2.40", + "code": "19000-9", + "display": "Vancomycin [Susceptibility]" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VA", + "display": "VANCOMYCIN" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "effectiveDateTime": "2028-08-07T16:36:01-06:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716965606290045000.0952a5c3-5fd3-4ccc-b4b5-596747e1ea87" + "reference": "Organization/1732567199215940000.1f4c52f9-24dc-4f8e-b855-c791d3ef7b97" }, { - "reference" : "PractitionerRole/1716965606290194000.888cab0b-008e-4af8-a127-f8cdf4e6575d" + "reference": "PractitionerRole/1732567199216071000.2a9a624e-8d75-457d-9c72-dc01b7a64613" } ], - "dataAbsentReason" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/data-absent-reason", - "code" : "unknown" - } - ] - } + "interpretation": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" + } + ], + "version": "2.5.1", + "code": "R", + "display": "Resistant. Indicates for microbiology susceptibilities only." + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "R", + "display": "R" + } + ] + } + ] } }, { - "fullUrl" : "Organization/1716965606290045000.0952a5c3-5fd3-4ccc-b4b5-596747e1ea87", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606290045000.0952a5c3-5fd3-4ccc-b4b5-596747e1ea87", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "fullUrl": "Organization/1732567199215940000.1f4c52f9-24dc-4f8e-b855-c791d3ef7b97", + "resource": { + "resourceType": "Organization", + "id": "1732567199215940000.1f4c52f9-24dc-4f8e-b855-c791d3ef7b97", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LB" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "code": "MCOE", + "display": "ROSE MEDICAL CENTER (MCOE)" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" } ], - "identifier" : [ + "identifier": [ { - "system" : "LB", - "value" : "RML" + "system": "LB", + "value": "MCOE" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "ROSE MEDICAL CENTER (MCOE)" } }, { - "fullUrl" : "Practitioner/1716965606291126000.4f56c19e-4f68-4ce4-93c7-27812f99ad84", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606291126000.4f56c19e-4f68-4ce4-93c7-27812f99ad84", - "extension" : [ + "fullUrl": "Location/1732567199216259000.e5aed2cf-19f1-47dd-9753-5a6c50f4431f", + "resource": { + "resourceType": "Location", + "id": "1732567199216259000.e5aed2cf-19f1-47dd-9753-5a6c50f4431f", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "ROSE MEDICAL CENTER ", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199216933000.55cee4f8-86dd-4d1e-829b-03cab230813f", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199216933000.55cee4f8-86dd-4d1e-829b-03cab230813f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.3", + "valueString": "Shalini" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199216259000.e5aed2cf-19f1-47dd-9753-5a6c50f4431f" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "FI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "RML", + "value": "1033122247" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" + "use": "official", + "family": "Chahal", + "given": [ + "Shalini" ], - "prefix" : [ - "DR." + "prefix": [ + "Dr." ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -13290,136 +14556,95 @@ } }, { - "fullUrl" : "Organization/1716965606292351000.0c1d323c-57ca-42ba-a27c-202c2b7b61f2", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606292351000.0c1d323c-57ca-42ba-a27c-202c2b7b61f2", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199217818000.b7710604-167f-4784-aad5-9d2b73d1a6ca", + "resource": { + "resourceType": "Organization", + "id": "1732567199217818000.b7710604-167f-4784-aad5-9d2b73d1a6ca", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ - { - "url" : "XON.10", - "valueString" : "06D0055551" - } - ] - } - ], - "identifier" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } - ] - }, - "value" : "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": "ROSE MEDICAL CENTER (MCOE)", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "4567 E. NINTH AVENUE" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" + "use": "work", + "line": [ + "4567 E. NINTH AVENUE" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "city": "DENVER", + "district": "R", + "state": "IG", + "postalCode": "80220", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716965606290194000.888cab0b-008e-4af8-a127-f8cdf4e6575d", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606290194000.888cab0b-008e-4af8-a127-f8cdf4e6575d", - "practitioner" : { - "reference" : "Practitioner/1716965606291126000.4f56c19e-4f68-4ce4-93c7-27812f99ad84" + "fullUrl": "PractitionerRole/1732567199216071000.2a9a624e-8d75-457d-9c72-dc01b7a64613", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199216071000.2a9a624e-8d75-457d-9c72-dc01b7a64613", + "practitioner": { + "reference": "Practitioner/1732567199216933000.55cee4f8-86dd-4d1e-829b-03cab230813f" }, - "organization" : { - "reference" : "Organization/1716965606292351000.0c1d323c-57ca-42ba-a27c-202c2b7b61f2" + "organization": { + "reference": "Organization/1732567199217818000.b7710604-167f-4784-aad5-9d2b73d1a6ca" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "system": "http://terminology.hl7.org/CodeSystem/v2-0912", + "code": "MDIR" } ] } @@ -13427,1956 +14652,2386 @@ } }, { - "fullUrl" : "Observation/1716965606294001000.0d1a3666-a003-4348-94c4-cf454472ab0c", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606294001000.0d1a3666-a003-4348-94c4-cf454472ab0c", - "extension" : [ + "fullUrl": "Specimen/1732567199228980000.9129841c-20d4-4d5b-9b9c-ccfde96355cd", + "resource": { + "resourceType": "Specimen", + "id": "1732567199228980000.9129841c-20d4-4d5b-9b9c-ccfde96355cd", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" + } + ], + "collection": { + "collector": { + "reference": "Practitioner/1732567199229903000.9c265f53-a107-4253-99d9-d6691307ef46" + }, + "collectedPeriod": { + "start": "2028-08-02T02:52:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "end": "2028-08-02T02:52:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + } + } + } + } + }, + { + "fullUrl": "Practitioner/1732567199229903000.9c265f53-a107-4253-99d9-d6691307ef46", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199229903000.9c265f53-a107-4253-99d9-d6691307ef46", + "identifier": [ + { + "value": "ER" + } + ] + } + }, + { + "fullUrl": "Specimen/1732567199230364000.019f09a8-e3c0-4191-bfcf-bb02082f7994", + "resource": { + "resourceType": "Specimen", + "id": "1732567199230364000.019f09a8-e3c0-4191-bfcf-bb02082f7994", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" + } + ], + "collection": { + "collector": { + "reference": "Practitioner/1732567199231192000.d9b89aa6-ad1d-469c-a65e-d9fda9bd55dc" + }, + "collectedPeriod": { + "start": "2028-08-02T02:52:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "end": "2028-08-02T02:52:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + } + } + } + } + }, + { + "fullUrl": "Practitioner/1732567199231192000.d9b89aa6-ad1d-469c-a65e-d9fda9bd55dc", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199231192000.d9b89aa6-ad1d-469c-a65e-d9fda9bd55dc", + "identifier": [ + { + "value": "ER" + } + ] + } + }, + { + "fullUrl": "Specimen/1732567199231598000.d8e9a99e-5905-498e-a737-a763a55f939a", + "resource": { + "resourceType": "Specimen", + "id": "1732567199231598000.d8e9a99e-5905-498e-a737-a763a55f939a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" + } + ], + "collection": { + "collector": { + "reference": "Practitioner/1732567199232430000.bfc3b91a-67f6-447a-8fc5-cb862ebd1e12" + }, + "collectedPeriod": { + "start": "2028-08-02T02:52:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "end": "2028-08-02T02:52:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + } + } + } + } + }, + { + "fullUrl": "Practitioner/1732567199232430000.bfc3b91a-67f6-447a-8fc5-cb862ebd1e12", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199232430000.bfc3b91a-67f6-447a-8fc5-cb862ebd1e12", + "identifier": [ + { + "value": "ER" + } + ] + } + }, + { + "fullUrl": "Specimen/1732567199232902000.7aa259f0-f0b6-4442-9c8e-3e6a3e9bfc15", + "resource": { + "resourceType": "Specimen", + "id": "1732567199232902000.7aa259f0-f0b6-4442-9c8e-3e6a3e9bfc15", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" + } + ], + "collection": { + "collector": { + "reference": "Practitioner/1732567199233824000.55eaccec-7cc3-4529-8155-22c64ebdf726" + }, + "collectedPeriod": { + "start": "2028-08-07T16:36:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + }, + "end": "2028-08-07T16:36:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + } + } + } + } + }, + { + "fullUrl": "Practitioner/1732567199233824000.55eaccec-7cc3-4529-8155-22c64ebdf726", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199233824000.55eaccec-7cc3-4529-8155-22c64ebdf726", + "identifier": [ + { + "value": "ER" + } + ] + } + }, + { + "fullUrl": "Specimen/1732567199234286000.149b36f1-3353-448f-bade-e0b95e7922fa", + "resource": { + "resourceType": "Specimen", + "id": "1732567199234286000.149b36f1-3353-448f-bade-e0b95e7922fa", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" + } + ], + "collection": { + "collector": { + "reference": "Practitioner/1732567199235168000.3e1e4a01-7a48-4864-8e4c-e061a237ec53" + }, + "collectedPeriod": { + "start": "2028-08-07T16:36:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + }, + "end": "2028-08-07T16:36:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + } + } + } + } + }, + { + "fullUrl": "Practitioner/1732567199235168000.3e1e4a01-7a48-4864-8e4c-e061a237ec53", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199235168000.3e1e4a01-7a48-4864-8e4c-e061a237ec53", + "identifier": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" + "value": "ER" + } + ] + } + }, + { + "fullUrl": "Specimen/1732567199238263000.db55ca11-4df0-4cce-bee6-16839c06583a", + "resource": { + "resourceType": "Specimen", + "id": "1732567199238263000.db55ca11-4df0-4cce-bee6-16839c06583a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "SPM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", + "extension": [ + { + "url": "SPM.26", + "valueString": "1" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.1" + } + ], + "type": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] - } + }, + "value": "09339017" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, { - "url" : "OBX.2", - "valueId" : "ST" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "09339017" + } + ] }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.2" } - ] + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "M12776123" } ], - "status" : "final", - "code" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" + "system": "http://snomed.info/sct", + "version": "07/31/2012", + "code": "119297000", + "display": "Blood specimen" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BLD", + "display": "BLOOD" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "receivedTime": "2021-08-04T00:18:00-06:00", + "_receivedTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210804001800-0600" + } + ] }, - "performer" : [ - { - "reference" : "Organization/1716965606294366000.dc122221-0d2f-4b23-ae65-69b022694180" - }, - { - "reference" : "PractitionerRole/1716965606294642000.b7368f29-ed17-4d16-9972-e83bdc784ced" - } - ], - "valueString" : "Staphylococcus spp. Streptococcus pyogenes" - } - }, - { - "fullUrl" : "Organization/1716965606294366000.dc122221-0d2f-4b23-ae65-69b022694180", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606294366000.dc122221-0d2f-4b23-ae65-69b022694180", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "collection": { + "collectedPeriod": { + "start": "2028-08-02T02:52:01-06:00", + "_start": { + "extension": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } - ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "end": "2028-08-02T02:52:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" } ] } }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } - ], - "identifier" : [ - { - "system" : "LB", - "value" : "RML" - } - ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, - { - "fullUrl" : "Practitioner/1716965606295513000.ece5c5a2-2b30-4c42-b1e4-f9c8495a84b0", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606295513000.ece5c5a2-2b30-4c42-b1e4-f9c8495a84b0", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, + "bodySite": { + "coding": [ { - "url" : "XCN.4", - "valueString" : "R" - }, - { - "url" : "XCN.21", - "valueString" : "MD" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "RA", + "display": "RIGHT ARM" }, { - "url" : "XCN.10", - "valueString" : "L" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + } + ], + "code": "5.67" } ] } - ], - "identifier" : [ + }, + "container": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "FI" + "display": "BACTEC AEROBIC PLUS" } ] - }, - "system" : "RML", - "value" : "1740336429" + } } ], - "name" : [ + "note": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" - ], - "prefix" : [ - "DR." + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "SPM.14" + } ], - "suffix" : [ - "MD" - ] + "text": "RA" } ] } }, { - "fullUrl" : "Organization/1716965606296792000.36ca34c9-1b1e-40de-beb8-205007ea1f1f", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606296792000.36ca34c9-1b1e-40de-beb8-205007ea1f1f", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } - } - ], - "code" : "L" - } + "fullUrl": "Specimen/1732567199240616000.a916150d-c1d3-4d7d-a92b-c1ee9b43cc8e", + "resource": { + "resourceType": "Specimen", + "id": "1732567199240616000.a916150d-c1d3-4d7d-a92b-c1ee9b43cc8e", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "SPM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "SPM.26", + "valueString": "3.0" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "M12776123" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.1" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "06D0055551" - } - ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "value": "09339017" + }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } - ] - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", + "extension": [ { - "url" : "XAD.7", - "valueCode" : "B" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "09339017" } ] - } - ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" - ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606294642000.b7368f29-ed17-4d16-9972-e83bdc784ced", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606294642000.b7368f29-ed17-4d16-9972-e83bdc784ced", - "practitioner" : { - "reference" : "Practitioner/1716965606295513000.ece5c5a2-2b30-4c42-b1e4-f9c8495a84b0" - }, - "organization" : { - "reference" : "Organization/1716965606296792000.36ca34c9-1b1e-40de-beb8-205007ea1f1f" - }, - "code" : [ - { - "coding" : [ + }, { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.2" } - ] - } - ] - } - }, - { - "fullUrl" : "Observation/1716965606298749000.ad0fb0ad-1218-4e0a-b1a3-4f0f55082999", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606298749000.ad0fb0ad-1218-4e0a-b1a3-4f0f55082999", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ + ], + "type": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ - { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "F" - } - ] + }, + "value": "M12776123" } ], - "status" : "final", - "code" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" + "system": "http://snomed.info/sct", + "version": "07/31/2012", + "code": "119297000", + "display": "Blood specimen" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BLD", + "display": "BLOOD" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "receivedTime": "2021-08-04T00:18:00-06:00", + "_receivedTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210804001800-0600" + } + ] }, - "performer" : [ - { - "reference" : "Organization/1716965606299101000.c09b925f-ddfd-40fb-ba8a-79897eada1a4" + "collection": { + "collectedPeriod": { + "start": "2028-08-02T02:52:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "end": "2028-08-02T02:52:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + } }, - { - "reference" : "PractitionerRole/1716965606299250000.711d6193-4698-4292-af0e-035704251dfe" + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "RA", + "display": "RIGHT ARM" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + } + ], + "code": "5.67" + } + ] } - ], - "valueString" : "Staphylococcus aureus Streptococcus agalactiae" - } - }, - { - "fullUrl" : "Organization/1716965606299101000.c09b925f-ddfd-40fb-ba8a-79897eada1a4", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606299101000.c09b925f-ddfd-40fb-ba8a-79897eada1a4", - "extension" : [ + }, + "container": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "display": "BACTEC BLOOD CULTURE BOTTLES" } ] } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" } ], - "identifier" : [ + "note": [ { - "system" : "LB", - "value" : "RML" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "SPM.14" + } + ], + "text": "RA" } - ], - "name" : "TMCA, SOUTH CAMPUS" + ] } }, { - "fullUrl" : "Practitioner/1716965606300191000.d6088c34-c887-4f8f-8592-2e3341b7d042", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606300191000.d6088c34-c887-4f8f-8592-2e3341b7d042", - "extension" : [ + "fullUrl": "Specimen/1732567199242870000.81842cd8-5775-4fc6-b5c2-b353231c881b", + "resource": { + "resourceType": "Specimen", + "id": "1732567199242870000.81842cd8-5775-4fc6-b5c2-b353231c881b", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "SPM" + } + ], + "identifier": [ + { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.1" } - ] + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "09339017" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, + "extension": [ { - "url" : "XCN.4", - "valueString" : "R" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "09339017" + } + ] }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.2" } - ] + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "M12776123" } ], - "identifier" : [ - { - "type" : { - "coding" : [ + "type": { + "coding": [ + { + "extension": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "FI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" + } + ], + "system": "http://snomed.info/sct", + "version": "07/31/2012", + "code": "119297000", + "display": "Blood specimen" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BLD", + "display": "BLOOD" + } + ] + }, + "receivedTime": "2021-08-04T00:18:00-06:00", + "_receivedTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210804001800-0600" + } + ] + }, + "collection": { + "collectedPeriod": { + "start": "2028-08-02T02:52:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" } ] }, - "system" : "RML", - "value" : "1740336429" + "end": "2028-08-02T02:52:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + } + }, + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "RA", + "display": "RIGHT ARM" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + } + ], + "code": "5.67" + } + ] } - ], - "name" : [ + }, + "note": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" - ], - "prefix" : [ - "DR." + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "SPM.14" + } ], - "suffix" : [ - "MD" - ] + "text": "RA" } ] } }, { - "fullUrl" : "Organization/1716965606301451000.8a75ee19-ef4d-4e68-a7d1-d890bec5f8d0", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606301451000.8a75ee19-ef4d-4e68-a7d1-d890bec5f8d0", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } - } - ], - "code" : "L" - } + "fullUrl": "Specimen/1732567199246837000.00095c08-1656-4163-ad56-d0d65b250a1f", + "resource": { + "resourceType": "Specimen", + "id": "1732567199246837000.00095c08-1656-4163-ad56-d0d65b250a1f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "SPM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "SPM.26", + "valueString": "3.0" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "M12776123" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.1" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "06D0055551" - } - ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "value": "09339017" + }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } - ] - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", + "extension": [ { - "url" : "XAD.7", - "valueCode" : "B" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "09339017" } ] - } - ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" - ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606299250000.711d6193-4698-4292-af0e-035704251dfe", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606299250000.711d6193-4698-4292-af0e-035704251dfe", - "practitioner" : { - "reference" : "Practitioner/1716965606300191000.d6088c34-c887-4f8f-8592-2e3341b7d042" - }, - "organization" : { - "reference" : "Organization/1716965606301451000.8a75ee19-ef4d-4e68-a7d1-d890bec5f8d0" - }, - "code" : [ - { - "coding" : [ + }, { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.2" } - ] - } - ] - } - }, - { - "fullUrl" : "Observation/1716965606303287000.b444ba80-a933-4927-9c12-ced9331411ad", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606303287000.b444ba80-a933-4927-9c12-ced9331411ad", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ + ], + "type": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ - { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "F" - } - ] + }, + "value": "M12776123" } ], - "status" : "final", - "code" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" + "system": "http://snomed.info/sct", + "version": "07/31/2012", + "code": "119303007", + "display": "Microbial isolate" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "ISLT", + "display": "ISOLATE" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "receivedTime": "2021-08-04T00:18:00-06:00", + "_receivedTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210804001800-0600" + } + ] }, - "performer" : [ - { - "reference" : "Organization/1716965606303617000.a9286106-79c1-463b-aa54-92cc752304b8" + "collection": { + "collectedPeriod": { + "start": "2028-08-08T09:28:05-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280808092805-0600" + } + ] + }, + "end": "2028-08-08T09:28:05-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280808092805-0600" + } + ] + } }, - { - "reference" : "PractitionerRole/1716965606303760000.fe4fdae5-bfe2-4de0-8b08-50db9ff96d84" + "bodySite": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "RA", + "display": "RIGHT ARM" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + } + ], + "code": "5.67" + } + ] } - ], - "valueString" : "Staphylococcus epidermidis Streptococcus anginosus group" - } - }, - { - "fullUrl" : "Organization/1716965606303617000.a9286106-79c1-463b-aa54-92cc752304b8", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606303617000.a9286106-79c1-463b-aa54-92cc752304b8", - "extension" : [ + }, + "container": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + "display": "BACTEC BLOOD CULTURE BOTTLES" } ] } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" } ], - "identifier" : [ + "note": [ { - "system" : "LB", - "value" : "RML" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "SPM.14" + } + ], + "text": "RA" } - ], - "name" : "TMCA, SOUTH CAMPUS" + ] } }, { - "fullUrl" : "Practitioner/1716965606304549000.5b12733b-b829-4d02-b30f-5bcc3ed5e8d8", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606304549000.5b12733b-b829-4d02-b30f-5bcc3ed5e8d8", - "extension" : [ + "fullUrl": "ServiceRequest/1732567199274851000.e2bdcd89-32fc-49c6-a389-84c5a06ef171", + "resource": { + "resourceType": "ServiceRequest", + "id": "1732567199274851000.e2bdcd89-32fc-49c6-a389-84c5a06ef171", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "RE" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "202808080928" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ + { + "url": "ORC.6", + "valueString": "N" + }, + { + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1732567199259673000.c2d10aa4-97e9-44f8-a814-a151fad84493" + } + }, + { + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + }, + { + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "5600 S Quebec St #312A" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "5600 S Quebec St #312A" + ], + "city": "Greenwood Village", + "district": "MD", + "state": "IG", + "postalCode": "80111", + "country": "USA" + } + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1732567199262103000.6ea02fd6-3567-4dea-b0c0-5d40b4c6f522" + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "ORC.15", + "valueString": "202108032350" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "ORC.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "TMCA, SOUTH CAMPUS" + } + ] + } } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "OBR.2", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "09339017" + } }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "OBR.3", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "21:AA:B0029251S.1" + } }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1732567199265691000.f3e7f2eb-fc79-45a2-87f3-139450feb8d3" + } }, { - "url" : "XCN.10", - "valueString" : "L" - } - ] - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ - { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4362727" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4362727" + }, + { + "url": "XTN.9", + "valueString": "Hospital Line" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" } ], - "code" : "FI" + "system": "phone", + "use": "work" } - ] - }, - "system" : "RML", - "value" : "1740336429" - } - ], - "name" : [ - { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" - ], - "prefix" : [ - "DR." - ], - "suffix" : [ - "MD" - ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606306108000.acb7f54d-b761-4b2a-b0d1-4b2f1f8f9b24", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606306108000.acb7f54d-b761-4b2a-b0d1-4b2f1f8f9b24", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } + }, + { + "url": "OBR.18", + "valueString": "21:AA:B0029251Sm12776123" + }, + { + "url": "OBR.19", + "valueString": "09339017" + }, + { + "url": "OBR.7", + "valueDateTime": "2028-08-02T02:52:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + } + }, + { + "url": "OBR.21", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "OBR.22", + "valueString": "20210810062500-0600" + }, + { + "url": "OBR.25", + "valueId": "P" + }, + { + "url": "OBR.8", + "valueDateTime": "2028-08-02T02:52:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] } - ], - "code" : "L" - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + }, + { + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1732567199272226000.c57a7636-81bb-4f91-8110-0fcbc1f02128" + } + }, { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "OBR.13", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SEPTIC SHOCK" + } + ] + } } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "06D0055551" - } - ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "value": "09339017" + }, { - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.3" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.1" }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" - ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606303760000.fe4fdae5-bfe2-4de0-8b08-50db9ff96d84", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606303760000.fe4fdae5-bfe2-4de0-8b08-50db9ff96d84", - "practitioner" : { - "reference" : "Practitioner/1716965606304549000.5b12733b-b829-4d02-b30f-5bcc3ed5e8d8" - }, - "organization" : { - "reference" : "Organization/1716965606306108000.acb7f54d-b761-4b2a-b0d1-4b2f1f8f9b24" - }, - "code" : [ + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" + } + ] + }, + "value": "21:AA:B0029251S.1" + }, { - "coding" : [ + "extension": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] } - ] - } - ] - } - }, - { - "fullUrl" : "Observation/1716965606308353000.6cf6a1a6-3db8-4e98-a2f2-89c55c4df9b5", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606308353000.6cf6a1a6-3db8-4e98-a2f2-89c55c4df9b5", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ + ], + "type": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] - } + }, + "value": "21:AA:B0029251S" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] } - ] + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "21:AA:B0029251S" } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7", + "display": "Bacteria identified in Blood by Culture" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BCEXT", + "display": "EXTENDED BLOOD CULTURE" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "requester": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4362727" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4362727" + }, + { + "url": "XTN.9", + "valueString": "Hospital Line" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" + } + ], + "system": "phone", + "use": "work" + } + } + ], + "reference": "PractitionerRole/1732567199247782000.e1083139-e56a-4205-b406-a828477fbfd4" }, - "performer" : [ - { - "reference" : "Organization/1716965606308699000.9b4cda88-7df8-4caa-8cec-13fd1ebe8fb5" - }, + "reasonCode": [ { - "reference" : "PractitionerRole/1716965606308835000.5d8ee53f-80ef-4b8d-a865-c237588e072b" + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" + } + ], + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" + } + ], + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" + } + ] } ], - "valueString" : "Staphylococcus lugdunensis Streptococcus faecalis" - } - }, - { - "fullUrl" : "Organization/1716965606308699000.9b4cda88-7df8-4caa-8cec-13fd1ebe8fb5", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606308699000.9b4cda88-7df8-4caa-8cec-13fd1ebe8fb5", - "extension" : [ + "note": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ] + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Critical result called to and read back by:CLAIRE HCE7362" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" } - ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" + ] } - ] - } + } + ], + "text": "Critical result called to and read back by:CLAIRE HCE7362" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Location:ICUB on 08/08/21 at 1539 by ELB.RM" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Location:ICUB on 08/08/21 at 1539 by ELB.RM" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Critical result called to and read back by:CLAIRE HCE7362" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Critical result called to and read back by:CLAIRE HCE7362" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ], + "text": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" } - ], - "identifier" : [ + ] + } + }, + { + "fullUrl": "Location/1732567199248131000.5b903d94-1adc-4263-9116-324644efa2f6", + "resource": { + "resourceType": "Location", + "id": "1732567199248131000.5b903d94-1adc-4263-9116-324644efa2f6", + "extension": [ { - "system" : "LB", - "value" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "TMCA, SOUTH CAMPUS" + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606309569000.0970e204-01c0-4874-8030-1731ca5239c9", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606309569000.0970e204-01c0-4874-8030-1731ca5239c9", - "extension" : [ + "fullUrl": "Practitioner/1732567199249741000.3a1ecd9f-2d7a-45b5-b561-6621282a5b8b", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199249741000.3a1ecd9f-2d7a-45b5-b561-6621282a5b8b", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "XCN.3", + "valueString": "Christopher" }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.4", + "valueString": "Beau" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199248131000.5b903d94-1adc-4263-9116-324644efa2f6" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "NPI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "NPI", + "value": "1871759365" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" - ], - "prefix" : [ - "DR." + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" ], - "suffix" : [ + "suffix": [ "MD" ] } + ], + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "5600 S Quebec St #312A" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "5600 S Quebec St #312A" + ], + "city": "Greenwood Village", + "district": "MD", + "state": "IG", + "postalCode": "80111", + "country": "USA" + } ] } }, { - "fullUrl" : "Organization/1716965606310728000.b5f97cb6-4d81-43e3-8ca9-b6c2bd6c40ff", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606310728000.b5f97cb6-4d81-43e3-8ca9-b6c2bd6c40ff", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199252112000.e4764b88-05f2-4bc8-8344-716fae3f8286", + "resource": { + "resourceType": "Organization", + "id": "1732567199252112000.e4764b88-05f2-4bc8-8344-716fae3f8286", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "XON.10", + "valueString": "06D0055551" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "06D0055551" + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "6952653" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "6952653" + } + ] + } + ], + "system": "phone", + "use": "work" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ + "use": "work", + "line": [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606308835000.5d8ee53f-80ef-4b8d-a865-c237588e072b", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606308835000.5d8ee53f-80ef-4b8d-a865-c237588e072b", - "practitioner" : { - "reference" : "Practitioner/1716965606309569000.0970e204-01c0-4874-8030-1731ca5239c9" - }, - "organization" : { - "reference" : "Organization/1716965606310728000.b5f97cb6-4d81-43e3-8ca9-b6c2bd6c40ff" - }, - "code" : [ - { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } - ] + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" } ] } }, { - "fullUrl" : "Observation/1716965606312293000.d9444a79-7484-4480-bfac-408dc63b3f23", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606312293000.d9444a79-7484-4480-bfac-408dc63b3f23", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } - ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ - { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "F" - } - ] - } - ], - "status" : "final", - "code" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } - ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } - ] - }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "performer" : [ - { - "reference" : "Organization/1716965606312602000.847bb6b8-1456-4dbd-9ea9-2400563d4ac4" - }, - { - "reference" : "PractitionerRole/1716965606312797000.531d2053-937a-433b-bb6e-6e171940c2b1" - } - ], - "valueString" : "Streptococcus spp. Enterococcus faecium" - } - }, - { - "fullUrl" : "Organization/1716965606312602000.847bb6b8-1456-4dbd-9ea9-2400563d4ac4", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606312602000.847bb6b8-1456-4dbd-9ea9-2400563d4ac4", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } - ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } - ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } - ], - "identifier" : [ - { - "system" : "LB", - "value" : "RML" - } - ], - "name" : "TMCA, SOUTH CAMPUS" + "fullUrl": "PractitionerRole/1732567199247782000.e1083139-e56a-4205-b406-a828477fbfd4", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199247782000.e1083139-e56a-4205-b406-a828477fbfd4", + "practitioner": { + "reference": "Practitioner/1732567199249741000.3a1ecd9f-2d7a-45b5-b561-6621282a5b8b" + }, + "organization": { + "reference": "Organization/1732567199252112000.e4764b88-05f2-4bc8-8344-716fae3f8286" + } } }, { - "fullUrl" : "Practitioner/1716965606313508000.55ca59a0-09a8-4510-a305-07eda8233d3b", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606313508000.55ca59a0-09a8-4510-a305-07eda8233d3b", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "GREGORY" - }, - { - "url" : "XCN.4", - "valueString" : "R" - }, - { - "url" : "XCN.21", - "valueString" : "MD" - }, - { - "url" : "XCN.10", - "valueString" : "L" - } - ] - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ + "fullUrl": "Organization/1732567199259673000.c2d10aa4-97e9-44f8-a814-a151fad84493", + "resource": { + "resourceType": "Organization", + "id": "1732567199259673000.c2d10aa4-97e9-44f8-a814-a151fad84493", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "FI" - } - ] - }, - "system" : "RML", - "value" : "1740336429" - } - ], - "name" : [ - { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" - ], - "prefix" : [ - "DR." - ], - "suffix" : [ - "MD" - ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606314660000.9a20c888-2f71-49f7-8edc-8d9adf2ff894", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606314660000.9a20c888-2f71-49f7-8edc-8d9adf2ff894", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "XON.10", + "valueString": "06D0055551" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "06D0055551" + "value": "06D0055551" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } - ] - }, - { - "url" : "XAD.7", - "valueCode" : "B" - } - ] - } - ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" - ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606312797000.531d2053-937a-433b-bb6e-6e171940c2b1", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606312797000.531d2053-937a-433b-bb6e-6e171940c2b1", - "practitioner" : { - "reference" : "Practitioner/1716965606313508000.55ca59a0-09a8-4510-a305-07eda8233d3b" - }, - "organization" : { - "reference" : "Organization/1716965606314660000.9a20c888-2f71-49f7-8edc-8d9adf2ff894" - }, - "code" : [ - { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } - ] - } - ] + "name": "TMCA, SOUTH CAMPUS" } }, { - "fullUrl" : "Observation/1716965606316252000.02a2c5c7-3e0a-4e66-af31-94bd72362a14", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606316252000.02a2c5c7-3e0a-4e66-af31-94bd72362a14", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1.1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2021-08-05T01:38:00-06:00", - "_valueDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210805013800-0600" - } - ] - } - }, + "fullUrl": "Location/1732567199261173000.797c3854-8c6c-4c00-86dc-23ae0462ca15", + "resource": { + "resourceType": "Location", + "id": "1732567199261173000.797c3854-8c6c-4c00-86dc-23ae0462ca15", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ - { - "url" : "OBX.2", - "valueId" : "ST" - }, - { - "url" : "OBX.11", - "valueString" : "F" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "status" : "final", - "code" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } - ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, + "name": "RML", + "physicalType": { + "coding": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] - }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "performer" : [ - { - "reference" : "Organization/1716965606316568000.cbce7ee8-559d-4a1d-af1c-965476e6b79e" - }, - { - "reference" : "PractitionerRole/1716965606316705000.15d62f26-f217-4f07-baad-235d56e7ea67" - } - ], - "valueString" : "Streptococcus pneumoniae " - } - }, - { - "fullUrl" : "Organization/1716965606316568000.cbce7ee8-559d-4a1d-af1c-965476e6b79e", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606316568000.cbce7ee8-559d-4a1d-af1c-965476e6b79e", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } - ], - "code" : "RML", - "display" : "TMCA, SOUTH CAMPUS" - } - ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } - ], - "identifier" : [ - { - "system" : "LB", - "value" : "RML" - } - ], - "name" : "TMCA, SOUTH CAMPUS" + } } }, { - "fullUrl" : "Practitioner/1716965606317341000.20fb0bf0-f7d7-4580-b692-935891a5d420", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606317341000.20fb0bf0-f7d7-4580-b692-935891a5d420", - "extension" : [ + "fullUrl": "Practitioner/1732567199262103000.6ea02fd6-3567-4dea-b0c0-5d40b4c6f522", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199262103000.6ea02fd6-3567-4dea-b0c0-5d40b4c6f522", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "GREGORY" + "url": "XCN.3", + "valueString": "Christopher" }, { - "url" : "XCN.4", - "valueString" : "R" + "url": "XCN.4", + "valueString": "Beau" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199261173000.797c3854-8c6c-4c00-86dc-23ae0462ca15" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "NPI" } ] }, - "system" : "RML", - "value" : "1740336429" + "system": "NPI", + "value": "1871759365" } ], - "name" : [ - { - "use" : "official", - "family" : "KOTNIS", - "given" : [ - "GREGORY", - "R" - ], - "prefix" : [ - "DR." + "name": [ + { + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -15384,1628 +17039,1455 @@ } }, { - "fullUrl" : "Organization/1716965606318554000.3c00b952-8f01-4049-8a53-56ed6666fb44", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606318554000.3c00b952-8f01-4049-8a53-56ed6666fb44", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } - } - ], - "code" : "L" + "fullUrl": "Location/1732567199263690000.95d1cc49-55fc-44ab-b6e5-d1c7289e85d5", + "resource": { + "resourceType": "Location", + "id": "1732567199263690000.95d1cc49-55fc-44ab-b6e5-d1c7289e85d5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199265691000.f3e7f2eb-fc79-45a2-87f3-139450feb8d3", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199265691000.f3e7f2eb-fc79-45a2-87f3-139450feb8d3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "XCN.3", + "valueString": "Christopher" + }, + { + "url": "XCN.4", + "valueString": "Beau" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199263690000.95d1cc49-55fc-44ab-b6e5-d1c7289e85d5" + } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" } ] }, - "value" : "06D0055551" + "system": "NPI", + "value": "1871759365" } ], - "name" : "TMCA, SOUTH CAMPUS", - "address" : [ + "name": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } - ] - }, - { - "url" : "XAD.7", - "valueCode" : "B" - } - ] - } - ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" + "suffix": [ + "MD" + ] } ] } }, { - "fullUrl" : "PractitionerRole/1716965606316705000.15d62f26-f217-4f07-baad-235d56e7ea67", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606316705000.15d62f26-f217-4f07-baad-235d56e7ea67", - "practitioner" : { - "reference" : "Practitioner/1716965606317341000.20fb0bf0-f7d7-4580-b692-935891a5d420" - }, - "organization" : { - "reference" : "Organization/1716965606318554000.3c00b952-8f01-4049-8a53-56ed6666fb44" - }, - "code" : [ + "fullUrl": "Practitioner/1732567199272226000.c57a7636-81bb-4f91-8110-0fcbc1f02128", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199272226000.c57a7636-81bb-4f91-8110-0fcbc1f02128", + "identifier": [ { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } - ] + "value": "ER" } ] } }, { - "fullUrl" : "Observation/1716965606320360000.5c734769-52d8-4c84-9b95-fdbcf6a8d769", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606320360000.5c734769-52d8-4c84-9b95-fdbcf6a8d769", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "fullUrl": "ServiceRequest/1732567199296120000.0ce174fa-c7c1-4c3a-8e30-1b539cba47c2", + "resource": { + "resourceType": "ServiceRequest", + "id": "1732567199296120000.0ce174fa-c7c1-4c3a-8e30-1b539cba47c2", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "RE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } - ] - } + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "202808080928" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ { - "url" : "SN.1", - "valueString" : "=" + "url": "ORC.6", + "valueString": "N" }, { - "url" : "SN.2", - "valueString" : "0.5" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ - { - "url" : "OBX.2", - "valueId" : "SN" + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1732567199288129000.45dae377-0ff2-437a-a4f5-004892737f47" + } }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" + "url": "XAD.7", + "valueCode": "B" } - ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + }, + { + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "5600 S Quebec St #312A" + } + ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "XAD.7", + "valueCode": "B" } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" + ] } - ] + ], + "use": "work", + "line": [ + "5600 S Quebec St #312A" + ], + "city": "Greenwood Village", + "district": "MD", + "state": "IG", + "postalCode": "80111", + "country": "USA" } }, { - "url" : "OBX.11", - "valueString" : "P" - } - ] - } - ], - "status" : "preliminary", - "code" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } - ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "35788-9", - "display" : "DAPTOmycin [Susceptibility] by Minimum inhibitory concentration (MIC)" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1732567199290293000.65a73d14-5ca1-45bc-ad49-6a5029ffd397" } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "DAP", - "display" : "DAPTOMYCIN" - } - ] - }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } - ] - }, - "performer" : [ - { - "reference" : "Organization/1716965606320661000.ce2ec294-7f37-480d-9804-1be29a20bf4d" - }, - { - "reference" : "PractitionerRole/1716965606320793000.2a49f15c-baab-410c-98ea-cab56d9897a5" - } - ], - "interpretation" : [ - { - "coding" : [ + }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } - ], - "version" : "2.5.1", - "code" : "S", - "display" : "Susceptible. Indicates for microbiology susceptibilities only." + "url": "ORC.15", + "valueString": "202108032350" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "S", - "display" : "S" + "url": "ORC.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "TMCA, SOUTH CAMPUS" + } + ] + } } ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606320661000.ce2ec294-7f37-480d-9804-1be29a20bf4d", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606320661000.ce2ec294-7f37-480d-9804-1be29a20bf4d", - "extension" : [ + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.2", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" + "value": "09339017" } - ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } - ], - "identifier" : [ - { - "system" : "LB", - "value" : "MCOE" - } - ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, - { - "fullUrl" : "Practitioner/1716965606321382000.c40be585-80e1-4113-95a5-e34b73c888df", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606321382000.c40be585-80e1-4113-95a5-e34b73c888df", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "OBR.3", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "21:AA:B0029251S.2" + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1732567199293249000.ba98c75d-94a8-431a-be71-73c8cde69a26" + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4362727" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4362727" + }, + { + "url": "XTN.9", + "valueString": "Hospital Line" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "phone", + "use": "work" + } + }, { - "url" : "XCN.3", - "valueString" : "Shalini" + "url": "OBR.18", + "valueString": "21:AA:B0029251Sm12776123" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "OBR.19", + "valueString": "09339017" }, { - "url" : "XCN.10", - "valueString" : "L" - } - ] - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ - { - "extension" : [ + "url": "OBR.7", + "valueDateTime": "2028-08-02T02:52:01-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" } - ], - "code" : "FI" + ] } - ] - }, - "system" : "RML", - "value" : "1033122247" - } - ], - "name" : [ - { - "use" : "official", - "family" : "Chahal", - "given" : [ - "Shalini" - ], - "prefix" : [ - "Dr." - ], - "suffix" : [ - "MD" - ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606322266000.f2131ac9-7d77-4638-864d-2c021125c0aa", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606322266000.f2131ac9-7d77-4638-864d-2c021125c0aa", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } + }, + { + "url": "OBR.21", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "OBR.22", + "valueString": "20210810062500-0600" + }, + { + "url": "OBR.25", + "valueId": "P" + }, + { + "url": "OBR.8", + "valueDateTime": "2028-08-02T02:52:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] } - ], - "code" : "L" - } + }, + { + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1732567199294953000.29be3143-0ac1-4aa9-a2d9-c305cf61144e" + } + }, + { + "url": "OBR.13", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SEPTIC SHOCK" + } + ] + } + } + ] } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "use" : "work", - "line" : [ - "4567 E. NINTH AVENUE" - ], - "city" : "DENVER", - "district" : "S", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606320793000.2a49f15c-baab-410c-98ea-cab56d9897a5", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606320793000.2a49f15c-baab-410c-98ea-cab56d9897a5", - "practitioner" : { - "reference" : "Practitioner/1716965606321382000.c40be585-80e1-4113-95a5-e34b73c888df" - }, - "organization" : { - "reference" : "Organization/1716965606322266000.f2131ac9-7d77-4638-864d-2c021125c0aa" - }, - "code" : [ - { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } - ] - } - ] - } - }, - { - "fullUrl" : "Observation/1716965606324372000.3f790045-463d-47ff-a753-a83046c54aef", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606324372000.3f790045-463d-47ff-a753-a83046c54aef", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ + "type": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] - } + }, + "value": "09339017" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ + "extension": [ { - "url" : "SN.1", - "valueString" : "=" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.3" }, { - "url" : "SN.2", - "valueString" : "16" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] } - ] + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" + } + ] + }, + "value": "21:AA:B0029251S.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "extension": [ { - "url" : "OBX.2", - "valueId" : "SN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } - ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } + ] + }, + "value": "21:AA:B0029251S" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" }, { - "url" : "OBX.11", - "valueString" : "P" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] } - ] + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "21:AA:B0029251S" } ], - "status" : "preliminary", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "28-1", - "display" : "Ampicillin [Susceptibility] by Minimum inhibitory concentration (MIC)" + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7", + "display": "Bacteria identified in Blood by Culture" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "AM", - "display" : "AMPICILLIN" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BLOODC", + "display": "BLOOD CULTURE" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ + "requester": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4362727" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4362727" + }, + { + "url": "XTN.9", + "valueString": "Hospital Line" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" + } + ], + "system": "phone", + "use": "work" + } } - ] + ], + "reference": "PractitionerRole/1732567199277056000.5dc7ed7d-c1b1-491b-98b9-c089fea638de" }, - "performer" : [ - { - "reference" : "Organization/1716965606324687000.5bb6b9ea-49ff-4411-89f6-e6c8db6b9734" - }, - { - "reference" : "PractitionerRole/1716965606324816000.01dcd656-a647-4e6c-9eac-ca36ba7bab78" - } - ], - "interpretation" : [ + "reasonCode": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" } ], - "version" : "2.5.1", - "code" : "R", - "display" : "Resistant. Indicates for microbiology susceptibilities only." + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "R", - "display" : "R" + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" } ] } - ] - } - }, - { - "fullUrl" : "Organization/1716965606324687000.5bb6b9ea-49ff-4411-89f6-e6c8db6b9734", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606324687000.5bb6b9ea-49ff-4411-89f6-e6c8db6b9734", - "extension" : [ + ], + "note": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" } - ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" + ] } - ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } - ], - "identifier" : [ - { - "system" : "LB", - "value" : "MCOE" - } - ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, - { - "fullUrl" : "Practitioner/1716965606325451000.1b188018-fd2a-4455-9675-9da23bf28533", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606325451000.1b188018-fd2a-4455-9675-9da23bf28533", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "extension": [ { - "url" : "XCN.3", - "valueString" : "Shalini" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Critical result called to and read back by:CLAIRE HCE7362" }, { - "url" : "XCN.10", - "valueString" : "L" - } - ] - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ - { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "FI" - } - ] - }, - "system" : "RML", - "value" : "1033122247" - } - ], - "name" : [ - { - "use" : "official", - "family" : "Chahal", - "given" : [ - "Shalini" - ], - "prefix" : [ - "Dr." - ], - "suffix" : [ - "MD" - ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606326327000.4cd460b9-d171-4b49-afa6-5b92eab4c886", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606326327000.4cd460b9-d171-4b49-afa6-5b92eab4c886", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } - } - ], - "code" : "L" - } - } - ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } - ] - }, - { - "url" : "XAD.7", - "valueCode" : "B" - } - ] - } - ], - "use" : "work", - "line" : [ - "4567 E. NINTH AVENUE" - ], - "city" : "DENVER", - "district" : "R", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606324816000.01dcd656-a647-4e6c-9eac-ca36ba7bab78", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606324816000.01dcd656-a647-4e6c-9eac-ca36ba7bab78", - "practitioner" : { - "reference" : "Practitioner/1716965606325451000.1b188018-fd2a-4455-9675-9da23bf28533" - }, - "organization" : { - "reference" : "Organization/1716965606326327000.4cd460b9-d171-4b49-afa6-5b92eab4c886" - }, - "code" : [ - { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } } - ] - } - ] - } - }, - { - "fullUrl" : "Observation/1716965606328707000.260df50a-43fd-421e-90e9-c7274402cb58", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606328707000.260df50a-43fd-421e-90e9-c7274402cb58", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + ], + "text": "Critical result called to and read back by:CLAIRE HCE7362" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Location:ICUB on 08/08/21 at 1539 by ELB.RM" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] } - ] - } + } + ], + "text": "Location:ICUB on 08/08/21 at 1539 by ELB.RM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "extension": [ { - "url" : "OBX.2", - "valueId" : "ST" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Critical result called to and read back by:CLAIRE HCE7362" }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" } ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" + "version": "2.5.1", + "code": "RE", + "display": "Remark" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" } ] } - }, - { - "url" : "OBX.11", - "valueString" : "P" } - ] - } - ], - "status" : "preliminary", - "code" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } - ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "7018-5", - "display" : "Gentamicin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "GMS", - "display" : "GENTAMICIN SYNERGY SCREEN" - } - ] - }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } - ] - }, - "performer" : [ - { - "reference" : "Organization/1716965606329030000.a2cded75-94da-45c8-82c5-5da48d02d0cd" + ], + "text": "Critical result called to and read back by:CLAIRE HCE7362" }, { - "reference" : "PractitionerRole/1716965606329222000.e9964d4d-371f-4e69-a3a0-14fe576c0fcb" - } - ], - "valueString" : "SYN-S", - "interpretation" : [ - { - "coding" : [ + "extension": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" + "url": "NTE.2", + "valueId": "L" } - ], - "version" : "2.5.1", - "code" : "S", - "display" : "Susceptible. Indicates for microbiology susceptibilities only." + ] }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "S", - "display" : "S" - } - ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606329030000.a2cded75-94da-45c8-82c5-5da48d02d0cd", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606329030000.a2cded75-94da-45c8-82c5-5da48d02d0cd", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" } - ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" + ] } - ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + } + ], + "text": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" } - ], - "identifier" : [ + ] + } + }, + { + "fullUrl": "Location/1732567199278230000.47e3eec9-09df-4041-920b-6c965d48218a", + "resource": { + "resourceType": "Location", + "id": "1732567199278230000.47e3eec9-09df-4041-920b-6c965d48218a", + "extension": [ { - "system" : "LB", - "value" : "MCOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606329866000.7c3f2a3f-6680-49a0-8c96-303004a2c0e7", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606329866000.7c3f2a3f-6680-49a0-8c96-303004a2c0e7", - "extension" : [ + "fullUrl": "Practitioner/1732567199280513000.b57f6ea8-bf67-499e-b21e-445da54d3bdf", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199280513000.b57f6ea8-bf67-499e-b21e-445da54d3bdf", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "Shalini" + "url": "XCN.3", + "valueString": "Christopher" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.4", + "valueString": "Beau" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199278230000.47e3eec9-09df-4041-920b-6c965d48218a" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "NPI" } ] }, - "system" : "RML", - "value" : "1033122247" + "system": "NPI", + "value": "1871759365" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "Chahal", - "given" : [ - "Shalini" - ], - "prefix" : [ - "Dr." + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" ], - "suffix" : [ + "suffix": [ "MD" ] } + ], + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "5600 S Quebec St #312A" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "5600 S Quebec St #312A" + ], + "city": "Greenwood Village", + "district": "MD", + "state": "IG", + "postalCode": "80111", + "country": "USA" + } ] } }, { - "fullUrl" : "Organization/1716965606330797000.866da89e-9e23-4b4c-8c3b-8891594793fa", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606330797000.866da89e-9e23-4b4c-8c3b-8891594793fa", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732567199282665000.9a242a73-270f-4948-a03e-349c6132ccc9", + "resource": { + "resourceType": "Organization", + "id": "1732567199282665000.9a242a73-270f-4948-a03e-349c6132ccc9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "use" : "work", - "line" : [ - "4567 E. NINTH AVENUE" - ], - "city" : "DENVER", - "district" : "S", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606329222000.e9964d4d-371f-4e69-a3a0-14fe576c0fcb", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606329222000.e9964d4d-371f-4e69-a3a0-14fe576c0fcb", - "practitioner" : { - "reference" : "Practitioner/1716965606329866000.7c3f2a3f-6680-49a0-8c96-303004a2c0e7" - }, - "organization" : { - "reference" : "Organization/1716965606330797000.866da89e-9e23-4b4c-8c3b-8891594793fa" - }, - "code" : [ - { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } - ] - } - ] - } - }, - { - "fullUrl" : "Observation/1716965606770281000.a024a3b3-c6bf-4287-890a-e15beb631c22", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606770281000.a024a3b3-c6bf-4287-890a-e15beb631c22", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ + "type": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] - } - }, + }, + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS", + "telecom": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ + "extension": [ { - "url" : "SN.1", - "valueString" : "=" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" }, { - "url" : "SN.2", - "valueString" : "2" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ - { - "url" : "OBX.2", - "valueId" : "SN" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } - ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" - } - ] - } + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "6952653" }, { - "url" : "OBX.11", - "valueString" : "P" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "6952653" + } + ] } - ] + ], + "system": "phone", + "use": "work" } ], - "status" : "preliminary", - "code" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } - ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "29254-0", - "display" : "Linezolid [Susceptibility] by Minimum inhibitory concentration (MIC)" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, + "address": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "PractitionerRole/1732567199277056000.5dc7ed7d-c1b1-491b-98b9-c089fea638de", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199277056000.5dc7ed7d-c1b1-491b-98b9-c089fea638de", + "practitioner": { + "reference": "Practitioner/1732567199280513000.b57f6ea8-bf67-499e-b21e-445da54d3bdf" + }, + "organization": { + "reference": "Organization/1732567199282665000.9a242a73-270f-4948-a03e-349c6132ccc9" + } + } + }, + { + "fullUrl": "Organization/1732567199288129000.45dae377-0ff2-437a-a4f5-004892737f47", + "resource": { + "resourceType": "Organization", + "id": "1732567199288129000.45dae377-0ff2-437a-a4f5-004892737f47", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "LZD", - "display" : "LINEZOLID" - } - ] - }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" + "code": "L" } - ] - }, - "performer" : [ - { - "reference" : "Organization/1716965606770619000.3df30c5a-a325-43ec-8cdc-59e123f72f58" }, { - "reference" : "PractitionerRole/1716965606770756000.836dcb32-9a06-4e20-b4df-7b72544f20fd" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "06D0055551" + } + ] } ], - "interpretation" : [ + "identifier": [ { - "coding" : [ + "extension": [ { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } - ], - "version" : "2.5.1", - "code" : "S", - "display" : "Susceptible. Indicates for microbiology susceptibilities only." - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "S", - "display" : "S" + ] } - ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606770619000.3df30c5a-a325-43ec-8cdc-59e123f72f58", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606770619000.3df30c5a-a325-43ec-8cdc-59e123f72f58", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + ], + "type": { + "coding": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } - ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + }, + "value": "06D0055551" } ], - "identifier" : [ + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199289431000.8566d616-5447-4ad7-a732-a1d428cac2bc", + "resource": { + "resourceType": "Location", + "id": "1732567199289431000.8566d616-5447-4ad7-a732-a1d428cac2bc", + "extension": [ { - "system" : "LB", - "value" : "MCOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Practitioner/1716965606771491000.fb17bb1c-fbf1-4e4e-870e-acad0372fa05", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606771491000.fb17bb1c-fbf1-4e4e-870e-acad0372fa05", - "extension" : [ + "fullUrl": "Practitioner/1732567199290293000.65a73d14-5ca1-45bc-ad49-6a5029ffd397", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199290293000.65a73d14-5ca1-45bc-ad49-6a5029ffd397", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Christopher" + }, { - "url" : "XCN.3", - "valueString" : "Shalini" + "url": "XCN.4", + "valueString": "Beau" }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199289431000.8566d616-5447-4ad7-a732-a1d428cac2bc" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "FI" + "code": "NPI" } ] }, - "system" : "RML", - "value" : "1033122247" + "system": "NPI", + "value": "1871759365" } ], - "name" : [ + "name": [ { - "use" : "official", - "family" : "Chahal", - "given" : [ - "Shalini" - ], - "prefix" : [ - "Dr." + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" ], - "suffix" : [ + "suffix": [ "MD" ] } @@ -17013,9766 +18495,3646 @@ } }, { - "fullUrl" : "Organization/1716965606772306000.daae2a04-7fef-42ac-acb7-4fcef32f9435", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606772306000.daae2a04-7fef-42ac-acb7-4fcef32f9435", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } - } - ], - "code" : "L" + "fullUrl": "Location/1732567199291462000.7ddb0bb6-40f6-444e-a526-b17852c480f5", + "resource": { + "resourceType": "Location", + "id": "1732567199291462000.7ddb0bb6-40f6-444e-a526-b17852c480f5", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199293249000.ba98c75d-94a8-431a-be71-73c8cde69a26", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199293249000.ba98c75d-94a8-431a-be71-73c8cde69a26", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Christopher" + }, + { + "url": "XCN.4", + "valueString": "Beau" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } - ] - }, - { - "url" : "XAD.7", - "valueCode" : "B" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199291462000.7ddb0bb6-40f6-444e-a526-b17852c480f5" + } } ], - "use" : "work", - "line" : [ - "4567 E. NINTH AVENUE" + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "system": "NPI", + "value": "1871759365" + } + ], + "name": [ + { + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" ], - "city" : "DENVER", - "district" : "S", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" + "suffix": [ + "MD" + ] } ] } }, { - "fullUrl" : "PractitionerRole/1716965606770756000.836dcb32-9a06-4e20-b4df-7b72544f20fd", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606770756000.836dcb32-9a06-4e20-b4df-7b72544f20fd", - "practitioner" : { - "reference" : "Practitioner/1716965606771491000.fb17bb1c-fbf1-4e4e-870e-acad0372fa05" - }, - "organization" : { - "reference" : "Organization/1716965606772306000.daae2a04-7fef-42ac-acb7-4fcef32f9435" - }, - "code" : [ + "fullUrl": "Practitioner/1732567199294953000.29be3143-0ac1-4aa9-a2d9-c305cf61144e", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199294953000.29be3143-0ac1-4aa9-a2d9-c305cf61144e", + "identifier": [ { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } - ] + "value": "ER" } ] } }, { - "fullUrl" : "Observation/1716965606774319000.8ada4105-2b21-4bfa-9bde-bb9d8df809a1", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606774319000.8ada4105-2b21-4bfa-9bde-bb9d8df809a1", - "extension" : [ + "fullUrl": "ServiceRequest/1732567199318382000.46e91b38-da3c-4cc8-801e-18c8d07d0ecf", + "resource": { + "resourceType": "ServiceRequest", + "id": "1732567199318382000.46e91b38-da3c-4cc8-801e-18c8d07d0ecf", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "RE" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "202808080928" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ + { + "url": "ORC.6", + "valueString": "N" + }, + { + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1732567199309365000.42d0cf2c-f189-47f3-9382-7713bf5749f7" + } + }, + { + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" + } + }, + { + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "5600 S Quebec St #312A" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] + } + ], + "use": "work", + "line": [ + "5600 S Quebec St #312A" + ], + "city": "Greenwood Village", + "district": "MD", + "state": "IG", + "postalCode": "80111", + "country": "USA" + } + }, + { + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1732567199313314000.d0e751df-2661-4b2b-b8d0-af3f50e438db" + } + }, + { + "url": "ORC.15", + "valueString": "202108032350" + }, + { + "url": "ORC.17", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "TMCA, SOUTH CAMPUS" + } + ] + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.2", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "09339017" + } + }, + { + "url": "OBR.3", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "21:AA:B0029251S.3" + } + }, + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1732567199315426000.f8b7b624-263c-4b36-9352-43f2154c6046" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4362727" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4362727" + }, + { + "url": "XTN.9", + "valueString": "Hospital Line" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "phone", + "use": "work" + } + }, + { + "url": "OBR.18", + "valueString": "21:AA:B0029251Sm12776123" + }, + { + "url": "OBR.19", + "valueString": "09339017" + }, + { + "url": "OBR.7", + "valueDateTime": "2028-08-02T02:52:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + } + }, + { + "url": "OBR.21", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "OBR.22", + "valueString": "20210810062500-0600" + }, + { + "url": "OBR.25", + "valueId": "P" + }, + { + "url": "OBR.8", + "valueDateTime": "2028-08-02T02:52:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] } - ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + }, { - "url" : "OBX.2", - "valueId" : "ST" + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1732567199317214000.126293fa-a647-4d91-b864-107eeaf0e25d" + } }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } - ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, + "url": "OBR.13", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" + "code": "SEPTIC SHOCK" } ] } - }, - { - "url" : "OBX.11", - "valueString" : "P" } ] } ], - "status" : "preliminary", - "code" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } - ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "6933-6", - "display" : "Streptomycin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "STS", - "display" : "STREPTOMYCIN SYNERGY SCREEN" - } - ] - }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } - ] - }, - "performer" : [ - { - "reference" : "Organization/1716965606774621000.08c9411f-9c1b-4b16-bc36-a3cffece720b" - }, - { - "reference" : "PractitionerRole/1716965606774749000.7734c184-c11a-4860-9c69-2eaf2bca4092" - } - ], - "valueString" : "SYN-S", - "interpretation" : [ + "identifier": [ { - "coding" : [ + "extension": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } - ], - "version" : "2.5.1", - "code" : "S", - "display" : "Susceptible. Indicates for microbiology susceptibilities only." + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.3" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "S", - "display" : "S" + ] } - ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606774621000.08c9411f-9c1b-4b16-bc36-a3cffece720b", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606774621000.08c9411f-9c1b-4b16-bc36-a3cffece720b", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + ], + "type": { + "coding": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } - ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] - } - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } - ], - "identifier" : [ - { - "system" : "LB", - "value" : "MCOE" - } - ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, - { - "fullUrl" : "Practitioner/1716965606775307000.9042aac9-853a-449e-99d9-4107aeea5c5d", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606775307000.9042aac9-853a-449e-99d9-4107aeea5c5d", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] + }, + "value": "09339017" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "Shalini" - }, + "extension": [ { - "url" : "XCN.21", - "valueString" : "MD" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.3" }, { - "url" : "XCN.10", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] } - ] - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ + ], + "type": { + "coding": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "FI" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "system" : "RML", - "value" : "1033122247" - } - ], - "name" : [ - { - "use" : "official", - "family" : "Chahal", - "given" : [ - "Shalini" - ], - "prefix" : [ - "Dr." - ], - "suffix" : [ - "MD" - ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606776103000.9504a7a6-afe4-4f22-b514-d9bb5020857f", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606776103000.9504a7a6-afe4-4f22-b514-d9bb5020857f", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } - } - ], - "code" : "L" - } - } - ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ + "value": "21:AA:B0029251S.3" + }, { - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "use" : "work", - "line" : [ - "4567 E. NINTH AVENUE" - ], - "city" : "DENVER", - "district" : "S", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606774749000.7734c184-c11a-4860-9c69-2eaf2bca4092", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606774749000.7734c184-c11a-4860-9c69-2eaf2bca4092", - "practitioner" : { - "reference" : "Practitioner/1716965606775307000.9042aac9-853a-449e-99d9-4107aeea5c5d" - }, - "organization" : { - "reference" : "Organization/1716965606776103000.9504a7a6-afe4-4f22-b514-d9bb5020857f" - }, - "code" : [ - { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } - ] - } - ] - } - }, - { - "fullUrl" : "Observation/1716965606781098000.ca25d9db-d940-492c-85b3-898ff2c1dc5c", - "resource" : { - "resourceType" : "Observation", - "id" : "1716965606781098000.ca25d9db-d940-492c-85b3-898ff2c1dc5c", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ + "type": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] - } + }, + "value": "21:AA:B0029251S" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ + "extension": [ { - "url" : "SN.1", - "valueString" : ">=" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.4" }, { - "url" : "SN.2", - "valueString" : "32" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ - { - "url" : "OBX.2", - "valueId" : "SN" - }, - { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } - ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" - } - ] + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } - }, - { - "url" : "OBX.11", - "valueString" : "P" - } - ] + ] + }, + "value": "21:AA:B0029251S" } ], - "status" : "preliminary", - "code" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "19000-9", - "display" : "Vancomycin [Susceptibility]" + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VA", - "display" : "VANCOMYCIN" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" - }, - "encounter" : { - "reference" : "Encounter/1716965606112940000.37c8abef-ba3d-4cf0-9290-84f8d7f8d47f" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ + "requester": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4362727" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4362727" + }, + { + "url": "XTN.9", + "valueString": "Hospital Line" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" + } + ], + "system": "phone", + "use": "work" + } } - ] + ], + "reference": "PractitionerRole/1732567199297610000.2a0e1d38-ed43-4d8f-8dc4-b37d188a7d5c" }, - "performer" : [ - { - "reference" : "Organization/1716965606781623000.ae74f6cc-d8d6-4b8f-832c-7cb25e48dea5" - }, - { - "reference" : "PractitionerRole/1716965606782516000.690420c1-3253-4f35-b4e3-05a943e9ba9c" - } - ], - "interpretation" : [ + "reasonCode": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" } ], - "version" : "2.5.1", - "code" : "R", - "display" : "Resistant. Indicates for microbiology susceptibilities only." + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "R", - "display" : "R" + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" } ] } - ] - } - }, - { - "fullUrl" : "Organization/1716965606781623000.ae74f6cc-d8d6-4b8f-832c-7cb25e48dea5", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606781623000.ae74f6cc-d8d6-4b8f-832c-7cb25e48dea5", - "extension" : [ + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } + } + ] + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Critical result called to and read back by:CLAIRE HCE7362" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" } - ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" + ] } - ] - } + } + ], + "text": "Critical result called to and read back by:CLAIRE HCE7362" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } - ], - "identifier" : [ - { - "system" : "LB", - "value" : "MCOE" - } - ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, - { - "fullUrl" : "Practitioner/1716965606784152000.2ff54158-d2f0-44f4-9959-61fe740c8c1a", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606784152000.2ff54158-d2f0-44f4-9959-61fe740c8c1a", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Location:ICUB on 08/08/21 at 1539 by ELB.RM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] + } } - ] + ], + "text": "Location:ICUB on 08/08/21 at 1539 by ELB.RM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "extension": [ { - "url" : "XCN.3", - "valueString" : "Shalini" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ + { + "url": "NTE.2", + "valueId": "L" + } + ] }, { - "url" : "XCN.21", - "valueString" : "MD" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Critical result called to and read back by:CLAIRE HCE7362" }, { - "url" : "XCN.10", - "valueString" : "L" - } - ] - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ - { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" } - ], - "code" : "FI" + ] } - ] - }, - "system" : "RML", - "value" : "1033122247" - } - ], - "name" : [ - { - "use" : "official", - "family" : "Chahal", - "given" : [ - "Shalini" - ], - "prefix" : [ - "Dr." + } ], - "suffix" : [ - "MD" - ] - } - ] - } - }, - { - "fullUrl" : "Organization/1716965606784959000.8c282a91-87f1-4cd0-a4b8-98eee82d48f3", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606784959000.8c282a91-87f1-4cd0-a4b8-98eee82d48f3", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } - } - ], - "code" : "L" - } - } - ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ + "text": "Critical result called to and read back by:CLAIRE HCE7362" + }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } - ] - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ { - "url" : "XAD.7", - "valueCode" : "B" + "url": "NTE.2", + "valueId": "L" } ] - } - ], - "use" : "work", - "line" : [ - "4567 E. NINTH AVENUE" - ], - "city" : "DENVER", - "district" : "R", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606782516000.690420c1-3253-4f35-b4e3-05a943e9ba9c", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606782516000.690420c1-3253-4f35-b4e3-05a943e9ba9c", - "practitioner" : { - "reference" : "Practitioner/1716965606784152000.2ff54158-d2f0-44f4-9959-61fe740c8c1a" - }, - "organization" : { - "reference" : "Organization/1716965606784959000.8c282a91-87f1-4cd0-a4b8-98eee82d48f3" - }, - "code" : [ - { - "coding" : [ + }, { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } - ] - } - ] - } - }, - { - "fullUrl" : "Specimen/1716965606794491000.1d9a511c-50fd-4f6e-b968-9dd34634390c", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716965606794491000.1d9a511c-50fd-4f6e-b968-9dd34634390c", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } - ], - "collection" : { - "collector" : { - "reference" : "Practitioner/1727474667987404000.47d8c87d-22f6-4c2e-b128-c7581a9dcb37" - }, - "collectedPeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - } - } - } - } - }, - { - "fullUrl" : "Practitioner/1727474667987404000.47d8c87d-22f6-4c2e-b128-c7581a9dcb37", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727474667987404000.47d8c87d-22f6-4c2e-b128-c7581a9dcb37", - "identifier" : [ - { - "value" : "ER" - } - ] - } - }, - { - "fullUrl" : "Specimen/1716965606794848000.02a5ec34-332a-4514-8546-b69e7eac3a70", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716965606794848000.02a5ec34-332a-4514-8546-b69e7eac3a70", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } - ], - "collection" : { - "collector" : { - "reference" : "Practitioner/1727474667989088000.ec94c45e-f6be-4bdb-83b4-4655198ff7a0" - }, - "collectedPeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - } - } - } - } - }, - { - "fullUrl" : "Practitioner/1727474667989088000.ec94c45e-f6be-4bdb-83b4-4655198ff7a0", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727474667989088000.ec94c45e-f6be-4bdb-83b4-4655198ff7a0", - "identifier" : [ - { - "value" : "ER" - } - ] - } - }, - { - "fullUrl" : "Specimen/1716965606795206000.78099b7e-55cc-460b-b5e6-d0c7b7e91f5d", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716965606795206000.78099b7e-55cc-460b-b5e6-d0c7b7e91f5d", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } - ], - "collection" : { - "collector" : { - "reference" : "Practitioner/1727474667990026000.862f5c24-268b-4fe0-b856-483da2916bbe" - }, - "collectedPeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - } - } - } - } - }, - { - "fullUrl" : "Practitioner/1727474667990026000.862f5c24-268b-4fe0-b856-483da2916bbe", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727474667990026000.862f5c24-268b-4fe0-b856-483da2916bbe", - "identifier" : [ - { - "value" : "ER" - } - ] - } - }, - { - "fullUrl" : "Specimen/1716965606795562000.1a9db60a-3bf5-4625-b71a-0707660f163e", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716965606795562000.1a9db60a-3bf5-4625-b71a-0707660f163e", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } - ], - "collection" : { - "collector" : { - "reference" : "Practitioner/1727474667990903000.8194b15d-a1f0-4516-ad43-4f42d819e4ea" - }, - "collectedPeriod" : { - "start" : "2028-08-07T16:36:01-06:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } - ] - }, - "end" : "2028-08-07T16:36:01-06:00", - "_end" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } - ] - } - } - } - } - }, - { - "fullUrl" : "Practitioner/1727474667990903000.8194b15d-a1f0-4516-ad43-4f42d819e4ea", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727474667990903000.8194b15d-a1f0-4516-ad43-4f42d819e4ea", - "identifier" : [ - { - "value" : "ER" - } - ] - } - }, - { - "fullUrl" : "Specimen/1716965606795933000.fe447d26-eeb2-484b-bf88-d358ebd0736d", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716965606795933000.fe447d26-eeb2-484b-bf88-d358ebd0736d", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } - ], - "collection" : { - "collector" : { - "reference" : "Practitioner/1727474667991784000.0ebbce89-11bf-4a99-ae60-e0079aa53226" - }, - "collectedPeriod" : { - "start" : "2028-08-07T16:36:01-06:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } - ] - }, - "end" : "2028-08-07T16:36:01-06:00", - "_end" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" + } + ], + "version": "2.5.1", + "code": "RE", + "display": "Remark" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "C", + "display": "Comment" + } + ] } - ] - } + } + ], + "text": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" } - } + ] } }, { - "fullUrl" : "Practitioner/1727474667991784000.0ebbce89-11bf-4a99-ae60-e0079aa53226", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1727474667991784000.0ebbce89-11bf-4a99-ae60-e0079aa53226", - "identifier" : [ + "fullUrl": "Location/1732567199298346000.c4bc6852-9072-410f-8a6c-e70941712e31", + "resource": { + "resourceType": "Location", + "id": "1732567199298346000.c4bc6852-9072-410f-8a6c-e70941712e31", + "extension": [ { - "value" : "ER" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - ] + ], + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } } }, { - "fullUrl" : "Specimen/1716965606798461000.d3e9803e-bf78-4906-b7e7-d7e98c449d3a", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716965606798461000.d3e9803e-bf78-4906-b7e7-d7e98c449d3a", - "extension" : [ + "fullUrl": "Practitioner/1732567199301578000.470114c6-bfc5-4486-81a0-bfef36c2442b", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199301578000.470114c6-bfc5-4486-81a0-bfef36c2442b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Christopher" + }, + { + "url": "XCN.4", + "valueString": "Beau" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" + } + ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" + } + ], + "identifier": [ + { + "extension": [ { - "url" : "SPM.26", - "valueString" : "1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199298346000.c4bc6852-9072-410f-8a6c-e70941712e31" + } } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "system": "NPI", + "value": "1871759365" + } + ], + "name": [ + { + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" + ], + "suffix": [ + "MD" ] } ], - "identifier" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "M12776123" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "5600 S Quebec St #312A" + } + ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "XAD.7", + "valueCode": "B" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" } ], - "type" : { - "coding" : [ + "use": "work", + "line": [ + "5600 S Quebec St #312A" + ], + "city": "Greenwood Village", + "district": "MD", + "state": "IG", + "postalCode": "80111", + "country": "USA" + } + ] + } + }, + { + "fullUrl": "Organization/1732567199303663000.b4c6b48f-ba35-49b1-a04a-8b7480e96976", + "resource": { + "resourceType": "Organization", + "id": "1732567199303663000.b4c6b48f-ba35-49b1-a04a-8b7480e96976", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } } - ] - }, - "value" : "09339017" + ], + "code": "L" + } }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, + "url": "XON.10", + "valueString": "06D0055551" + } + ] + } + ], + "identifier": [ + { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "09339017" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "M12776123" + "value": "06D0055551" } ], - "type" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } - ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "119297000", - "display" : "Blood specimen" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLD", - "display" : "BLOOD" - } - ] - }, - "receivedTime" : "2021-08-04T00:18:00-06:00", - "_receivedTime" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210804001800-0600" - } - ] - }, - "collection" : { - "collectedPeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - } - }, - "bodySite" : { - "coding" : [ + "name": "TMCA, SOUTH CAMPUS", + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "6952653" + }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "XTN.2", + "valueString": "WPN" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "RA", - "display" : "RIGHT ARM" - }, - { - "extension" : [ + "url": "XTN.3", + "valueString": "PH" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "XTN.7", + "valueString": "6952653" } - ], - "code" : "5.67" + ] } - ] - } - }, - "container" : [ - { - "type" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "display" : "BACTEC AEROBIC PLUS" - } - ] - } + ], + "system": "phone", + "use": "work" } ], - "note" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "1501 S. POTOMAC" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "B" + } + ] } ], - "text" : "RA" + "use": "work", + "line": [ + "1501 S. POTOMAC" + ], + "city": "AURORA", + "district": "MD", + "state": "IG", + "postalCode": "80012", + "country": "USA" } ] } }, { - "fullUrl" : "Specimen/1716965606842409000.194839e7-a6d3-4472-bf45-e041a5de3c0d", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716965606842409000.194839e7-a6d3-4472-bf45-e041a5de3c0d", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" + "fullUrl": "PractitionerRole/1732567199297610000.2a0e1d38-ed43-4d8f-8dc4-b37d188a7d5c", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732567199297610000.2a0e1d38-ed43-4d8f-8dc4-b37d188a7d5c", + "practitioner": { + "reference": "Practitioner/1732567199301578000.470114c6-bfc5-4486-81a0-bfef36c2442b" + }, + "organization": { + "reference": "Organization/1732567199303663000.b4c6b48f-ba35-49b1-a04a-8b7480e96976" + } + } + }, + { + "fullUrl": "Organization/1732567199309365000.42d0cf2c-f189-47f3-9382-7713bf5749f7", + "resource": { + "resourceType": "Organization", + "id": "1732567199309365000.42d0cf2c-f189-47f3-9382-7713bf5749f7", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "SPM.26", - "valueString" : "3.0" + "url": "XON.10", + "valueString": "06D0055551" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "TMCA, SOUTH CAMPUS" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "M12776123" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "09339017" + "value": "06D0055551" + } + ], + "name": "TMCA, SOUTH CAMPUS" + } + }, + { + "fullUrl": "Location/1732567199310685000.0a389216-3789-4d29-8c97-7e4ee94db606", + "resource": { + "resourceType": "Location", + "id": "1732567199310685000.0a389216-3789-4d29-8c97-7e4ee94db606", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199313314000.d0e751df-2661-4b2b-b8d0-af3f50e438db", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199313314000.d0e751df-2661-4b2b-b8d0-af3f50e438db", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "XCN.3", + "valueString": "Christopher" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "09339017" - } - ] + "url": "XCN.4", + "valueString": "Beau" + }, + { + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" + "url": "XCN.10", + "valueString": "L" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199310685000.0a389216-3789-4d29-8c97-7e4ee94db606" + } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" } ] }, - "value" : "M12776123" + "system": "NPI", + "value": "1871759365" } ], - "type" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } - ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "119297000", - "display" : "Blood specimen" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLD", - "display" : "BLOOD" - } - ] - }, - "receivedTime" : "2021-08-04T00:18:00-06:00", - "_receivedTime" : { - "extension" : [ + "name": [ + { + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Location/1732567199314507000.f7657f90-35b6-4909-8e81-3545ebcaf506", + "resource": { + "resourceType": "Location", + "id": "1732567199314507000.f7657f90-35b6-4909-8e81-3545ebcaf506", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "RML", + "physicalType": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210804001800-0600" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] - }, - "collection" : { - "collectedPeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - } + } + } + }, + { + "fullUrl": "Practitioner/1732567199315426000.f8b7b624-263c-4b36-9352-43f2154c6046", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199315426000.f8b7b624-263c-4b36-9352-43f2154c6046", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] }, - "bodySite" : { - "coding" : [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "RA", - "display" : "RIGHT ARM" + "url": "XCN.3", + "valueString": "Christopher" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - } - ], - "code" : "5.67" + "url": "XCN.4", + "valueString": "Beau" + }, + { + "url": "XCN.21", + "valueString": "MD" + }, + { + "url": "XCN.10", + "valueString": "L" } ] } - }, - "container" : [ + ], + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199314507000.f7657f90-35b6-4909-8e81-3545ebcaf506" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "display" : "BACTEC BLOOD CULTURE BOTTLES" + "code": "NPI" } ] - } + }, + "system": "NPI", + "value": "1871759365" } ], - "note" : [ + "name": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" - } + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" ], - "text" : "RA" + "suffix": [ + "MD" + ] } ] } }, { - "fullUrl" : "Specimen/1716965606844260000.6090d00b-2fef-4254-b412-b69e89f95a28", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716965606844260000.6090d00b-2fef-4254-b412-b69e89f95a28", - "extension" : [ + "fullUrl": "Practitioner/1732567199317214000.126293fa-a647-4d91-b864-107eeaf0e25d", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199317214000.126293fa-a647-4d91-b864-107eeaf0e25d", + "identifier": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" + "value": "ER" } - ], - "identifier" : [ - { - "extension" : [ + ] + } + }, + { + "fullUrl": "ServiceRequest/1732567199341806000.04ec2e33-a0f9-4c3a-9f53-6303e4365ee2", + "resource": { + "resourceType": "ServiceRequest", + "id": "1732567199341806000.04ec2e33-a0f9-4c3a-9f53-6303e4365ee2", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1732567199334108000.4134cedf-89db-4f6c-bcae-96a6972af572" + } + }, + { + "url": "OBR.18", + "valueString": "21:AA:B0029251Sm12776123" + }, + { + "url": "OBR.19", + "valueString": "09339017" + }, + { + "url": "OBR.7", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + } + }, + { + "url": "OBR.21", + "valueString": "TMCA, SOUTH CAMPUS" + }, + { + "url": "OBR.22", + "valueString": "20210810062500-0600" + }, + { + "url": "OBR.25", + "valueId": "P" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "OBR.26", + "extension": [ + { + "url": "prl-1-parent-observation-identifier", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BCEXT", + "display": "EXTENDED BLOOD CULTURE" + } + ], + "text": "EXTENDED BLOOD CULTURE" + } + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "M12776123" + "url": "prl-2-parent-observation-sub-identifier", + "valueString": "1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "prl-3-parent-observation-descriptor", + "valueString": "ENTRAFVRE" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" - } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "url": "OBR.29", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "21:AA:B0029251Sm12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + } } - ] - }, - "value" : "09339017" - }, + }, + { + "url": "OBR.8", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + } + }, + { + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1732567199339633000.9941f749-f310-4aae-baee-66772fa11dec" + } + }, + { + "url": "OBR.13", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SEPTIC SHOCK" + } + ] + } + } + ] + } + ], + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.3" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.4" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "09339017" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "M12776123" + "value": "21:AA:B0029251S.4" } ], - "type" : { - "coding" : [ + "status": "unknown", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "119297000", - "display" : "Blood specimen" + "system": "http://loinc.org", + "version": "2.40", + "code": "50545-3", + "display": "Bacterial susceptibility panel by Minimum inhibitory concentration (MIC)" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLD", - "display" : "BLOOD" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "MDAPTOE", + "display": "MIC DAPTOMYCIN E TEST" } ] }, - "receivedTime" : "2021-08-04T00:18:00-06:00", - "_receivedTime" : { - "extension" : [ + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "requester": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210804001800-0600" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4362727" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4362727" + }, + { + "url": "XTN.9", + "valueString": "Hospital Line" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "phone", + "use": "work" + } } - ] + ], + "reference": "Practitioner/1732567199322324000.dcdbb543-03fe-497d-a3d6-fc6dcce5374e" }, - "collection" : { - "collectedPeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } - ] - } - }, - "bodySite" : { - "coding" : [ + "reasonCode": [ + { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "RA", - "display" : "RIGHT ARM" + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" }, { - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" } ], - "code" : "5.67" + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" } ] } - }, - "note" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" - } - ], - "text" : "RA" - } ] } }, { - "fullUrl" : "Specimen/1716965606846264000.5ea07ffd-6cef-420a-babe-cb59ded318ba", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716965606846264000.5ea07ffd-6cef-420a-babe-cb59ded318ba", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" - }, + "fullUrl": "Location/1732567199319335000.6ba64f36-da2d-4205-8759-8101e15f066d", + "resource": { + "resourceType": "Location", + "id": "1732567199319335000.6ba64f36-da2d-4205-8759-8101e15f066d", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", - "extension" : [ - { - "url" : "SPM.26", - "valueString" : "3.0" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199322324000.dcdbb543-03fe-497d-a3d6-fc6dcce5374e", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199322324000.dcdbb543-03fe-497d-a3d6-fc6dcce5374e", + "extension": [ { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "M12776123" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - ], - "type" : { - "coding" : [ - { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } - ] - }, - "value" : "09339017" + ] }, { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "XCN.3", + "valueString": "Christopher" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "09339017" - } - ] + "url": "XCN.4", + "valueString": "Beau" + }, + { + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" + "url": "XCN.10", + "valueString": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.16" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199319335000.6ba64f36-da2d-4205-8759-8101e15f066d" + } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" } ] }, - "value" : "M12776123" + "system": "NPI", + "value": "1871759365" } ], - "type" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } - ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "119303007", - "display" : "Microbial isolate" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ISLT", - "display" : "ISOLATE" - } - ] - }, - "receivedTime" : "2021-08-04T00:18:00-06:00", - "_receivedTime" : { - "extension" : [ + "name": [ + { + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Location/1732567199330781000.ad79eed6-3513-45ff-beb6-ee257a20b8d7", + "resource": { + "resourceType": "Location", + "id": "1732567199330781000.ad79eed6-3513-45ff-beb6-ee257a20b8d7", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "RML", + "physicalType": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210804001800-0600" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] - }, - "collection" : { - "collectedPeriod" : { - "start" : "2028-08-08T09:28:05-06:00", - "_start" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280808092805-0600" - } - ] - }, - "end" : "2028-08-08T09:28:05-06:00", - "_end" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280808092805-0600" - } - ] - } + } + } + }, + { + "fullUrl": "Practitioner/1732567199334108000.4134cedf-89db-4f6c-bcae-96a6972af572", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199334108000.4134cedf-89db-4f6c-bcae-96a6972af572", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] }, - "bodySite" : { - "coding" : [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Christopher" + }, + { + "url": "XCN.4", + "valueString": "Beau" + }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "RA", - "display" : "RIGHT ARM" + "url": "XCN.21", + "valueString": "MD" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - } - ], - "code" : "5.67" + "url": "XCN.10", + "valueString": "L" } ] } - }, - "container" : [ + ], + "identifier": [ { - "type" : { - "coding" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199330781000.ad79eed6-3513-45ff-beb6-ee257a20b8d7" + } + } + ], + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "display" : "BACTEC BLOOD CULTURE BOTTLES" + "code": "NPI" } ] - } + }, + "system": "NPI", + "value": "1871759365" } ], - "note" : [ + "name": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" - } + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" ], - "text" : "RA" + "suffix": [ + "MD" + ] } ] } }, { - "fullUrl" : "ServiceRequest/1716965606860469000.90b0f4bd-c167-4b84-b581-5e403bb5d301", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1716965606860469000.90b0f4bd-c167-4b84-b581-5e403bb5d301", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "RE" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "202808080928" - }, + "fullUrl": "Practitioner/1732567199339633000.9941f749-f310-4aae-baee-66772fa11dec", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199339633000.9941f749-f310-4aae-baee-66772fa11dec", + "identifier": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ + "value": "ER" + } + ] + } + }, + { + "fullUrl": "ServiceRequest/1732567199350649000.6d72749f-5ca5-47f9-b04c-f4ede1111108", + "resource": { + "resourceType": "ServiceRequest", + "id": "1732567199350649000.6d72749f-5ca5-47f9-b04c-f4ede1111108", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1732567199347806000.733f71a0-d784-48a9-b056-9a1ed5a22207" + } + }, { - "url" : "ORC.6", - "valueString" : "N" + "url": "OBR.18", + "valueString": "21:AA:B0029251Sm12776123" }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1716965606855328000.8e655e19-8d8e-4482-9b56-fccaa92defda" - } + "url": "OBR.19", + "valueString": "09339017" }, { - "url" : "orc-22-ordering-facility-address", - "valueAddress" : { - "extension" : [ + "url": "OBR.7", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + } + }, + { + "url": "OBR.21", + "valueString": "ROSE MEDICAL CENTER (MCOE)" + }, + { + "url": "OBR.22", + "valueString": "20210810062500-0600" + }, + { + "url": "OBR.25", + "valueId": "P" + }, + { + "url": "OBR.26", + "extension": [ + { + "url": "prl-1-parent-observation-identifier", + "valueCodeableConcept": { + "coding": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } - ] + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7" }, { - "url" : "XAD.7", - "valueCode" : "B" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BCEXT", + "display": "EXTENDED BLOOD CULTURE" } - ] + ], + "text": "EXTENDED BLOOD CULTURE" } - ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" - ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } + }, + { + "url": "prl-2-parent-observation-sub-identifier", + "valueString": "1" + }, + { + "url": "prl-3-parent-observation-descriptor", + "valueString": "ENTRAFVRE" + } + ] }, { - "url" : "orc-24-ordering-provider-address", - "valueAddress" : { - "extension" : [ + "url": "OBR.29", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "5600 S Quebec St #312A" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "21:AA:B0029251Sm12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "RML" }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] } ], - "use" : "work", - "line" : [ - "5600 S Quebec St #312A" - ], - "city" : "Greenwood Village", - "district" : "MD", - "state" : "IG", - "postalCode" : "80111", - "country" : "USA" + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + } } }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1716965606857079000.ad514bdd-2867-48f3-8346-dd45696bdeaf" + "url": "OBR.8", + "valueDateTime": "2028-08-07T16:36:01-06:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] } }, { - "url" : "ORC.15", - "valueString" : "202108032350" + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1732567199349709000.0d0ab2bf-19ce-4363-b855-cdf3993e3d87" + } }, { - "url" : "ORC.17", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBR.13", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "TMCA, SOUTH CAMPUS" + "code": "SEPTIC SHOCK" } ] } } ] - }, + } + ], + "identifier": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ + "extension": [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - } - ], - "value" : "09339017" - } + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.3" }, { - "url" : "OBR.3", - "valueIdentifier" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } - ] - } - ], - "value" : "21:AA:B0029251S.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.5" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } - }, + ] + }, + "value": "21:AA:B0029251S.5" + } + ], + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VGP-75", + "display": "VITEK2 AST-GP75" + } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "requester": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "303" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "4362727" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "4362727" + }, + { + "url": "XTN.9", + "valueString": "Hospital Line" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "phone", + "use": "work" + } + } + ], + "reference": "Practitioner/1732567199343817000.de85e106-1750-414f-8602-d732a8b65233" + }, + "reasonCode": [ + { + "coding": [ { - "url" : "OBR.21", - "valueString" : "TMCA, SOUTH CAMPUS" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" + } + ], + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" }, { - "url" : "OBR.22", - "valueString" : "20210810062500-0600" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "I10" + } + ], + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "version": "38", + "code": "R6521", + "display": "SEVERE SEPSIS WITH SEPTIC SHOCK" + } + ] + } + ] + } + }, + { + "fullUrl": "Location/1732567199342809000.1d71b8a8-ab18-4d30-84c5-e682ae48485f", + "resource": { + "resourceType": "Location", + "id": "1732567199342809000.1d71b8a8-ab18-4d30-84c5-e682ae48485f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199343817000.de85e106-1750-414f-8602-d732a8b65233", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199343817000.de85e106-1750-414f-8602-d732a8b65233", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" }, { - "url" : "OBR.25", - "valueId" : "P" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1716965606858311000.5b833f4f-fb30-454a-8810-ef2afa8980d5" - } + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Christopher" }, { - "url" : "OBR.13", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "SEPTIC SHOCK" - } - ] - } + "url": "XCN.4", + "valueString": "Beau" }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1716965606859437000.d47f1c91-9017-4c5e-afcd-957cfc0d657d" - } + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ - { - "url" : "XTN.2", - "valueString" : "WPN" - }, - { - "url" : "XTN.3", - "valueString" : "PH" - }, - { - "url" : "XTN.7", - "valueString" : "4362727" - }, - { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } - ] - }, + "url": "XCN.10", + "valueString": "L" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.16" + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199342809000.1d71b8a8-ab18-4d30-84c5-e682ae48485f" + } + } + ], + "type": { + "coding": [ + { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "system" : "phone", - "use" : "work" + "code": "NPI" } + ] + }, + "system": "NPI", + "value": "1871759365" + } + ], + "name": [ + { + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Location/1732567199347021000.718183a7-e57a-4a73-85a0-82cb953f6f6a", + "resource": { + "resourceType": "Location", + "id": "1732567199347021000.718183a7-e57a-4a73-85a0-82cb953f6f6a", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "name": "RML", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Practitioner/1732567199347806000.733f71a0-d784-48a9-b056-9a1ed5a22207", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199347806000.733f71a0-d784-48a9-b056-9a1ed5a22207", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "Christopher" + }, + { + "url": "XCN.4", + "valueString": "Beau" }, { - "url" : "OBR.18", - "valueString" : "21:AA:B0029251Sm12776123" + "url": "XCN.21", + "valueString": "MD" }, { - "url" : "OBR.19", - "valueString" : "09339017" + "url": "XCN.10", + "valueString": "L" } ] } ], - "identifier" : [ + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732567199347021000.718183a7-e57a-4a73-85a0-82cb953f6f6a" + } + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "system": "NPI", + "value": "1871759365" + } + ], + "name": [ + { + "use": "official", + "family": "Willison", + "given": [ + "Christopher", + "Beau" + ], + "suffix": [ + "MD" + ] + } + ] + } + }, + { + "fullUrl": "Practitioner/1732567199349709000.0d0ab2bf-19ce-4363-b855-cdf3993e3d87", + "resource": { + "resourceType": "Practitioner", + "id": "1732567199349709000.0d0ab2bf-19ce-4363-b855-cdf3993e3d87", + "identifier": [ + { + "value": "ER" + } + ] + } + }, + { + "fullUrl": "DiagnosticReport/1732567199356748000.fc0e43dd-691b-41de-bd5b-323d746c1386", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1732567199356748000.fc0e43dd-691b-41de-bd5b-323d746c1386", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "09339017" + "value": "09339017" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.3" - }, + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "21:AA:B0029251S.1" + "value": "21:AA:B0029251S.1" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "21:AA:B0029251S" + "value": "21:AA:B0029251S" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } ] }, - "value" : "21:AA:B0029251S" + "value": "21:AA:B0029251S" + } + ], + "basedOn": [ + { + "reference": "ServiceRequest/1732567199274851000.e2bdcd89-32fc-49c6-a389-84c5a06ef171" } ], - "status" : "unknown", - "code" : { - "coding" : [ + "status": "preliminary", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7", + "display": "Bacteria identified in Blood by Culture" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BCEXT", - "display" : "EXTENDED BLOOD CULTURE" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BCEXT", + "display": "EXTENDED BLOOD CULTURE" } ] }, - "subject" : { - "reference" : "Patient/1716965606097981000.a9e583b2-8233-4a28-b882-d0a7d74c0b8e" + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "requester" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ - { - "url" : "XTN.2", - "valueString" : "WPN" - }, - { - "url" : "XTN.3", - "valueString" : "PH" - }, - { - "url" : "XTN.7", - "valueString" : "4362727" - }, - { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" - } - ], - "system" : "phone", - "use" : "work" - } - } - ], - "reference" : "PractitionerRole/1716965606847463000.e5da6cb1-6873-4c0a-ae7f-179ba357793b" + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "reasonCode" : [ - { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } - ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - }, + "effectivePeriod": { + "start": "2028-08-02T02:52:01-06:00", + "_start": { + "extension": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } - ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" } ] - } - ], - "note" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, + }, + "end": "2028-08-02T02:52:01-06:00", + "_end": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" } ] - }, + } + }, + "issued": "2021-08-10T06:25:00-06:00", + "_issued": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" + } + ] + }, + "specimen": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:CLAIRE HCE7362" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } - } - ], - "text" : "Critical result called to and read back by:CLAIRE HCE7362" + "reference": "Specimen/1732567199238263000.db55ca11-4df0-4cce-bee6-16839c06583a" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } - } - ], - "text" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM" + "reference": "Specimen/1732567199228980000.9129841c-20d4-4d5b-9b9c-ccfde96355cd" + } + ], + "result": [ + { + "reference": "Observation/1732567199047490000.fabe7bf9-7271-45b1-bf3e-573fecaab793" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:CLAIRE HCE7362" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } - } - ], - "text" : "Critical result called to and read back by:CLAIRE HCE7362" + "reference": "Observation/1732567199054451000.5d56f5b0-9d28-48a2-aca2-6096f3dd9202" }, { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ - { - "url" : "NTE.2", - "valueId" : "L" - } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } - ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } - ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } - ] - } - } - ], - "text" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" + "reference": "Observation/1732567199060378000.fcfe2ad2-c4fb-43d1-81fb-562a506ec857" } ] } }, { - "fullUrl" : "Practitioner/1716965606848859000.a59eb12d-deb5-4c92-9f72-fa51a4615c75", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716965606848859000.a59eb12d-deb5-4c92-9f72-fa51a4615c75", - "extension" : [ + "fullUrl": "DiagnosticReport/1732567199359055000.aead7c1e-173e-41ea-bbf9-fa3e82f9791d", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1732567199359055000.aead7c1e-173e-41ea-bbf9-fa3e82f9791d", + "identifier": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] } - ] + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" + } + ] + }, + "value": "09339017" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ - { - "url" : "XCN.3", - "valueString" : "Christopher" - }, - { - "url" : "XCN.4", - "valueString" : "Beau" - }, - { - "url" : "XCN.21", - "valueString" : "MD" - }, + "extension": [ { - "url" : "XCN.10", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] } - ] - }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" - } - ], - "identifier" : [ - { - "type" : { - "coding" : [ + ], + "type": { + "coding": [ { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } - ], - "code" : "NPI" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "system" : "NPI", - "value" : "1871759365" - } - ], - "name" : [ + "value": "21:AA:B0029251S.2" + }, { - "use" : "official", - "family" : "Willison", - "given" : [ - "Christopher", - "Beau" + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } ], - "suffix" : [ - "MD" - ] - } - ], - "address" : [ + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "21:AA:B0029251S" + }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "5600 S Quebec St #312A" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "use" : "work", - "line" : [ - "5600 S Quebec St #312A" - ], - "city" : "Greenwood Village", - "district" : "MD", - "state" : "IG", - "postalCode" : "80111", - "country" : "USA" + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "21:AA:B0029251S" } - ] - } - }, - { - "fullUrl" : "Organization/1716965606850740000.7b9c9771-e285-4124-a896-cb3315b91fe0", - "resource" : { - "resourceType" : "Organization", - "id" : "1716965606850740000.7b9c9771-e285-4124-a896-cb3315b91fe0", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } - ], - "coding" : [ - { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } - ], - "code" : "L" - } - ] - } + ], + "basedOn": [ + { + "reference": "ServiceRequest/1732567199296120000.0ce174fa-c7c1-4c3a-8e30-1b539cba47c2" + } + ], + "status": "preliminary", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "code" : "L" + "system": "http://loinc.org", + "version": "2.40", + "code": "600-7", + "display": "Bacteria identified in Blood by Culture" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "BLOODC", + "display": "BLOOD CULTURE" } + ] + }, + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" + }, + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" + }, + "effectivePeriod": { + "start": "2028-08-02T02:52:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] }, - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "end": "2028-08-02T02:52:01-06:00", + "_end": { + "extension": [ { - "url" : "XON.10", - "valueString" : "06D0055551" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" } ] } + }, + "issued": "2021-08-10T06:25:00-06:00", + "_issued": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" + } + ] + }, + "specimen": [ + { + "reference": "Specimen/1732567199240616000.a916150d-c1d3-4d7d-a92b-c1ee9b43cc8e" + }, + { + "reference": "Specimen/1732567199230364000.019f09a8-e3c0-4191-bfcf-bb02082f7994" + } ], - "identifier" : [ + "result": [ + { + "reference": "Observation/1732567199077189000.133e6966-1206-491f-8afc-cda8f9ff0e3a" + }, + { + "reference": "Observation/1732567199088223000.363c471d-02e4-4417-a649-1c4eae0d8406" + }, + { + "reference": "Observation/1732567199100914000.abe72908-3b56-4304-ab0e-ea56554d594d" + }, + { + "reference": "Observation/1732567199106706000.f4fa25c6-b3ed-43be-bc41-0103e99c7ccb" + }, + { + "reference": "Observation/1732567199111827000.60f266e4-b9db-4e40-b926-4d43661b0aa5" + }, + { + "reference": "Observation/1732567199119630000.d2413f80-e90e-455e-b46b-8fbe1c02c421" + }, + { + "reference": "Observation/1732567199124582000.d849036b-2d33-44e2-97fc-63b48afa72ee" + } + ] + } + }, + { + "fullUrl": "DiagnosticReport/1732567199361322000.8959170f-9898-4e59-8bcb-dad2696865d6", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1732567199361322000.8959170f-9898-4e59-8bcb-dad2696865d6", + "identifier": [ { - "extension" : [ + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" + }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.3" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "06D0055551" - } - ], - "name" : "TMCA, SOUTH CAMPUS", - "telecom" : [ + "value": "09339017" + }, { - "extension" : [ - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "6952653" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.3" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" + } + ] + }, + "value": "21:AA:B0029251S.3" + }, + { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "XTN.2", - "valueString" : "WPN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" }, { - "url" : "XTN.3", - "valueString" : "PH" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "XTN.7", - "valueString" : "6952653" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "system" : "phone", - "use" : "work" - } - ], - "address" : [ + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" + } + ] + }, + "value": "21:AA:B0029251S" + }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ - { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.144" }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "use" : "work", - "line" : [ - "1501 S. POTOMAC" - ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } - ] - } - }, - { - "fullUrl" : "PractitionerRole/1716965606847463000.e5da6cb1-6873-4c0a-ae7f-179ba357793b", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716965606847463000.e5da6cb1-6873-4c0a-ae7f-179ba357793b", - "practitioner" : { - "reference" : "Practitioner/1716965606848859000.a59eb12d-deb5-4c92-9f72-fa51a4615c75" - }, - "organization" : { - "reference" : "Organization/1716965606850740000.7b9c9771-e285-4124-a896-cb3315b91fe0" - } - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "4567 E. NINTH AVENUE" ], - "city" : "DENVER", - "district" : "S", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914811023000.4cf03d3f-d285-44e9-b4c8-990b36aa3765", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914811023000.4cf03d3f-d285-44e9-b4c8-990b36aa3765", - "practitioner" : { - "reference" : "Practitioner/1730838914811587000.4ea36225-71ef-472d-9605-9902913f1832" - }, - "organization" : { - "reference" : "Organization/1730838914812081000.21d1d9f3-437f-4bd4-8709-eb56bbe813e8" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914813405000.cd610eea-1663-4f56-87c7-e49e6c8e1a86", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914813405000.cd610eea-1663-4f56-87c7-e49e6c8e1a86", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ { - "url" : "SN.1", - "valueString" : "=" - }, { - "url" : "SN.2", - "valueString" : "16" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "SN" - }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" - } ] - } - }, { - "url" : "OBX.11", - "valueString" : "P" - } ] - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "28-1", - "display" : "Ampicillin [Susceptibility] by Minimum inhibitory concentration (MIC)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "AM", - "display" : "AMPICILLIN" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914813628000.8f44da09-b4c9-4ce1-b536-b9e132a8fdcd" - }, { - "reference" : "PractitionerRole/1730838914813733000.7a0bb3a9-5f22-457b-8477-b84f4ebd5ae4" - } ], - "interpretation" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } ], - "version" : "2.5.1", - "code" : "R", - "display" : "Resistant. Indicates for microbiology susceptibilities only." - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "R", - "display" : "R" - } ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914813628000.8f44da09-b4c9-4ce1-b536-b9e132a8fdcd", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914813628000.8f44da09-b4c9-4ce1-b536-b9e132a8fdcd", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "MCOE" - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, { - "fullUrl" : "Location/1730838914813862000.54ebdeea-50c4-411e-811c-3c646d44f780", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914813862000.54ebdeea-50c4-411e-811c-3c646d44f780", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "ROSE MEDICAL CENTER ", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914814229000.fa274404-f970-471d-bb0a-9c4c4169cf29", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914814229000.fa274404-f970-471d-bb0a-9c4c4169cf29", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Shalini" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914813862000.54ebdeea-50c4-411e-811c-3c646d44f780" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1033122247" - } ], - "name" : [ { - "use" : "official", - "family" : "Chahal", - "given" : [ "Shalini" ], - "prefix" : [ "Dr." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914814734000.4b98fb7c-c2e9-4ee5-9627-f568b316d8b2", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914814734000.4b98fb7c-c2e9-4ee5-9627-f568b316d8b2", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "4567 E. NINTH AVENUE" ], - "city" : "DENVER", - "district" : "R", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914813733000.7a0bb3a9-5f22-457b-8477-b84f4ebd5ae4", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914813733000.7a0bb3a9-5f22-457b-8477-b84f4ebd5ae4", - "practitioner" : { - "reference" : "Practitioner/1730838914814229000.fa274404-f970-471d-bb0a-9c4c4169cf29" - }, - "organization" : { - "reference" : "Organization/1730838914814734000.4b98fb7c-c2e9-4ee5-9627-f568b316d8b2" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914816026000.3fad926a-e5dc-46a4-a7a8-983f6abfbe68", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914816026000.3fad926a-e5dc-46a4-a7a8-983f6abfbe68", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" - } ] - } - }, { - "url" : "OBX.11", - "valueString" : "P" - } ] - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "7018-5", - "display" : "Gentamicin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "GMS", - "display" : "GENTAMICIN SYNERGY SCREEN" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914816241000.9a16ad4e-9ac6-41e7-b2ab-356ae6db3360" - }, { - "reference" : "PractitionerRole/1730838914816342000.4d15ad6d-60b9-4f95-be57-bbaea6b54266" - } ], - "valueString" : "SYN-S", - "interpretation" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } ], - "version" : "2.5.1", - "code" : "S", - "display" : "Susceptible. Indicates for microbiology susceptibilities only." - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "S", - "display" : "S" - } ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914816241000.9a16ad4e-9ac6-41e7-b2ab-356ae6db3360", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914816241000.9a16ad4e-9ac6-41e7-b2ab-356ae6db3360", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "MCOE" - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, { - "fullUrl" : "Location/1730838914816463000.97a94703-7c14-4404-8355-c5097d8b1921", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914816463000.97a94703-7c14-4404-8355-c5097d8b1921", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "ROSE MEDICAL CENTER ", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914816832000.12b23772-7a79-4f9e-a6d3-12ac22c4faf5", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914816832000.12b23772-7a79-4f9e-a6d3-12ac22c4faf5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Shalini" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914816463000.97a94703-7c14-4404-8355-c5097d8b1921" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1033122247" - } ], - "name" : [ { - "use" : "official", - "family" : "Chahal", - "given" : [ "Shalini" ], - "prefix" : [ "Dr." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914817320000.656854ce-46dc-4d60-992e-60cf7a7a705e", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914817320000.656854ce-46dc-4d60-992e-60cf7a7a705e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "4567 E. NINTH AVENUE" ], - "city" : "DENVER", - "district" : "S", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914816342000.4d15ad6d-60b9-4f95-be57-bbaea6b54266", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914816342000.4d15ad6d-60b9-4f95-be57-bbaea6b54266", - "practitioner" : { - "reference" : "Practitioner/1730838914816832000.12b23772-7a79-4f9e-a6d3-12ac22c4faf5" - }, - "organization" : { - "reference" : "Organization/1730838914817320000.656854ce-46dc-4d60-992e-60cf7a7a705e" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914818617000.c257468e-544b-40c6-b8ba-08a89f84f856", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914818617000.c257468e-544b-40c6-b8ba-08a89f84f856", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ { - "url" : "SN.1", - "valueString" : "=" - }, { - "url" : "SN.2", - "valueString" : "2" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "SN" - }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" - } ] - } - }, { - "url" : "OBX.11", - "valueString" : "P" - } ] - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "29254-0", - "display" : "Linezolid [Susceptibility] by Minimum inhibitory concentration (MIC)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "LZD", - "display" : "LINEZOLID" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914818823000.774792c9-db81-43b3-b08c-d5d8701f18c4" - }, { - "reference" : "PractitionerRole/1730838914818927000.52d4cf60-c86f-466b-b8d8-0af0e9edb6e0" - } ], - "interpretation" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } ], - "version" : "2.5.1", - "code" : "S", - "display" : "Susceptible. Indicates for microbiology susceptibilities only." - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "S", - "display" : "S" - } ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914818823000.774792c9-db81-43b3-b08c-d5d8701f18c4", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914818823000.774792c9-db81-43b3-b08c-d5d8701f18c4", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "MCOE" - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, { - "fullUrl" : "Location/1730838914819047000.67d0ac56-b9d8-4ff1-9406-7469be6875d9", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914819047000.67d0ac56-b9d8-4ff1-9406-7469be6875d9", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "ROSE MEDICAL CENTER ", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914819431000.b3c92564-aa7f-444c-a960-f6a9c6016398", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914819431000.b3c92564-aa7f-444c-a960-f6a9c6016398", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Shalini" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914819047000.67d0ac56-b9d8-4ff1-9406-7469be6875d9" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1033122247" - } ], - "name" : [ { - "use" : "official", - "family" : "Chahal", - "given" : [ "Shalini" ], - "prefix" : [ "Dr." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914819931000.d1187db7-d171-4b2d-8731-6d8d1a90a2e6", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914819931000.d1187db7-d171-4b2d-8731-6d8d1a90a2e6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "4567 E. NINTH AVENUE" ], - "city" : "DENVER", - "district" : "S", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914818927000.52d4cf60-c86f-466b-b8d8-0af0e9edb6e0", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914818927000.52d4cf60-c86f-466b-b8d8-0af0e9edb6e0", - "practitioner" : { - "reference" : "Practitioner/1730838914819431000.b3c92564-aa7f-444c-a960-f6a9c6016398" - }, - "organization" : { - "reference" : "Organization/1730838914819931000.d1187db7-d171-4b2d-8731-6d8d1a90a2e6" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914821243000.98539426-c7b0-4498-ad7a-111a075efe5a", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914821243000.98539426-c7b0-4498-ad7a-111a075efe5a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "ST" - }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" - } ] - } - }, { - "url" : "OBX.11", - "valueString" : "P" - } ] - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "6933-6", - "display" : "Streptomycin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "STS", - "display" : "STREPTOMYCIN SYNERGY SCREEN" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914821476000.cdbced34-fb06-4265-94fe-8f8c509188eb" - }, { - "reference" : "PractitionerRole/1730838914821584000.a112689b-4f99-4e2c-a149-b9a2e70db24f" - } ], - "valueString" : "SYN-S", - "interpretation" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } ], - "version" : "2.5.1", - "code" : "S", - "display" : "Susceptible. Indicates for microbiology susceptibilities only." - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "S", - "display" : "S" - } ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914821476000.cdbced34-fb06-4265-94fe-8f8c509188eb", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914821476000.cdbced34-fb06-4265-94fe-8f8c509188eb", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "MCOE" - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, { - "fullUrl" : "Location/1730838914821715000.62c4fddc-2f6b-4429-8f29-269496fa3d27", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914821715000.62c4fddc-2f6b-4429-8f29-269496fa3d27", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "ROSE MEDICAL CENTER ", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914822125000.6819a6e0-b4db-4e53-be50-3420b4f4624b", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914822125000.6819a6e0-b4db-4e53-be50-3420b4f4624b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Shalini" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914821715000.62c4fddc-2f6b-4429-8f29-269496fa3d27" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1033122247" - } ], - "name" : [ { - "use" : "official", - "family" : "Chahal", - "given" : [ "Shalini" ], - "prefix" : [ "Dr." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914822629000.87660c6b-2c38-4db1-a170-2b1f86e39200", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914822629000.87660c6b-2c38-4db1-a170-2b1f86e39200", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "4567 E. NINTH AVENUE" ], - "city" : "DENVER", - "district" : "S", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914821584000.a112689b-4f99-4e2c-a149-b9a2e70db24f", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914821584000.a112689b-4f99-4e2c-a149-b9a2e70db24f", - "practitioner" : { - "reference" : "Practitioner/1730838914822125000.6819a6e0-b4db-4e53-be50-3420b4f4624b" - }, - "organization" : { - "reference" : "Organization/1730838914822629000.87660c6b-2c38-4db1-a170-2b1f86e39200" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Observation/1730838914823945000.470c165d-7229-45ff-bbb5-662e8af72ed4", - "resource" : { - "resourceType" : "Observation", - "id" : "1730838914823945000.470c165d-7229-45ff-bbb5-662e8af72ed4", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2028-08-07T16:36:01-06:00", - "_valueDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ { - "url" : "SN.1", - "valueString" : ">=" - }, { - "url" : "SN.2", - "valueString" : "32" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ { - "url" : "OBX.2", - "valueId" : "SN" - }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" - } ], - "system" : "http://unitsofmeasure.org", - "version" : "2.40", - "code" : "ug/mL", - "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ug/mL", - "display" : "ug/mL" - } ] - } - }, { - "url" : "OBX.11", - "valueString" : "P" - } ] - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding" : { - "system" : "SNOMEDCT", - "code" : "406604002", - "display" : "Infection caused by vancomycin intermediate Staphylococcus aureus (disorder)" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding" : { - "system" : "SNOMEDCT", - "code" : "406604002", - "display" : "Infection caused by vancomycin intermediate Staphylococcus aureus (disorder)" - } - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "19000-9", - "display" : "Vancomycin [Susceptibility]" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VA", - "display" : "VANCOMYCIN" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectiveDateTime" : "2028-08-07T16:36:01-06:00", - "_effectiveDateTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - }, - "performer" : [ { - "reference" : "Organization/1730838914824162000.59286518-a49c-40a8-883f-8d99720151c6" - }, { - "reference" : "PractitionerRole/1730838914824273000.cbeb85cb-6ed5-4a06-aa6a-50dc1d127aec" - } ], - "interpretation" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" - } ], - "version" : "2.5.1", - "code" : "R", - "display" : "Resistant. Indicates for microbiology susceptibilities only." - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "R", - "display" : "R" - } ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914824162000.59286518-a49c-40a8-883f-8d99720151c6", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914824162000.59286518-a49c-40a8-883f-8d99720151c6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LB" - } ], - "code" : "MCOE", - "display" : "ROSE MEDICAL CENTER (MCOE)" - } ] - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" - } ], - "identifier" : [ { - "system" : "LB", - "value" : "MCOE" - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)" - } - }, { - "fullUrl" : "Location/1730838914824399000.63c1aa1b-ff9a-4529-a7a6-26f3171fbdbe", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914824399000.63c1aa1b-ff9a-4529-a7a6-26f3171fbdbe", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "ROSE MEDICAL CENTER ", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914824803000.26c9833e-4e74-4254-a611-761b3a050635", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914824803000.26c9833e-4e74-4254-a611-761b3a050635", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Shalini" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914824399000.63c1aa1b-ff9a-4529-a7a6-26f3171fbdbe" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "FI" - } ] - }, - "system" : "RML", - "value" : "1033122247" - } ], - "name" : [ { - "use" : "official", - "family" : "Chahal", - "given" : [ "Shalini" ], - "prefix" : [ "Dr." ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Organization/1730838914825344000.4454bc65-3f3d-4861-9d88-de548f718118", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914825344000.4454bc65-3f3d-4861-9d88-de548f718118", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - } ], - "name" : "ROSE MEDICAL CENTER (MCOE)", - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "4567 E. NINTH AVENUE" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "4567 E. NINTH AVENUE" ], - "city" : "DENVER", - "district" : "R", - "state" : "IG", - "postalCode" : "80220", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914824273000.cbeb85cb-6ed5-4a06-aa6a-50dc1d127aec", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914824273000.cbeb85cb-6ed5-4a06-aa6a-50dc1d127aec", - "practitioner" : { - "reference" : "Practitioner/1730838914824803000.26c9833e-4e74-4254-a611-761b3a050635" - }, - "organization" : { - "reference" : "Organization/1730838914825344000.4454bc65-3f3d-4861-9d88-de548f718118" - }, - "code" : [ { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0912", - "code" : "MDIR" - } ] - } ] - } - }, { - "fullUrl" : "Specimen/1730838914855305000.bb5142ae-411f-4ac4-b135-11c0a3c86011", - "resource" : { - "resourceType" : "Specimen", - "id" : "1730838914855305000.bb5142ae-411f-4ac4-b135-11c0a3c86011", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } ] - } - }, { - "fullUrl" : "Specimen/1730838914855587000.eefaaaf7-f224-4787-b808-222cfd8ce934", - "resource" : { - "resourceType" : "Specimen", - "id" : "1730838914855587000.eefaaaf7-f224-4787-b808-222cfd8ce934", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } ] - } - }, { - "fullUrl" : "Specimen/1730838914855835000.d443d135-470f-4f93-8cd5-f103f45247a4", - "resource" : { - "resourceType" : "Specimen", - "id" : "1730838914855835000.d443d135-470f-4f93-8cd5-f103f45247a4", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } ] - } - }, { - "fullUrl" : "Specimen/1730838914856068000.a6bf9c05-751d-4988-aa0c-d2c9e5b487ba", - "resource" : { - "resourceType" : "Specimen", - "id" : "1730838914856068000.a6bf9c05-751d-4988-aa0c-d2c9e5b487ba", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } ] - } - }, { - "fullUrl" : "Specimen/1730838914856307000.7450cc07-5ed0-4c7e-b079-968341c133d5", - "resource" : { - "resourceType" : "Specimen", - "id" : "1730838914856307000.7450cc07-5ed0-4c7e-b079-968341c133d5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } ] - } - }, { - "fullUrl" : "Specimen/1730838914858965000.b61713c0-f060-4d4b-b6e4-90522af63456", - "resource" : { - "resourceType" : "Specimen", - "id" : "1730838914858965000.b61713c0-f060-4d4b-b6e4-90522af63456", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", - "extension" : [ { - "url" : "SPM.26", - "valueString" : "1" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "09339017" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] - }, - "value" : "M12776123" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "119297000", - "display" : "Blood specimen" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLD", - "display" : "BLOOD" - } ] - }, - "receivedTime" : "2021-08-04T00:18:00-06:00", - "_receivedTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210804001800-0600" - } ] - }, - "collection" : { - "collectedPeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - } - }, - "bodySite" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "RA", - "display" : "RIGHT ARM" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - } ], - "code" : "5.67" - } ] - } - }, - "container" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "display" : "BACTEC AEROBIC PLUS" - } ] - } - } ], - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" - } ], - "text" : "RA" - } ] - } - }, { - "fullUrl" : "Specimen/1730838914860632000.4eb39857-6061-47de-95fe-b759dcae97d4", - "resource" : { - "resourceType" : "Specimen", - "id" : "1730838914860632000.4eb39857-6061-47de-95fe-b759dcae97d4", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", - "extension" : [ { - "url" : "SPM.26", - "valueString" : "3.0" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "09339017" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] - }, - "value" : "M12776123" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "119297000", - "display" : "Blood specimen" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLD", - "display" : "BLOOD" - } ] - }, - "receivedTime" : "2021-08-04T00:18:00-06:00", - "_receivedTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210804001800-0600" - } ] - }, - "collection" : { - "collectedPeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - } - }, - "bodySite" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "RA", - "display" : "RIGHT ARM" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - } ], - "code" : "5.67" - } ] - } - }, - "container" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "display" : "BACTEC BLOOD CULTURE BOTTLES" - } ] - } - } ], - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" - } ], - "text" : "RA" - } ] - } - }, { - "fullUrl" : "Specimen/1730838914861805000.dbabdc5e-06c6-4747-90c2-46fffbac67ec", - "resource" : { - "resourceType" : "Specimen", - "id" : "1730838914861805000.dbabdc5e-06c6-4747-90c2-46fffbac67ec", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "09339017" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] - }, - "value" : "M12776123" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "119297000", - "display" : "Blood specimen" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLD", - "display" : "BLOOD" - } ] - }, - "receivedTime" : "2021-08-04T00:18:00-06:00", - "_receivedTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210804001800-0600" - } ] - }, - "collection" : { - "collectedPeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - } - }, - "bodySite" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "RA", - "display" : "RIGHT ARM" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - } ], - "code" : "5.67" - } ] - } - }, - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" - } ], - "text" : "RA" - } ] - } - }, { - "fullUrl" : "Specimen/1730838914863219000.d24a9b32-1921-44a3-8b6f-e33035e4b426", - "resource" : { - "resourceType" : "Specimen", - "id" : "1730838914863219000.d24a9b32-1921-44a3-8b6f-e33035e4b426", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", - "extension" : [ { - "url" : "SPM.26", - "valueString" : "3.0" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "09339017" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] - }, - "value" : "M12776123" - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" - } ], - "system" : "http://snomed.info/sct", - "version" : "07/31/2012", - "code" : "119303007", - "display" : "Microbial isolate" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "ISLT", - "display" : "ISOLATE" - } ] - }, - "receivedTime" : "2021-08-04T00:18:00-06:00", - "_receivedTime" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210804001800-0600" - } ] - }, - "collection" : { - "collectedPeriod" : { - "start" : "2028-08-08T09:28:05-06:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280808092805-0600" - } ] - }, - "end" : "2028-08-08T09:28:05-06:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280808092805-0600" - } ] + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" + } + ] + }, + "value": "21:AA:B0029251S" } - }, - "bodySite" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "RA", - "display" : "RIGHT ARM" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - } ], - "code" : "5.67" - } ] - } - }, - "container" : [ { - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "display" : "BACTEC BLOOD CULTURE BOTTLES" - } ] - } - } ], - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" - } ], - "text" : "RA" - } ] - } - }, { - "fullUrl" : "ServiceRequest/1730838914873315000.918059d6-e146-4bf4-b591-565d508866e0", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1730838914873315000.918059d6-e146-4bf4-b591-565d508866e0", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "RE" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "202808080928" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ { - "url" : "ORC.6", - "valueString" : "N" - }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1730838914869520000.799ccf21-f369-4f2c-a414-563afc469136" - } - }, { - "url" : "orc-22-ordering-facility-address", - "valueAddress" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } - }, { - "url" : "orc-24-ordering-provider-address", - "valueAddress" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "5600 S Quebec St #312A" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "5600 S Quebec St #312A" ], - "city" : "Greenwood Village", - "district" : "MD", - "state" : "IG", - "postalCode" : "80111", - "country" : "USA" - } - }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1730838914870861000.719c6e7c-b29f-48e8-b5f1-71e877876364" - } - }, { - "url" : "ORC.15", - "valueString" : "202108032350" - }, { - "url" : "ORC.17", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "TMCA, SOUTH CAMPUS" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "09339017" - } - }, { - "url" : "OBR.3", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "21:AA:B0029251S.1" - } - }, { - "url" : "OBR.21", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "OBR.22", - "valueString" : "20210810062500-0600" - }, { - "url" : "OBR.25", - "valueId" : "P" - }, { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1730838914871638000.db5f071a-2f3e-4593-838d-132795b7f86a" - } - }, { - "url" : "OBR.13", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "SEPTIC SHOCK" - } ] - } - }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1730838914872442000.6315ab2e-f195-46a3-a9ac-656faef940a9" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4362727" - }, { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" - } ], - "system" : "phone", - "use" : "work" - } - }, { - "url" : "OBR.18", - "valueString" : "21:AA:B0029251Sm12776123" - }, { - "url" : "OBR.19", - "valueString" : "09339017" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] - }, - "value" : "21:AA:B0029251S.1" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "21:AA:B0029251S" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] - }, - "value" : "21:AA:B0029251S" - } ], - "status" : "unknown", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BCEXT", - "display" : "EXTENDED BLOOD CULTURE" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "requester" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4362727" - }, { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" - } ], - "system" : "phone", - "use" : "work" - } - } ], - "reference" : "PractitionerRole/1730838914864923000.6d929cb4-4aeb-4fee-be34-b651230d34c0" - }, - "reasonCode" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - } ] - } ], - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" - } ] - } - }, { - "fullUrl" : "Location/1730838914865137000.d76319d3-828f-4e2d-8c7e-c3d2b968184f", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914865137000.d76319d3-828f-4e2d-8c7e-c3d2b968184f", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914865888000.a921d4cb-330c-42f1-8876-5a2ef2d25eb9", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914865888000.a921d4cb-330c-42f1-8876-5a2ef2d25eb9", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914865137000.d76319d3-828f-4e2d-8c7e-c3d2b968184f" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "5600 S Quebec St #312A" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "5600 S Quebec St #312A" ], - "city" : "Greenwood Village", - "district" : "MD", - "state" : "IG", - "postalCode" : "80111", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914866899000.a9e56273-c5a0-444c-82cd-7b4e1bc00207", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914866899000.a9e56273-c5a0-444c-82cd-7b4e1bc00207", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] - } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "6952653" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "6952653" - } ] - } ], - "system" : "phone", - "use" : "work" - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914864923000.6d929cb4-4aeb-4fee-be34-b651230d34c0", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914864923000.6d929cb4-4aeb-4fee-be34-b651230d34c0", - "practitioner" : { - "reference" : "Practitioner/1730838914865888000.a921d4cb-330c-42f1-8876-5a2ef2d25eb9" - }, - "organization" : { - "reference" : "Organization/1730838914866899000.a9e56273-c5a0-444c-82cd-7b4e1bc00207" - } - } - }, { - "fullUrl" : "Organization/1730838914869520000.799ccf21-f369-4f2c-a414-563afc469136", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914869520000.799ccf21-f369-4f2c-a414-563afc469136", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + ], + "basedOn": [ + { + "reference": "ServiceRequest/1732567199318382000.46e91b38-da3c-4cc8-801e-18c8d07d0ecf" + } + ], + "status": "preliminary", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "77202-0", + "display": "Laboratory comment [Text] in Report Narrative" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VERGPCOM", + "display": "COMMENT" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914870334000.d44271e1-dec9-4c11-8d4a-0a055533aca9", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914870334000.d44271e1-dec9-4c11-8d4a-0a055533aca9", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914870861000.719c6e7c-b29f-48e8-b5f1-71e877876364", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914870861000.719c6e7c-b29f-48e8-b5f1-71e877876364", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914870334000.d44271e1-dec9-4c11-8d4a-0a055533aca9" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914871638000.db5f071a-2f3e-4593-838d-132795b7f86a", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914871638000.db5f071a-2f3e-4593-838d-132795b7f86a", - "identifier" : [ { - "value" : "ER" - } ] - } - }, { - "fullUrl" : "Location/1730838914872009000.0c7e9b2e-abee-4894-95c2-e4f11fb8f84d", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914872009000.0c7e9b2e-abee-4894-95c2-e4f11fb8f84d", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914872442000.6315ab2e-f195-46a3-a9ac-656faef940a9", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914872442000.6315ab2e-f195-46a3-a9ac-656faef940a9", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914872009000.0c7e9b2e-abee-4894-95c2-e4f11fb8f84d" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "ServiceRequest/1730838914882579000.4700ff5d-bc63-4475-9e6c-634a429efc7f", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1730838914882579000.4700ff5d-bc63-4475-9e6c-634a429efc7f", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "RE" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "202808080928" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ { - "url" : "ORC.6", - "valueString" : "N" - }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1730838914879125000.f512aba5-c489-4f9b-8539-83ea07ceec2b" - } - }, { - "url" : "orc-22-ordering-facility-address", - "valueAddress" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } - }, { - "url" : "orc-24-ordering-provider-address", - "valueAddress" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "5600 S Quebec St #312A" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "5600 S Quebec St #312A" ], - "city" : "Greenwood Village", - "district" : "MD", - "state" : "IG", - "postalCode" : "80111", - "country" : "USA" - } - }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1730838914880404000.7c423bbb-9dc2-4790-b90c-458b90653f8e" - } - }, { - "url" : "ORC.15", - "valueString" : "202108032350" - }, { - "url" : "ORC.17", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "TMCA, SOUTH CAMPUS" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "09339017" - } - }, { - "url" : "OBR.3", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "21:AA:B0029251S.2" - } - }, { - "url" : "OBR.21", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "OBR.22", - "valueString" : "20210810062500-0600" - }, { - "url" : "OBR.25", - "valueId" : "P" - }, { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1730838914881129000.65306ba8-3754-4e9c-b99f-37502128840d" - } - }, { - "url" : "OBR.13", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "SEPTIC SHOCK" - } ] - } - }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1730838914881905000.cd25d13d-ae2b-49c5-aecb-47b5df99ae43" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4362727" - }, { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" - } ], - "system" : "phone", - "use" : "work" - } - }, { - "url" : "OBR.18", - "valueString" : "21:AA:B0029251Sm12776123" - }, { - "url" : "OBR.19", - "valueString" : "09339017" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] + ] }, - "value" : "21:AA:B0029251S.2" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "value" : "21:AA:B0029251S" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "value" : "21:AA:B0029251S" - } ], - "status" : "unknown", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLOODC", - "display" : "BLOOD CULTURE" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "requester" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4362727" - }, { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" - } ], - "system" : "phone", - "use" : "work" - } - } ], - "reference" : "PractitionerRole/1730838914873746000.96d2662b-a4c0-4e54-9067-d6ee838fbe83" - }, - "reasonCode" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - } ] - } ], - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" - } ] - } - }, { - "fullUrl" : "Location/1730838914873999000.b3c8daae-db27-41f7-a93c-c284d765edf6", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914873999000.b3c8daae-db27-41f7-a93c-c284d765edf6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914874830000.d57b760c-4cda-4f57-9b4e-dd408f38783c", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914874830000.d57b760c-4cda-4f57-9b4e-dd408f38783c", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914873999000.b3c8daae-db27-41f7-a93c-c284d765edf6" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] + "effectivePeriod": { + "start": "2028-08-02T02:52:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + }, + "end": "2028-08-02T02:52:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280802025201-0600" + } + ] + } }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "5600 S Quebec St #312A" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "5600 S Quebec St #312A" ], - "city" : "Greenwood Village", - "district" : "MD", - "state" : "IG", - "postalCode" : "80111", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914876041000.9bb8dee8-0828-4f39-8a01-b0304dba3748", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914876041000.9bb8dee8-0828-4f39-8a01-b0304dba3748", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + "issued": "2021-08-10T06:25:00-06:00", + "_issued": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + ] }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "6952653" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "6952653" - } ] - } ], - "system" : "phone", - "use" : "work" - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914873746000.96d2662b-a4c0-4e54-9067-d6ee838fbe83", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914873746000.96d2662b-a4c0-4e54-9067-d6ee838fbe83", - "practitioner" : { - "reference" : "Practitioner/1730838914874830000.d57b760c-4cda-4f57-9b4e-dd408f38783c" - }, - "organization" : { - "reference" : "Organization/1730838914876041000.9bb8dee8-0828-4f39-8a01-b0304dba3748" + "specimen": [ + { + "reference": "Specimen/1732567199242870000.81842cd8-5775-4fc6-b5c2-b353231c881b" + }, + { + "reference": "Specimen/1732567199231598000.d8e9a99e-5905-498e-a737-a763a55f939a" + } + ], + "result": [ + { + "reference": "Observation/1732567199140275000.94eea07e-6d97-41f9-9dd1-4cd3422211f1" + }, + { + "reference": "Observation/1732567199144879000.8eb1281b-d897-4d62-9de5-8b1c0b228c15" + }, + { + "reference": "Observation/1732567199150834000.a2f961f6-b583-4923-b910-41a11a600b51" + }, + { + "reference": "Observation/1732567199155168000.12ef8744-f345-48fa-8305-8d7d9382fc8d" + }, + { + "reference": "Observation/1732567199159440000.6ccfebb0-cd42-4d6a-8931-d3d6396031ca" + }, + { + "reference": "Observation/1732567199163332000.633e21bf-037b-46c5-8bf3-1d0b04273b08" + }, + { + "reference": "Observation/1732567199167298000.20b3c4c6-2814-4819-8809-71e9513bd24b" + }, + { + "reference": "Observation/1732567199175898000.1cc90ee7-dd03-44d1-8201-1d9ea729977c" + }, + { + "reference": "Observation/1732567199183716000.d968c1df-10f8-4a2b-b0a4-f3fc282f4363" + }, + { + "reference": "Observation/1732567199187552000.9acf86c2-c4f3-49a3-95e7-cc6857b20b50" + } + ] } - } - }, { - "fullUrl" : "Organization/1730838914879125000.f512aba5-c489-4f9b-8539-83ea07ceec2b", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914879125000.f512aba5-c489-4f9b-8539-83ea07ceec2b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "DiagnosticReport/1732567199362781000.90549015-0ca5-4d87-ace3-3082703bf9a0", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1732567199362781000.90549015-0ca5-4d87-ace3-3082703bf9a0", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.4" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" + } + ] + }, + "value": "21:AA:B0029251S.4" + } + ], + "basedOn": [ + { + "reference": "ServiceRequest/1732567199341806000.04ec2e33-a0f9-4c3a-9f53-6303e4365ee2" + } + ], + "status": "preliminary", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2.40", + "code": "50545-3", + "display": "Bacterial susceptibility panel by Minimum inhibitory concentration (MIC)" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "MDAPTOE", + "display": "MIC DAPTOMYCIN E TEST" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] - }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914879955000.c63fc7c7-dbf5-45dd-bdbb-fde6f70647c0", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914879955000.c63fc7c7-dbf5-45dd-bdbb-fde6f70647c0", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914880404000.7c423bbb-9dc2-4790-b90c-458b90653f8e", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914880404000.7c423bbb-9dc2-4790-b90c-458b90653f8e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914879955000.c63fc7c7-dbf5-45dd-bdbb-fde6f70647c0" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914881129000.65306ba8-3754-4e9c-b99f-37502128840d", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914881129000.65306ba8-3754-4e9c-b99f-37502128840d", - "identifier" : [ { - "value" : "ER" - } ] - } - }, { - "fullUrl" : "Location/1730838914881478000.ca540b0c-b24f-4ef7-a424-539b864e8dad", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914881478000.ca540b0c-b24f-4ef7-a424-539b864e8dad", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914881905000.cd25d13d-ae2b-49c5-aecb-47b5df99ae43", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914881905000.cd25d13d-ae2b-49c5-aecb-47b5df99ae43", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914881478000.ca540b0c-b24f-4ef7-a424-539b864e8dad" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "ServiceRequest/1730838914891090000.81493f70-edbd-4707-bda1-b85f6f63c135", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1730838914891090000.81493f70-edbd-4707-bda1-b85f6f63c135", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "RE" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "202808080928" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ { - "url" : "ORC.6", - "valueString" : "N" - }, { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1730838914887802000.f0e8c9d3-77cf-49e4-b224-a4af2b4ac24f" - } - }, { - "url" : "orc-22-ordering-facility-address", - "valueAddress" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } - }, { - "url" : "orc-24-ordering-provider-address", - "valueAddress" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "5600 S Quebec St #312A" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "5600 S Quebec St #312A" ], - "city" : "Greenwood Village", - "district" : "MD", - "state" : "IG", - "postalCode" : "80111", - "country" : "USA" - } - }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1730838914888947000.28f374f5-33e2-4442-853d-8bbeefe7b893" - } - }, { - "url" : "ORC.15", - "valueString" : "202108032350" - }, { - "url" : "ORC.17", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "TMCA, SOUTH CAMPUS" - } ] - } - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "09339017" - } - }, { - "url" : "OBR.3", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "value" : "21:AA:B0029251S.3" - } - }, { - "url" : "OBR.21", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "OBR.22", - "valueString" : "20210810062500-0600" - }, { - "url" : "OBR.25", - "valueId" : "P" - }, { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1730838914889679000.7b1e8142-0c9d-402f-b4c9-7915d571302d" - } - }, { - "url" : "OBR.13", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "SEPTIC SHOCK" - } ] - } - }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1730838914890456000.24b66b71-2bae-4d3c-80fc-0c7f162f2ed2" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4362727" - }, { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" - } ], - "system" : "phone", - "use" : "work" - } - }, { - "url" : "OBR.18", - "valueString" : "21:AA:B0029251Sm12776123" - }, { - "url" : "OBR.19", - "valueString" : "09339017" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] + ] }, - "value" : "21:AA:B0029251S.3" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "value" : "21:AA:B0029251S" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "value" : "21:AA:B0029251S" - } ], - "status" : "unknown", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "requester" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4362727" - }, { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" - } ], - "system" : "phone", - "use" : "work" - } - } ], - "reference" : "PractitionerRole/1730838914883000000.5ae9c7ba-dac6-4f53-9eb0-474c3b9033c5" - }, - "reasonCode" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - } ] - } ], - "note" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ] - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Critical result called to and read back by:CLAIRE HCE7362" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ { - "url" : "NTE.2", - "valueId" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" - } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "C", - "display" : "Comment" - } ] - } - } ], - "text" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX" - } ] - } - }, { - "fullUrl" : "Location/1730838914883400000.f60774d1-756a-49d2-ad95-652dde0fc5fc", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914883400000.f60774d1-756a-49d2-ad95-652dde0fc5fc", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914884150000.3c478830-e24c-4978-b68f-27f4b53e5342", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914884150000.3c478830-e24c-4978-b68f-27f4b53e5342", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914883400000.f60774d1-756a-49d2-ad95-652dde0fc5fc" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] + "effectivePeriod": { + "start": "2028-08-07T16:36:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + }, + "end": "2028-08-07T16:36:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + } }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "5600 S Quebec St #312A" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "5600 S Quebec St #312A" ], - "city" : "Greenwood Village", - "district" : "MD", - "state" : "IG", - "postalCode" : "80111", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "Organization/1730838914885184000.f229ae5e-0004-419f-bdb3-b1c5c06b6a72", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914885184000.f229ae5e-0004-419f-bdb3-b1c5c06b6a72", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + "issued": "2021-08-10T06:25:00-06:00", + "_issued": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + ] }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS", - "telecom" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "6952653" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "6952653" - } ] - } ], - "system" : "phone", - "use" : "work" - } ], - "address" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ { - "url" : "SAD.1", - "valueString" : "1501 S. POTOMAC" - } ] - }, { - "url" : "XAD.7", - "valueCode" : "B" - } ] - } ], - "use" : "work", - "line" : [ "1501 S. POTOMAC" ], - "city" : "AURORA", - "district" : "MD", - "state" : "IG", - "postalCode" : "80012", - "country" : "USA" - } ] - } - }, { - "fullUrl" : "PractitionerRole/1730838914883000000.5ae9c7ba-dac6-4f53-9eb0-474c3b9033c5", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1730838914883000000.5ae9c7ba-dac6-4f53-9eb0-474c3b9033c5", - "practitioner" : { - "reference" : "Practitioner/1730838914884150000.3c478830-e24c-4978-b68f-27f4b53e5342" - }, - "organization" : { - "reference" : "Organization/1730838914885184000.f229ae5e-0004-419f-bdb3-b1c5c06b6a72" + "specimen": [ + { + "reference": "Specimen/1732567199232902000.7aa259f0-f0b6-4442-9c8e-3e6a3e9bfc15" + } + ], + "result": [ + { + "reference": "Observation/1732567199191704000.a2684432-4d02-4883-a6b0-a0d03f4c62c1" + } + ] } - } - }, { - "fullUrl" : "Organization/1730838914887802000.f0e8c9d3-77cf-49e4-b224-a4af2b4ac24f", - "resource" : { - "resourceType" : "Organization", - "id" : "1730838914887802000.f0e8c9d3-77cf-49e4-b224-a4af2b4ac24f", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "L" - } ] + }, + { + "fullUrl": "DiagnosticReport/1732567199364257000.b75cb014-9f4f-4196-8138-7b6575c4d240", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1732567199364257000.b75cb014-9f4f-4196-8138-7b6575c4d240", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "M12776123.5" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" + } + ] + }, + "value": "21:AA:B0029251S.5" + } + ], + "basedOn": [ + { + "reference": "ServiceRequest/1732567199350649000.6d72749f-5ca5-47f9-b04c-f4ede1111108" + } + ], + "status": "preliminary", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" + } + ], + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "5.67", + "code": "VGP-75", + "display": "VITEK2 AST-GP75" } - } ], - "code" : "L" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.10", - "valueString" : "06D0055551" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" - } ] + ] }, - "value" : "06D0055551" - } ], - "name" : "TMCA, SOUTH CAMPUS" - } - }, { - "fullUrl" : "Location/1730838914888508000.7928c72e-8cff-4e92-ae9b-644de5b7e1d5", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914888508000.7928c72e-8cff-4e92-ae9b-644de5b7e1d5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914888947000.28f374f5-33e2-4442-853d-8bbeefe7b893", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914888947000.28f374f5-33e2-4442-853d-8bbeefe7b893", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914888508000.7928c72e-8cff-4e92-ae9b-644de5b7e1d5" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] + "subject": { + "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553" }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914889679000.7b1e8142-0c9d-402f-b4c9-7915d571302d", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914889679000.7b1e8142-0c9d-402f-b4c9-7915d571302d", - "identifier" : [ { - "value" : "ER" - } ] - } - }, { - "fullUrl" : "Location/1730838914890028000.fa47ee3d-e220-41bc-93a4-9d316568f891", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914890028000.fa47ee3d-e220-41bc-93a4-9d316568f891", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914890456000.24b66b71-2bae-4d3c-80fc-0c7f162f2ed2", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914890456000.24b66b71-2bae-4d3c-80fc-0c7f162f2ed2", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914890028000.fa47ee3d-e220-41bc-93a4-9d316568f891" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] + "encounter": { + "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c" }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "ServiceRequest/1730838914895288000.23b14643-50db-435a-85a3-d849290aaa7a", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1730838914895288000.23b14643-50db-435a-85a3-d849290aaa7a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ { - "url" : "OBR.21", - "valueString" : "TMCA, SOUTH CAMPUS" - }, { - "url" : "OBR.22", - "valueString" : "20210810062500-0600" - }, { - "url" : "OBR.25", - "valueId" : "P" - }, { - "url" : "OBR.26", - "extension" : [ { - "url" : "prl-1-parent-observation-identifier", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BCEXT", - "display" : "EXTENDED BLOOD CULTURE" - } ], - "text" : "EXTENDED BLOOD CULTURE" - } - }, { - "url" : "prl-2-parent-observation-sub-identifier", - "valueString" : "1" - }, { - "url" : "prl-3-parent-observation-descriptor", - "valueString" : "ENTRAFVRE" - } ] - }, { - "url" : "OBR.29", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "21:AA:B0029251Sm12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - } + "effectivePeriod": { + "start": "2028-08-07T16:36:01-06:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] + }, + "end": "2028-08-07T16:36:01-06:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20280807163601-0600" + } + ] } - }, { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1730838914894150000.9a69bf81-0eef-4637-9a74-f3a8ff4612ea" - } - }, { - "url" : "OBR.13", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "SEPTIC SHOCK" - } ] - } - }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1730838914894938000.8ea784ee-7bec-4823-b7e0-df2fda766fd4" - } - }, { - "url" : "OBR.18", - "valueString" : "21:AA:B0029251Sm12776123" - }, { - "url" : "OBR.19", - "valueString" : "09339017" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] - }, - "value" : "21:AA:B0029251S.4" - } ], - "status" : "unknown", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "50545-3", - "display" : "Bacterial susceptibility panel by Minimum inhibitory concentration (MIC)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MDAPTOE", - "display" : "MIC DAPTOMYCIN E TEST" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "requester" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4362727" - }, { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" - } ], - "system" : "phone", - "use" : "work" - } - } ], - "reference" : "Practitioner/1730838914892095000.174e538e-8f01-4768-ab72-991d8f151cf1" - }, - "reasonCode" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - } ] - } ] - } - }, { - "fullUrl" : "Location/1730838914891593000.f37e7ffc-cab2-4beb-b62a-5ef2fb665735", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914891593000.f37e7ffc-cab2-4beb-b62a-5ef2fb665735", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914892095000.174e538e-8f01-4768-ab72-991d8f151cf1", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914892095000.174e538e-8f01-4768-ab72-991d8f151cf1", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.16" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914891593000.f37e7ffc-cab2-4beb-b62a-5ef2fb665735" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914894150000.9a69bf81-0eef-4637-9a74-f3a8ff4612ea", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914894150000.9a69bf81-0eef-4637-9a74-f3a8ff4612ea", - "identifier" : [ { - "value" : "ER" - } ] - } - }, { - "fullUrl" : "Location/1730838914894511000.b2eba5ea-04b1-40cf-9714-6b609ff076d6", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914894511000.b2eba5ea-04b1-40cf-9714-6b609ff076d6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914894938000.8ea784ee-7bec-4823-b7e0-df2fda766fd4", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914894938000.8ea784ee-7bec-4823-b7e0-df2fda766fd4", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914894511000.b2eba5ea-04b1-40cf-9714-6b609ff076d6" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "ServiceRequest/1730838914899310000.a320a280-30de-4f3b-b2dd-927de5ce8c9e", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1730838914899310000.a320a280-30de-4f3b-b2dd-927de5ce8c9e", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ { - "url" : "OBR.21", - "valueString" : "ROSE MEDICAL CENTER (MCOE)" - }, { - "url" : "OBR.22", - "valueString" : "20210810062500-0600" - }, { - "url" : "OBR.25", - "valueId" : "P" - }, { - "url" : "OBR.26", - "extension" : [ { - "url" : "prl-1-parent-observation-identifier", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BCEXT", - "display" : "EXTENDED BLOOD CULTURE" - } ], - "text" : "EXTENDED BLOOD CULTURE" - } - }, { - "url" : "prl-2-parent-observation-sub-identifier", - "valueString" : "1" - }, { - "url" : "prl-3-parent-observation-descriptor", - "valueString" : "ENTRAFVRE" - } ] - }, { - "url" : "OBR.29", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "21:AA:B0029251Sm12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "RML" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] + "issued": "2021-08-10T06:25:00-06:00", + "_issued": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20210810062500-0600" } - } - }, { - "url" : "OBR.10", - "valueReference" : { - "reference" : "Practitioner/1730838914898170000.2e657f56-1950-4882-ab3b-107c2e7b7a27" - } - }, { - "url" : "OBR.13", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "SEPTIC SHOCK" - } ] - } - }, { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1730838914898968000.0f86179b-2a68-423c-b468-019d9425a5ae" - } - }, { - "url" : "OBR.18", - "valueString" : "21:AA:B0029251Sm12776123" - }, { - "url" : "OBR.19", - "valueString" : "09339017" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.5" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] - }, - "value" : "21:AA:B0029251S.5" - } ], - "status" : "unknown", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VGP-75", - "display" : "VITEK2 AST-GP75" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "requester" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "1" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "303" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "4362727" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ { - "url" : "XTN.2", - "valueString" : "WPN" - }, { - "url" : "XTN.3", - "valueString" : "PH" - }, { - "url" : "XTN.7", - "valueString" : "4362727" - }, { - "url" : "XTN.9", - "valueString" : "Hospital Line" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" - } ], - "system" : "phone", - "use" : "work" - } - } ], - "reference" : "Practitioner/1730838914896284000.98a2bd77-bd61-4c53-ba11-c55a7c9a32fb" - }, - "reasonCode" : [ { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "I10" - } ], - "system" : "http://hl7.org/fhir/sid/icd-10-cm", - "version" : "38", - "code" : "R6521", - "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK" - } ] - } ] - } - }, { - "fullUrl" : "Location/1730838914895784000.e72d6937-c80b-4d3b-9cb3-f89dd8843689", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914895784000.e72d6937-c80b-4d3b-9cb3-f89dd8843689", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] - } - } - }, { - "fullUrl" : "Practitioner/1730838914896284000.98a2bd77-bd61-4c53-ba11-c55a7c9a32fb", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914896284000.98a2bd77-bd61-4c53-ba11-c55a7c9a32fb", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.16" - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914895784000.e72d6937-c80b-4d3b-9cb3-f89dd8843689" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] + ] }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "Practitioner/1730838914898170000.2e657f56-1950-4882-ab3b-107c2e7b7a27", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914898170000.2e657f56-1950-4882-ab3b-107c2e7b7a27", - "identifier" : [ { - "value" : "ER" - } ] - } - }, { - "fullUrl" : "Location/1730838914898532000.a93144a7-8f2a-4e6e-9aea-9cd49b87f109", - "resource" : { - "resourceType" : "Location", - "id" : "1730838914898532000.a93144a7-8f2a-4e6e-9aea-9cd49b87f109", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "name" : "RML", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + "specimen": [ + { + "reference": "Specimen/1732567199246837000.00095c08-1656-4163-ad56-d0d65b250a1f" + }, + { + "reference": "Specimen/1732567199234286000.149b36f1-3353-448f-bade-e0b95e7922fa" + } + ], + "result": [ + { + "reference": "Observation/1732567199195790000.44b30c3b-2f5c-48ba-a04f-d6a0edb924e1" + }, + { + "reference": "Observation/1732567199201535000.07b1653e-e7a8-4c04-ac81-a46d6bc1f724" + }, + { + "reference": "Observation/1732567199205607000.da0c61c1-eede-4f6d-a884-8780b69fc92d" + }, + { + "reference": "Observation/1732567199211107000.7231f3ff-1cf8-4db9-a452-f19059611bf2" + }, + { + "reference": "Observation/1732567199215596000.2c9e9f7e-00f6-4758-9689-90b5a8193f09" + } + ] } } - }, { - "fullUrl" : "Practitioner/1730838914898968000.0f86179b-2a68-423c-b468-019d9425a5ae", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1730838914898968000.0f86179b-2a68-423c-b468-019d9425a5ae", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ { - "url" : "XCN.3", - "valueString" : "Christopher" - }, { - "url" : "XCN.4", - "valueString" : "Beau" - }, { - "url" : "XCN.21", - "valueString" : "MD" - }, { - "url" : "XCN.10", - "valueString" : "L" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1730838914898532000.a93144a7-8f2a-4e6e-9aea-9cd49b87f109" - } - } ], - "type" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true - } ], - "code" : "NPI" - } ] - }, - "system" : "NPI", - "value" : "1871759365" - } ], - "name" : [ { - "use" : "official", - "family" : "Willison", - "given" : [ "Christopher", "Beau" ], - "suffix" : [ "MD" ] - } ] - } - }, { - "fullUrl" : "DiagnosticReport/1730838914906397000.8c90cfa9-33e8-4fac-a189-93e53f35fa0e", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1730838914906397000.8c90cfa9-33e8-4fac-a189-93e53f35fa0e", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] - }, - "value" : "21:AA:B0029251S.1" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "21:AA:B0029251S" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] - }, - "value" : "21:AA:B0029251S" - } ], - "basedOn" : [ { - "reference" : "ServiceRequest/1730838914873315000.918059d6-e146-4bf4-b591-565d508866e0" - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BCEXT", - "display" : "EXTENDED BLOOD CULTURE" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectivePeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - } - }, - "issued" : "2021-08-10T06:25:00-06:00", - "_issued" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - }, - "specimen" : [ { - "reference" : "Specimen/1730838914858965000.b61713c0-f060-4d4b-b6e4-90522af63456" - }, { - "reference" : "Specimen/1730838914855305000.bb5142ae-411f-4ac4-b135-11c0a3c86011" - } ], - "result" : [ { - "reference" : "Observation/1730838914729489000.2eb7ce94-28f7-4662-bfb6-4613a8cb9a9d" - }, { - "reference" : "Observation/1730838914734896000.8ade4c13-8de9-451c-8e52-e7a17049b8de" - }, { - "reference" : "Observation/1730838914738722000.8ab918ff-884f-41ce-bf64-2eaa180562d8" - } ] - } - }, { - "fullUrl" : "DiagnosticReport/1730838914907614000.b8bd28ef-e261-4f29-924c-61000c4723e4", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1730838914907614000.b8bd28ef-e261-4f29-924c-61000c4723e4", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] - }, - "value" : "21:AA:B0029251S.2" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "21:AA:B0029251S" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] - }, - "value" : "21:AA:B0029251S" - } ], - "basedOn" : [ { - "reference" : "ServiceRequest/1730838914882579000.4700ff5d-bc63-4475-9e6c-634a429efc7f" - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "600-7", - "display" : "Bacteria identified in Blood by Culture" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "BLOODC", - "display" : "BLOOD CULTURE" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectivePeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - } - }, - "issued" : "2021-08-10T06:25:00-06:00", - "_issued" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - }, - "specimen" : [ { - "reference" : "Specimen/1730838914860632000.4eb39857-6061-47de-95fe-b759dcae97d4" - }, { - "reference" : "Specimen/1730838914855587000.eefaaaf7-f224-4787-b808-222cfd8ce934" - } ], - "result" : [ { - "reference" : "Observation/1730838914746679000.6cb47aca-33cd-460f-8769-e80973694db3" - }, { - "reference" : "Observation/1730838914750457000.11d7a4c7-d29d-406f-a873-41d6f778e1f6" - }, { - "reference" : "Observation/1730838914754255000.1450c286-7c87-4dac-a1ee-e4ae783ece39" - }, { - "reference" : "Observation/1730838914757918000.71ba2d30-22a8-4a57-9b4f-ac2ea4a6af9e" - }, { - "reference" : "Observation/1730838914761281000.8248137a-4beb-4915-a234-653c14b8991a" - }, { - "reference" : "Observation/1730838914764878000.6afb20de-601f-4d38-bafd-690a16277184" - }, { - "reference" : "Observation/1730838914769074000.2cbaf2ff-ff70-4bfd-a814-c2f3cfb51c50" - } ] - } - }, { - "fullUrl" : "DiagnosticReport/1730838914908842000.dbd3e970-1b66-45f6-9070-3aa23495dc1a", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1730838914908842000.dbd3e970-1b66-45f6-9070-3aa23495dc1a", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" - } ] - }, - "value" : "09339017" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.3" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] - }, - "value" : "21:AA:B0029251S.3" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" - } ] - }, - "value" : "21:AA:B0029251S" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.144" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" - } ] - }, - "value" : "21:AA:B0029251S" - } ], - "basedOn" : [ { - "reference" : "ServiceRequest/1730838914891090000.81493f70-edbd-4707-bda1-b85f6f63c135" - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "77202-0", - "display" : "Laboratory comment [Text] in Report Narrative" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VERGPCOM", - "display" : "COMMENT" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectivePeriod" : { - "start" : "2028-08-02T02:52:01-06:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - }, - "end" : "2028-08-02T02:52:01-06:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280802025201-0600" - } ] - } - }, - "issued" : "2021-08-10T06:25:00-06:00", - "_issued" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - }, - "specimen" : [ { - "reference" : "Specimen/1730838914861805000.dbabdc5e-06c6-4747-90c2-46fffbac67ec" - }, { - "reference" : "Specimen/1730838914855835000.d443d135-470f-4f93-8cd5-f103f45247a4" - } ], - "result" : [ { - "reference" : "Observation/1730838914778922000.ecf78aac-289c-40ab-96cc-09e0898af48e" - }, { - "reference" : "Observation/1730838914782556000.dbc35447-b50c-4640-8d1c-cb706d3bb6f5" - }, { - "reference" : "Observation/1730838914786102000.4b49ec3b-8e55-4b36-9fbf-962835c9ebdf" - }, { - "reference" : "Observation/1730838914789774000.c044d0e9-a99c-4a74-8886-cf10726f0c49" - }, { - "reference" : "Observation/1730838914793666000.5f0b4487-9875-4569-b863-77aba7499d86" - }, { - "reference" : "Observation/1730838914797256000.c05d181b-9b59-460e-9f74-7e587e5c5afa" - }, { - "reference" : "Observation/1730838914800181000.fc301ec4-32f0-411c-907e-deb1c242e47b" - }, { - "reference" : "Observation/1730838914802931000.82b080f0-5516-4a8d-88b2-a72d6b99b35e" - }, { - "reference" : "Observation/1730838914805532000.6c345aea-068c-4186-aba0-efa2b8496e16" - }, { - "reference" : "Observation/1730838914808096000.7f370244-46ef-47e3-8e04-ff4d9f94994d" - } ] - } - }, { - "fullUrl" : "DiagnosticReport/1730838914909748000.ef38cfa8-4f7f-4064-b60e-7427d1553444", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1730838914909748000.ef38cfa8-4f7f-4064-b60e-7427d1553444", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.4" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] - }, - "value" : "21:AA:B0029251S.4" - } ], - "basedOn" : [ { - "reference" : "ServiceRequest/1730838914895288000.23b14643-50db-435a-85a3-d849290aaa7a" - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2.40", - "code" : "50545-3", - "display" : "Bacterial susceptibility panel by Minimum inhibitory concentration (MIC)" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "MDAPTOE", - "display" : "MIC DAPTOMYCIN E TEST" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectivePeriod" : { - "start" : "2028-08-07T16:36:01-06:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - }, - "end" : "2028-08-07T16:36:01-06:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, - "issued" : "2021-08-10T06:25:00-06:00", - "_issued" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - }, - "specimen" : [ { - "reference" : "Specimen/1730838914856068000.a6bf9c05-751d-4988-aa0c-d2c9e5b487ba" - } ], - "result" : [ { - "reference" : "Observation/1730838914810702000.dd0bc552-e245-459e-a91c-ce9357b7b433" - } ] - } - }, { - "fullUrl" : "DiagnosticReport/1730838914910588000.703ca7ee-7e10-4e6a-888b-4f1d1e4ff655", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1730838914910588000.703ca7ee-7e10-4e6a-888b-4f1d1e4ff655", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "M12776123.5" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" - } ] - }, - "value" : "21:AA:B0029251S.5" - } ], - "basedOn" : [ { - "reference" : "ServiceRequest/1730838914899310000.a320a280-30de-4f3b-b2dd-927de5ce8c9e" - } ], - "status" : "preliminary", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" - } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "5.67", - "code" : "VGP-75", - "display" : "VITEK2 AST-GP75" - } ] - }, - "subject" : { - "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949" - }, - "encounter" : { - "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446" - }, - "effectivePeriod" : { - "start" : "2028-08-07T16:36:01-06:00", - "_start" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - }, - "end" : "2028-08-07T16:36:01-06:00", - "_end" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20280807163601-0600" - } ] - } - }, - "issued" : "2021-08-10T06:25:00-06:00", - "_issued" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20210810062500-0600" - } ] - }, - "specimen" : [ { - "reference" : "Specimen/1730838914863219000.d24a9b32-1921-44a3-8b6f-e33035e4b426" - }, { - "reference" : "Specimen/1730838914856307000.7450cc07-5ed0-4c7e-b079-968341c133d5" - } ], - "result" : [ { - "reference" : "Observation/1730838914813405000.cd610eea-1663-4f56-87c7-e49e6c8e1a86" - }, { - "reference" : "Observation/1730838914816026000.3fad926a-e5dc-46a4-a7a8-983f6abfbe68" - }, { - "reference" : "Observation/1730838914818617000.c257468e-544b-40c6-b8ba-08a89f84f856" - }, { - "reference" : "Observation/1730838914821243000.98539426-c7b0-4498-ad7a-111a075efe5a" - }, { - "reference" : "Observation/1730838914823945000.470c165d-7229-45ff-bbb5-662e8af72ed4" - } ] - } - } ] + ] } \ No newline at end of file diff --git a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir index 517d51f9e24..1e2c444e1d7 100644 --- a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir +++ b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir @@ -1,8 +1,8 @@ { "resourceType": "Bundle", - "id": "1730840482967804000.bd10b08d-ac1d-4bac-99bf-ccb13250308c", + "id": "1732567199078686000.79335908-9cc3-4f82-a28d-decc522dc8e1", "meta": { - "lastUpdated": "2024-11-05T16:01:22.967-05:00" + "lastUpdated": "2024-11-25T15:39:59.078-05:00" }, "identifier": { "system": "https://reportstream.cdc.gov/prime-router", @@ -12,10 +12,10 @@ "timestamp": "2024-04-03T16:53:05.000-04:00", "entry": [ { - "fullUrl": "MessageHeader/1730840482969630000.66d13d90-d26a-4d3d-a866-f42426399477", + "fullUrl": "MessageHeader/1732567199079880000.8b597c11-7c0f-4b45-9cff-085e981064d4", "resource": { "resourceType": "MessageHeader", - "id": "1730840482969630000.66d13d90-d26a-4d3d-a866-f42426399477", + "id": "1732567199079880000.8b597c11-7c0f-4b45-9cff-085e981064d4", "meta": { "tag": [ { @@ -92,12 +92,12 @@ "name": "AIMS.INTEGRATION.PRD", "endpoint": "urn:oid:2.16.840.1.114222.4.3.15.1", "receiver": { - "reference": "Organization/1730840482968970000.5fb818b5-bc21-4137-9fda-a8cbc7fb0a21" + "reference": "Organization/1732567199079656000.7987cb25-eb4f-4c44-b89b-dbaa548b2842" } } ], "sender": { - "reference": "Organization/1730840482968069000.567f2701-476d-4b56-a30f-9be882394c66" + "reference": "Organization/1732567199079075000.031bd4a5-053f-4331-8a58-aba25338f89f" }, "source": { "extension": [ @@ -125,10 +125,10 @@ } }, { - "fullUrl": "Organization/1730840482968069000.567f2701-476d-4b56-a30f-9be882394c66", + "fullUrl": "Organization/1732567199079075000.031bd4a5-053f-4331-8a58-aba25338f89f", "resource": { "resourceType": "Organization", - "id": "1730840482968069000.567f2701-476d-4b56-a30f-9be882394c66", + "id": "1732567199079075000.031bd4a5-053f-4331-8a58-aba25338f89f", "identifier": [ { "extension": [ @@ -160,10 +160,10 @@ } }, { - "fullUrl": "Organization/1730840482968970000.5fb818b5-bc21-4137-9fda-a8cbc7fb0a21", + "fullUrl": "Organization/1732567199079656000.7987cb25-eb4f-4c44-b89b-dbaa548b2842", "resource": { "resourceType": "Organization", - "id": "1730840482968970000.5fb818b5-bc21-4137-9fda-a8cbc7fb0a21", + "id": "1732567199079656000.7987cb25-eb4f-4c44-b89b-dbaa548b2842", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -202,16 +202,16 @@ } }, { - "fullUrl": "Provenance/1730840482971025000.d5408899-a9e9-4700-aab4-6b6d46aa9e0b", + "fullUrl": "Provenance/1732567199082302000.bbde341d-fc20-4dbc-ae24-bce2e16a49fc", "resource": { "resourceType": "Provenance", - "id": "1730840482971025000.d5408899-a9e9-4700-aab4-6b6d46aa9e0b", + "id": "1732567199082302000.bbde341d-fc20-4dbc-ae24-bce2e16a49fc", "target": [ { - "reference": "MessageHeader/1730840482969630000.66d13d90-d26a-4d3d-a866-f42426399477" + "reference": "MessageHeader/1732567199079880000.8b597c11-7c0f-4b45-9cff-085e981064d4" }, { - "reference": "DiagnosticReport/1730840482995346000.7eb1816c-017a-4a77-ad2a-06f5b83d23d3" + "reference": "DiagnosticReport/1732567199117955000.4e7e4845-de7a-4fe6-b346-46ef52fd8221" } ], "recorded": "2024-04-03T20:53:05Z", @@ -233,7 +233,7 @@ ] }, "who": { - "reference": "Organization/1730840482970825000.c5b43eba-74ae-4b95-98ae-62ad0cdb552e" + "reference": "Organization/1732567199081675000.3015d9ea-0890-4418-a827-bb712de9c5b2" } } ], @@ -241,17 +241,17 @@ { "role": "source", "what": { - "reference": "Device/1730840482971368000.579dcbcd-8f3e-42a5-aaeb-786d02605bba" + "reference": "Device/1732567199083336000.ec657ea8-8b9a-46c7-b1d6-8a7afd0a73ea" } } ] } }, { - "fullUrl": "Organization/1730840482970825000.c5b43eba-74ae-4b95-98ae-62ad0cdb552e", + "fullUrl": "Organization/1732567199081675000.3015d9ea-0890-4418-a827-bb712de9c5b2", "resource": { "resourceType": "Organization", - "id": "1730840482970825000.c5b43eba-74ae-4b95-98ae-62ad0cdb552e", + "id": "1732567199081675000.3015d9ea-0890-4418-a827-bb712de9c5b2", "identifier": [ { "extension": [ @@ -283,23 +283,23 @@ } }, { - "fullUrl": "Organization/1730840482971298000.3fc5428f-cd99-4d5a-ae1f-7fe51362e2bc", + "fullUrl": "Organization/1732567199083193000.f152bdd0-d09c-4f95-bcc4-b24c89a7c516", "resource": { "resourceType": "Organization", - "id": "1730840482971298000.3fc5428f-cd99-4d5a-ae1f-7fe51362e2bc", + "id": "1732567199083193000.f152bdd0-d09c-4f95-bcc4-b24c89a7c516", "name": "CAREEVOLUTION" } }, { - "fullUrl": "Device/1730840482971368000.579dcbcd-8f3e-42a5-aaeb-786d02605bba", + "fullUrl": "Device/1732567199083336000.ec657ea8-8b9a-46c7-b1d6-8a7afd0a73ea", "resource": { "resourceType": "Device", - "id": "1730840482971368000.579dcbcd-8f3e-42a5-aaeb-786d02605bba", + "id": "1732567199083336000.ec657ea8-8b9a-46c7-b1d6-8a7afd0a73ea", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", "valueReference": { - "reference": "Organization/1730840482971298000.3fc5428f-cd99-4d5a-ae1f-7fe51362e2bc" + "reference": "Organization/1732567199083193000.f152bdd0-d09c-4f95-bcc4-b24c89a7c516" } } ], @@ -333,11 +333,11 @@ } }, { - "fullUrl": "Provenance/1730840482971850000.23d06f85-bbe6-4f41-8768-288009120c47", + "fullUrl": "Provenance/1732567199084850000.0e2e83de-ecf2-40f4-b7b1-dc0c568fb2f0", "resource": { "resourceType": "Provenance", - "id": "1730840482971850000.23d06f85-bbe6-4f41-8768-288009120c47", - "recorded": "2024-11-05T16:01:22Z", + "id": "1732567199084850000.0e2e83de-ecf2-40f4-b7b1-dc0c568fb2f0", + "recorded": "2024-11-25T15:39:59Z", "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], @@ -359,17 +359,17 @@ ] }, "who": { - "reference": "Organization/1730840482971748000.af49a07c-2bcf-4309-a7bc-dba910fa7b7d" + "reference": "Organization/1732567199084698000.8d1b3577-faee-4bb0-88c5-e7b560428962" } } ] } }, { - "fullUrl": "Organization/1730840482971748000.af49a07c-2bcf-4309-a7bc-dba910fa7b7d", + "fullUrl": "Organization/1732567199084698000.8d1b3577-faee-4bb0-88c5-e7b560428962", "resource": { "resourceType": "Organization", - "id": "1730840482971748000.af49a07c-2bcf-4309-a7bc-dba910fa7b7d", + "id": "1732567199084698000.8d1b3577-faee-4bb0-88c5-e7b560428962", "identifier": [ { "value": "CDC PRIME - Atlanta" @@ -389,10 +389,10 @@ } }, { - "fullUrl": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2", + "fullUrl": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1", "resource": { "resourceType": "Patient", - "id": "1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2", + "id": "1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1", "identifier": [ { "extension": [ @@ -480,16 +480,16 @@ } }, { - "fullUrl": "Provenance/1730840482975501000.9121457c-ecc3-46e7-9ebe-61e77af1d855", + "fullUrl": "Provenance/1732567199097970000.9d66059f-8440-4a7c-b62a-e5be1022090e", "resource": { "resourceType": "Provenance", - "id": "1730840482975501000.9121457c-ecc3-46e7-9ebe-61e77af1d855", + "id": "1732567199097970000.9d66059f-8440-4a7c-b62a-e5be1022090e", "target": [ { - "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2" + "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1" } ], - "recorded": "2024-11-05T16:01:22Z", + "recorded": "2024-11-25T15:39:59Z", "activity": { "coding": [ { @@ -501,10 +501,10 @@ } }, { - "fullUrl": "Observation/1730840482977261000.587613a2-84cf-4698-9a9c-429a0958796c", + "fullUrl": "Observation/1732567199099684000.726788cf-b6ea-4b48-9d2d-6c90204aa174", "resource": { "resourceType": "Observation", - "id": "1730840482977261000.587613a2-84cf-4698-9a9c-429a0958796c", + "id": "1732567199099684000.726788cf-b6ea-4b48-9d2d-6c90204aa174", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", @@ -583,14 +583,14 @@ ] }, "subject": { - "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2" + "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1" }, "performer": [ { - "reference": "Organization/1730840482977632000.67832a3d-746e-4dbc-85e7-3bafe6e8b70f" + "reference": "Organization/1732567199100029000.04fe3eb6-b0d6-48df-9aa0-dd79c48d3521" }, { - "reference": "Organization/1730840482978744000.45256c12-5840-4ead-b20c-fabddd1361f8" + "reference": "Organization/1732567199100552000.5f883c32-4638-4056-ba50-9c0ab344f4f0" } ], "valueCodeableConcept": { @@ -654,10 +654,10 @@ } }, { - "fullUrl": "Organization/1730840482977632000.67832a3d-746e-4dbc-85e7-3bafe6e8b70f", + "fullUrl": "Organization/1732567199100029000.04fe3eb6-b0d6-48df-9aa0-dd79c48d3521", "resource": { "resourceType": "Organization", - "id": "1730840482977632000.67832a3d-746e-4dbc-85e7-3bafe6e8b70f", + "id": "1732567199100029000.04fe3eb6-b0d6-48df-9aa0-dd79c48d3521", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", @@ -688,10 +688,10 @@ } }, { - "fullUrl": "Organization/1730840482978744000.45256c12-5840-4ead-b20c-fabddd1361f8", + "fullUrl": "Organization/1732567199100552000.5f883c32-4638-4056-ba50-9c0ab344f4f0", "resource": { "resourceType": "Organization", - "id": "1730840482978744000.45256c12-5840-4ead-b20c-fabddd1361f8", + "id": "1732567199100552000.5f883c32-4638-4056-ba50-9c0ab344f4f0", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -742,10 +742,10 @@ } }, { - "fullUrl": "Observation/1730840482981943000.d4449e8e-538d-4b4e-9d01-87b74dcb819e", + "fullUrl": "Observation/1732567199102064000.822d1d82-3f84-4056-8281-aef4086bbccc", "resource": { "resourceType": "Observation", - "id": "1730840482981943000.d4449e8e-538d-4b4e-9d01-87b74dcb819e", + "id": "1732567199102064000.822d1d82-3f84-4056-8281-aef4086bbccc", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", @@ -810,14 +810,14 @@ ] }, "subject": { - "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2" + "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1" }, "performer": [ { - "reference": "Organization/1730840482982696000.8684af44-2b60-4160-88a3-8b139ff01778" + "reference": "Organization/1732567199102434000.b4b635cf-6d0b-401c-97b0-c796896d9eb3" }, { - "reference": "Organization/1730840482984100000.e4c0b787-44da-4e92-8a68-40941df44b12" + "reference": "Organization/1732567199102928000.e180b963-0d46-422e-912c-f83bb097632d" } ], "valueQuantity": { @@ -829,10 +829,10 @@ } }, { - "fullUrl": "Organization/1730840482982696000.8684af44-2b60-4160-88a3-8b139ff01778", + "fullUrl": "Organization/1732567199102434000.b4b635cf-6d0b-401c-97b0-c796896d9eb3", "resource": { "resourceType": "Organization", - "id": "1730840482982696000.8684af44-2b60-4160-88a3-8b139ff01778", + "id": "1732567199102434000.b4b635cf-6d0b-401c-97b0-c796896d9eb3", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", @@ -863,10 +863,10 @@ } }, { - "fullUrl": "Organization/1730840482984100000.e4c0b787-44da-4e92-8a68-40941df44b12", + "fullUrl": "Organization/1732567199102928000.e180b963-0d46-422e-912c-f83bb097632d", "resource": { "resourceType": "Organization", - "id": "1730840482984100000.e4c0b787-44da-4e92-8a68-40941df44b12", + "id": "1732567199102928000.e180b963-0d46-422e-912c-f83bb097632d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -917,23 +917,23 @@ } }, { - "fullUrl": "Specimen/1730840482985425000.76564375-3fc9-41ef-8605-864178bc49e0", + "fullUrl": "Specimen/1732567199104284000.e9ddfbd6-5215-49da-a57a-6c905fb774c0", "resource": { "resourceType": "Specimen", - "id": "1730840482985425000.76564375-3fc9-41ef-8605-864178bc49e0", + "id": "1732567199104284000.e9ddfbd6-5215-49da-a57a-6c905fb774c0", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } ], - "collection" : { - "collectedDateTime" : "2024-04-03T12:00:00-04:00", - "_collectedDateTime" : { - "extension" : [ + "collection": { + "collectedDateTime": "2024-04-03T12:00:00-04:00", + "_collectedDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20240403120000-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20240403120000-0400" } ] } @@ -941,10 +941,10 @@ } }, { - "fullUrl": "Specimen/1730840482986715000.3a41d073-d8ad-4808-83b6-676c0558ec36", + "fullUrl": "Specimen/1732567199108106000.c7d3f958-4832-4497-8628-cba7ba4dbc59", "resource": { "resourceType": "Specimen", - "id": "1730840482986715000.3a41d073-d8ad-4808-83b6-676c0558ec36", + "id": "1732567199108106000.c7d3f958-4832-4497-8628-cba7ba4dbc59", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -1025,10 +1025,10 @@ } }, { - "fullUrl": "ServiceRequest/1730840482994132000.b61afbc8-b646-4d5f-b92f-c629e93b3455", + "fullUrl": "ServiceRequest/1732567199115184000.cc53b012-30f0-4ed7-8b57-f8528abade03", "resource": { "resourceType": "ServiceRequest", - "id": "1730840482994132000.b61afbc8-b646-4d5f-b92f-c629e93b3455", + "id": "1732567199115184000.cc53b012-30f0-4ed7-8b57-f8528abade03", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", @@ -1040,7 +1040,7 @@ { "url": "orc-21-ordering-facility-name", "valueReference": { - "reference": "Organization/1730840482991865000.3d35eaba-8a9d-4845-843f-cf1c07a45dac" + "reference": "Organization/1732567199111536000.bf082892-20a9-423d-be6e-9b1aa9b78416" } }, { @@ -1054,7 +1054,7 @@ { "url": "orc-12-ordering-provider", "valueReference": { - "reference": "Practitioner/1730840482992620000.77d3afc2-8082-42ae-9214-2d06529d2535" + "reference": "Practitioner/1732567199112302000.523eb857-c8d3-4f30-bc18-f57614f42476" } } ] @@ -1086,18 +1086,10 @@ ] } }, - { - "url": "OBR.22", - "valueString": "20240403120000-0400" - }, - { - "url": "OBR.25", - "valueId": "F" - }, { "url": "OBR.16", "valueReference": { - "reference": "Practitioner/1730840482993428000.13891cf0-010b-4865-8388-10ac7550b2d6" + "reference": "Practitioner/1732567199112986000.e9237c63-253f-47e7-8889-c444d6391ade" } }, { @@ -1118,6 +1110,26 @@ ] } } + }, + { + "url": "OBR.7", + "valueDateTime": "2024-04-03T12:00:00-04:00", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20240403120000-0400" + } + ] + } + }, + { + "url": "OBR.22", + "valueString": "20240403120000-0400" + }, + { + "url": "OBR.25", + "valueId": "F" } ] } @@ -1179,7 +1191,7 @@ ] }, "subject": { - "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2" + "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1" }, "requester": { "extension": [ @@ -1203,15 +1215,15 @@ } } ], - "reference": "PractitionerRole/1730840482987122000.c1a85d78-569d-45ce-802c-d8ca64277f6a" + "reference": "PractitionerRole/1732567199108532000.a2f266d2-c3bb-4c3a-8195-96979068cc4f" } } }, { - "fullUrl": "Practitioner/1730840482987736000.7aece847-5913-4619-ba8c-08355d5f1ebd", + "fullUrl": "Practitioner/1732567199109106000.0bc11e45-5c4f-48dd-a28a-d0906c288123", "resource": { "resourceType": "Practitioner", - "id": "1730840482987736000.7aece847-5913-4619-ba8c-08355d5f1ebd", + "id": "1732567199109106000.0bc11e45-5c4f-48dd-a28a-d0906c288123", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -1221,10 +1233,10 @@ } }, { - "fullUrl": "Organization/1730840482988591000.b14b3379-27d2-4dc3-b133-fbca0b3b08f2", + "fullUrl": "Organization/1732567199109971000.fce3c469-f00a-463d-a6a3-4fc33a0bdeab", "resource": { "resourceType": "Organization", - "id": "1730840482988591000.b14b3379-27d2-4dc3-b133-fbca0b3b08f2", + "id": "1732567199109971000.fce3c469-f00a-463d-a6a3-4fc33a0bdeab", "name": "SA.OTCSelfReport", "telecom": [ { @@ -1248,45 +1260,45 @@ } }, { - "fullUrl": "PractitionerRole/1730840482987122000.c1a85d78-569d-45ce-802c-d8ca64277f6a", + "fullUrl": "PractitionerRole/1732567199108532000.a2f266d2-c3bb-4c3a-8195-96979068cc4f", "resource": { "resourceType": "PractitionerRole", - "id": "1730840482987122000.c1a85d78-569d-45ce-802c-d8ca64277f6a", + "id": "1732567199108532000.a2f266d2-c3bb-4c3a-8195-96979068cc4f", "practitioner": { - "reference": "Practitioner/1730840482987736000.7aece847-5913-4619-ba8c-08355d5f1ebd" + "reference": "Practitioner/1732567199109106000.0bc11e45-5c4f-48dd-a28a-d0906c288123" }, "organization": { - "reference": "Organization/1730840482988591000.b14b3379-27d2-4dc3-b133-fbca0b3b08f2" + "reference": "Organization/1732567199109971000.fce3c469-f00a-463d-a6a3-4fc33a0bdeab" } } }, { - "fullUrl": "Organization/1730840482991865000.3d35eaba-8a9d-4845-843f-cf1c07a45dac", + "fullUrl": "Organization/1732567199111536000.bf082892-20a9-423d-be6e-9b1aa9b78416", "resource": { "resourceType": "Organization", - "id": "1730840482991865000.3d35eaba-8a9d-4845-843f-cf1c07a45dac", + "id": "1732567199111536000.bf082892-20a9-423d-be6e-9b1aa9b78416", "name": "SA.OTCSelfReport" } }, { - "fullUrl": "Practitioner/1730840482992620000.77d3afc2-8082-42ae-9214-2d06529d2535", + "fullUrl": "Practitioner/1732567199112302000.523eb857-c8d3-4f30-bc18-f57614f42476", "resource": { "resourceType": "Practitioner", - "id": "1730840482992620000.77d3afc2-8082-42ae-9214-2d06529d2535" + "id": "1732567199112302000.523eb857-c8d3-4f30-bc18-f57614f42476" } }, { - "fullUrl": "Practitioner/1730840482993428000.13891cf0-010b-4865-8388-10ac7550b2d6", + "fullUrl": "Practitioner/1732567199112986000.e9237c63-253f-47e7-8889-c444d6391ade", "resource": { "resourceType": "Practitioner", - "id": "1730840482993428000.13891cf0-010b-4865-8388-10ac7550b2d6" + "id": "1732567199112986000.e9237c63-253f-47e7-8889-c444d6391ade" } }, { - "fullUrl": "DiagnosticReport/1730840482995346000.7eb1816c-017a-4a77-ad2a-06f5b83d23d3", + "fullUrl": "DiagnosticReport/1732567199117955000.4e7e4845-de7a-4fe6-b346-46ef52fd8221", "resource": { "resourceType": "DiagnosticReport", - "id": "1730840482995346000.7eb1816c-017a-4a77-ad2a-06f5b83d23d3", + "id": "1732567199117955000.4e7e4845-de7a-4fe6-b346-46ef52fd8221", "identifier": [ { "extension": [ @@ -1320,7 +1332,7 @@ ], "basedOn": [ { - "reference": "ServiceRequest/1730840482994132000.b61afbc8-b646-4d5f-b92f-c629e93b3455" + "reference": "ServiceRequest/1732567199115184000.cc53b012-30f0-4ed7-8b57-f8528abade03" } ], "status": "final", @@ -1345,7 +1357,7 @@ ] }, "subject": { - "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2" + "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1" }, "effectiveDateTime": "2024-04-03T12:00:00-04:00", "_effectiveDateTime": { @@ -1367,18 +1379,18 @@ }, "specimen": [ { - "reference": "Specimen/1730840482986715000.3a41d073-d8ad-4808-83b6-676c0558ec36" + "reference": "Specimen/1732567199108106000.c7d3f958-4832-4497-8628-cba7ba4dbc59" }, { - "reference": "Specimen/1730840482985425000.76564375-3fc9-41ef-8605-864178bc49e0" + "reference": "Specimen/1732567199104284000.e9ddfbd6-5215-49da-a57a-6c905fb774c0" } ], "result": [ { - "reference": "Observation/1730840482977261000.587613a2-84cf-4698-9a9c-429a0958796c" + "reference": "Observation/1732567199099684000.726788cf-b6ea-4b48-9d2d-6c90204aa174" }, { - "reference": "Observation/1730840482981943000.d4449e8e-538d-4b4e-9d01-87b74dcb819e" + "reference": "Observation/1732567199102064000.822d1d82-3f84-4056-8281-aef4086bbccc" } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir index 34218b7af92..9ef0b0fa1aa 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir @@ -1,8 +1,8 @@ { "resourceType": "Bundle", - "id": "1730739114749225000.7a1d88aa-6583-4af7-9ea6-d57fe9b47681", + "id": "1732560543252705000.5512e3cc-f417-41f7-82f6-be5e073ca352", "meta": { - "lastUpdated": "2024-11-04T11:51:54.749-05:00" + "lastUpdated": "2024-11-25T13:49:03.252-05:00" }, "identifier": { "system": "https://reportstream.cdc.gov/prime-router", @@ -12,10 +12,10 @@ "timestamp": "2023-05-06T06:29:16.000-04:00", "entry": [ { - "fullUrl": "MessageHeader/1730739114751857000.7b58d391-0a13-43e5-bf93-2b019746e3d6", + "fullUrl": "MessageHeader/1732560543255592000.5f135c2e-06a9-420a-ba40-e65e430321b2", "resource": { "resourceType": "MessageHeader", - "id": "1730739114751857000.7b58d391-0a13-43e5-bf93-2b019746e3d6", + "id": "1732560543255592000.5f135c2e-06a9-420a-ba40-e65e430321b2", "meta": { "tag": [ { @@ -129,12 +129,12 @@ ], "name": "NATUS", "receiver": { - "reference": "Organization/1730739114751409000.0359f09c-68a7-456f-b8aa-abf17e915c4d" + "reference": "Organization/1732560543255125000.724b1882-ae9b-4c38-a49c-85cd2fa2edc9" } } ], "sender": { - "reference": "Organization/1730739114750075000.3593d09a-2416-4d98-8b94-e73572042565" + "reference": "Organization/1732560543253710000.36d373d9-88e5-4887-9327-c6c950bece4c" }, "source": { "extension": [ @@ -160,10 +160,10 @@ } }, { - "fullUrl": "Organization/1730739114750075000.3593d09a-2416-4d98-8b94-e73572042565", + "fullUrl": "Organization/1732560543253710000.36d373d9-88e5-4887-9327-c6c950bece4c", "resource": { "resourceType": "Organization", - "id": "1730739114750075000.3593d09a-2416-4d98-8b94-e73572042565", + "id": "1732560543253710000.36d373d9-88e5-4887-9327-c6c950bece4c", "identifier": [ { "extension": [ @@ -195,10 +195,10 @@ } }, { - "fullUrl": "Organization/1730739114751409000.0359f09c-68a7-456f-b8aa-abf17e915c4d", + "fullUrl": "Organization/1732560543255125000.724b1882-ae9b-4c38-a49c-85cd2fa2edc9", "resource": { "resourceType": "Organization", - "id": "1730739114751409000.0359f09c-68a7-456f-b8aa-abf17e915c4d", + "id": "1732560543255125000.724b1882-ae9b-4c38-a49c-85cd2fa2edc9", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -237,16 +237,150 @@ } }, { - "fullUrl": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250", + "fullUrl": "Provenance/1732560543259001000.473ec996-7023-473e-8c6e-4c0bd4a75d9e", + "resource": { + "resourceType": "Provenance", + "id": "1732560543259001000.473ec996-7023-473e-8c6e-4c0bd4a75d9e", + "recorded": "2023-05-06T05:29:16-05:00", + "activity": { + "coding": [ + { + "display": "OML^O21^OML_O21" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "author" + } + ] + }, + "who": { + "reference": "Organization/1732560543258607000.2394b58e-2157-46a0-b071-3592847f38d8" + } + } + ] + } + }, + { + "fullUrl": "Organization/1732560543258607000.2394b58e-2157-46a0-b071-3592847f38d8", + "resource": { + "resourceType": "Organization", + "id": "1732560543258607000.2394b58e-2157-46a0-b071-3592847f38d8", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Centracare" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "DNS" + } + ] + }, + "value": "centracare.com" + } + ] + } + }, + { + "fullUrl": "Provenance/1732560543260155000.01e7456b-28ac-469e-8b69-b7eb0f1b12c9", + "resource": { + "resourceType": "Provenance", + "id": "1732560543260155000.01e7456b-28ac-469e-8b69-b7eb0f1b12c9", + "recorded": "2024-11-25T13:49:03Z", + "policy": [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity": { + "coding": [ + { + "code": "v2-FHIR transformation" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" + } + ] + }, + "who": { + "reference": "Organization/1732560543259939000.1fbf02d3-7cbe-4dca-a296-9a2220c97c98" + } + } + ] + } + }, + { + "fullUrl": "Organization/1732560543259939000.1fbf02d3-7cbe-4dca-a296-9a2220c97c98", + "resource": { + "resourceType": "Organization", + "id": "1732560543259939000.1fbf02d3-7cbe-4dca-a296-9a2220c97c98", + "identifier": [ + { + "value": "CDC PRIME - Atlanta" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18", "resource": { "resourceType": "Patient", - "id": "1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250", + "id": "1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", "extension": [ { - "url": "PID.8" + "url": "PID.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "M" + } + ] + } }, { "url": "PID.24", @@ -305,7 +439,7 @@ }, "value": "11102779", "assigner": { - "reference": "Organization/1730739114755796000.79ba39f2-7250-4e19-8514-b7f67031d921" + "reference": "Organization/1732560543261153000.da99bd79-38b6-4889-a2e7-8deb4c70c564" } } ], @@ -415,10 +549,149 @@ } ], "multipleBirthInteger": 2, + "contact": [ + { + "extension": [ + { + "url": "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "code": "MTH", + "display": "Mother" + } + ], + "text": "Mother" + } + } + ], + "relationship": [ + { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "code": "MTH", + "display": "Mother" + } + ], + "text": "Mother" + } + ], + "name": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ + { + "url": "XPN.2", + "valueString": "SADIE" + }, + { + "url": "XPN.3", + "valueString": "S" + }, + { + "url": "XPN.7", + "valueString": "L" + } + ] + } + ], + "use": "official", + "family": "SMITH", + "given": [ + "SADIE", + "S" + ] + }, + "telecom": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "763" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5555555" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "5555555" + }, + { + "url": "XTN.9", + "valueString": "(763)555-5555" + } + ] + } + ], + "system": "phone" + } + ], + "address": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "555 STATE HIGHWAY 13" + } + ] + }, + { + "url": "XAD.7", + "valueCode": "H" + } + ] + } + ], + "use": "home", + "line": [ + "555 STATE HIGHWAY 13" + ], + "city": "DEER CREEK", + "district": "OTTER TAIL", + "state": "MN", + "postalCode": "56527-9657", + "country": "USA" + } + } + ], "link": [ { "other": { - "reference": "RelatedPerson/1730739114760257000.8359778f-13da-4073-b947-83d222795489" + "reference": "RelatedPerson/1732560543265351000.06e2e182-70b9-4c60-8d81-9615a5b252d0" }, "type": "seealso" } @@ -426,10 +699,10 @@ } }, { - "fullUrl": "Organization/1730739114755796000.79ba39f2-7250-4e19-8514-b7f67031d921", + "fullUrl": "Organization/1732560543261153000.da99bd79-38b6-4889-a2e7-8deb4c70c564", "resource": { "resourceType": "Organization", - "id": "1730739114755796000.79ba39f2-7250-4e19-8514-b7f67031d921", + "id": "1732560543261153000.da99bd79-38b6-4889-a2e7-8deb4c70c564", "identifier": [ { "extension": [ @@ -444,10 +717,10 @@ } }, { - "fullUrl": "RelatedPerson/1730739114760257000.8359778f-13da-4073-b947-83d222795489", + "fullUrl": "RelatedPerson/1732560543265351000.06e2e182-70b9-4c60-8d81-9615a5b252d0", "resource": { "resourceType": "RelatedPerson", - "id": "1730739114760257000.8359778f-13da-4073-b947-83d222795489", + "id": "1732560543265351000.06e2e182-70b9-4c60-8d81-9615a5b252d0", "identifier": [ { "extension": [ @@ -466,503 +739,180 @@ } }, { - "fullUrl": "ServiceRequest/1730739114772815000.f08fe69f-b60c-49b0-be01-539994cacce7", + "fullUrl": "Provenance/1732560543270089000.8f2030fa-a4b0-412a-b5d0-984806baf996", "resource": { - "resourceType": "ServiceRequest", - "id": "1730739114772815000.f08fe69f-b60c-49b0-be01-539994cacce7", - "extension": [ + "resourceType": "Provenance", + "id": "1732560543270089000.8f2030fa-a4b0-412a-b5d0-984806baf996", + "target": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode": "NW" - }, + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" + } + ], + "recorded": "2024-11-25T13:49:03Z", + "activity": { + "coding": [ + { + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" + } + ] + } + } + }, + { + "fullUrl": "RelatedPerson/1732560543271838000.5ddafbe2-f480-41ee-aa2b-b03d88fd1bea", + "resource": { + "resourceType": "RelatedPerson", + "id": "1732560543271838000.5ddafbe2-f480-41ee-aa2b-b03d88fd1bea", + "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString": "20230506052913-0500" - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "NK1" + } + ], + "patient": { + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" + }, + "relationship": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", "extension": [ { - "url": "orc-21-ordering-facility-name", - "valueReference": { - "reference": "Organization/1730739114769985000.c443f2f7-afca-4e7f-87ec-cc9cfaad7378" - } - }, - { - "url": "orc-21-ordering-facility-name", - "valueReference": { - "reference": "Organization/1730739114770672000.5569d652-2bf6-43c3-813b-fd28fbc5cad6" - } - }, + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.3" + } + ], + "coding": [ { - "url": "orc-12-ordering-provider", - "valueReference": { - "reference": "Practitioner/1730739114771807000.8fb0b5b9-4fb0-4fa0-8e59-4dff55660c8d" - } + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70063" + } + ], + "code": "MTH", + "display": "Mother" } ], "text": "Mother" } ], "name": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension": [ - { - "url": "OBR.2", - "valueIdentifier": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "EPIC" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode": "ISO" - } - ] - } - ], - "value": "421832901" - } - } - ], - "use": "official", - "family": "SMITH", - "given": [ - "SADIE", - "S" - ] - } - ], - "identifier": [ { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "ORC.2" + "valueString": "NK1.2" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "EPIC" + "url": "XPN.2", + "valueString": "SADIE" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" + "url": "XPN.3", + "valueString": "S" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode": "ISO" + "url": "XPN.7", + "valueString": "L" } ] - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "NK1.5" - } - ], - "type": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "PLAC" - } - ] - }, - "value": "421832901" - } - ], - "status": "unknown", - "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" - }, - "authoredOn": "2023-05-06T05:29:13-05:00", - "_authoredOn": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506052913-0500" - } - ] - }, - "requester": { - "reference": "PractitionerRole/1730739114763601000.385766cc-2877-423a-b1c9-dfb84b4d8e80" - } - } - }, - { - "fullUrl": "Organization/1730739114763901000.bfb9d0d8-ed2e-4ed7-ad63-da58d8bc35a3", - "resource": { - "resourceType": "Organization", - "id": "1730739114763901000.bfb9d0d8-ed2e-4ed7-ad63-da58d8bc35a3", - "identifier": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "HD.1" } ], - "value": "NPI" - } - ] - } - }, - { - "fullUrl": "Practitioner/1730739114764825000.f4721f7d-ac56-48a8-a3f0-9d144b1f5c80", - "resource": { - "resourceType": "Practitioner", - "id": "1730739114764825000.f4721f7d-ac56-48a8-a3f0-9d144b1f5c80", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "NPI" - } - ] - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension": [ - { - "url": "XCN.3", - "valueString": "JANE" - }, - { - "url": "XCN.10", - "valueString": "L" - } - ] - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "ORC.12" - } - ], - "identifier": [ - { - "type": { - "coding": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean": true - } - ], - "code": "NPI" - } - ] - }, - "value": "1265136360", - "assigner": { - "reference": "Organization/1730739114763901000.bfb9d0d8-ed2e-4ed7-ad63-da58d8bc35a3" - } - } - ], - "name": [ - { "use": "official", - "family": "JONES", + "family": "SMITH", "given": [ - "JANE" - ] - } - ] - } - }, - { - "fullUrl": "Organization/1730739114766157000.64d5716b-8171-4056-9e75-5e7ffbbac790", - "resource": { - "resourceType": "Organization", - "id": "1730739114766157000.64d5716b-8171-4056-9e75-5e7ffbbac790", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "XON.2" - } - ] - } - } - ] - } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension": [ - { - "url": "XON.10", - "valueString": "1043269798" - } + "SADIE", + "S" ] } ], - "identifier": [ + "telecom": [ { "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "763" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5555555" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "CMS" + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "5555555" + }, + { + "url": "XTN.9", + "valueString": "(763)555-5555" } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.5" } ], - "type": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "NPI" - } - ] - }, - "value": "1043269798" + "system": "phone" } ], - "name": "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl": "PractitionerRole/1730739114763601000.385766cc-2877-423a-b1c9-dfb84b4d8e80", - "resource": { - "resourceType": "PractitionerRole", - "id": "1730739114763601000.385766cc-2877-423a-b1c9-dfb84b4d8e80", - "practitioner": { - "reference": "Practitioner/1730739114764825000.f4721f7d-ac56-48a8-a3f0-9d144b1f5c80" - }, - "organization": { - "reference": "Organization/1730739114766157000.64d5716b-8171-4056-9e75-5e7ffbbac790" - } - } - }, - { - "fullUrl": "Organization/1730739114769985000.c443f2f7-afca-4e7f-87ec-cc9cfaad7378", - "resource": { - "resourceType": "Organization", - "id": "1730739114769985000.c443f2f7-afca-4e7f-87ec-cc9cfaad7378", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "XON.2" - } - ] - } - } - ] - } - }, + "address": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension": [ { - "url": "XON.10", - "valueString": "1043269798" - } - ] - } - ], - "identifier": [ - { - "extension": [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.4" + }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "CMS" - } - ] - } - ], - "type": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "NPI" - } - ] - }, - "value": "1043269798" - } - ], - "name": "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl": "Organization/1730739114770672000.5569d652-2bf6-43c3-813b-fd28fbc5cad6", - "resource": { - "resourceType": "Organization", - "id": "1730739114770672000.5569d652-2bf6-43c3-813b-fd28fbc5cad6", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept": { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "XON.2" + "url": "SAD.1", + "valueString": "555 STATE HIGHWAY 13" } ] - } - } - ] - } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension": [ - { - "url": "XON.10", - "valueString": "739" - } - ] - } - ], - "identifier": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ + }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "MN Public Health Lab" + "url": "XAD.7", + "valueCode": "H" } ] } ], - "type": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "NPI" - } - ] - }, - "value": "739" - } - ], - "name": "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl": "Organization/1730739114771078000.2e95644a-8011-468b-b67b-a8bf33eea9bc", - "resource": { - "resourceType": "Organization", - "id": "1730739114771078000.2e95644a-8011-468b-b67b-a8bf33eea9bc", - "identifier": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "HD.1" - } + "use": "home", + "line": [ + "555 STATE HIGHWAY 13" ], - "value": "NPI" - } - ] - } - }, - { - "fullUrl": "Practitioner/1730739114771807000.8fb0b5b9-4fb0-4fa0-8e59-4dff55660c8d", - "resource": { - "resourceType": "Practitioner", - "id": "1730739114771807000.8fb0b5b9-4fb0-4fa0-8e59-4dff55660c8d", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "NPI" - } - ] - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension": [ - { - "url": "XCN.3", - "valueString": "JANE" - }, - { - "url": "XCN.10", - "valueString": "L" - } - ] - } - ], - "identifier": [ - { - "type": { - "coding": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean": true - } - ], - "code": "NPI" - } - ] - }, - "value": "1265136360", - "assigner": { - "reference": "Organization/1730739114771078000.2e95644a-8011-468b-b67b-a8bf33eea9bc" - } - } - ], - "name": [ - { - "use": "official", - "family": "JONES", - "given": [ - "JANE" - ] + "city": "DEER CREEK", + "district": "OTTER TAIL", + "state": "MN", + "postalCode": "56527-9657", + "country": "USA" } ] } }, { - "fullUrl": "Observation/1730739114775759000.5c618f5e-25f8-47c3-99be-9fa43387f2fe", + "fullUrl": "Observation/1732560543274855000.4d949d81-fa30-46bc-9cbc-78ce6ec7615a", "resource": { "resourceType": "Observation", - "id": "1730739114775759000.5c618f5e-25f8-47c3-99be-9fa43387f2fe", + "id": "1732560543274855000.4d949d81-fa30-46bc-9cbc-78ce6ec7615a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -980,7 +930,26 @@ "valueId": "NM" }, { - "url": "OBX.6" + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" + } + ], + "system": "http://unitsofmeasure.org", + "code": "g", + "display": "gram" + } + ] + } }, { "url": "OBX.29", @@ -994,8 +963,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "8339-4", + "display": "BIRTH WEIGHT MEASURED" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1015,10 +1003,10 @@ } }, { - "fullUrl": "Observation/1730739114778012000.3175dd30-ca5c-4291-853c-caa8a3be50b1", + "fullUrl": "Observation/1732560543277556000.688615ca-95a9-4338-b3b6-28ed0ce9a288", "resource": { "resourceType": "Observation", - "id": "1730739114778012000.3175dd30-ca5c-4291-853c-caa8a3be50b1", + "id": "1732560543277556000.688615ca-95a9-4338-b3b6-28ed0ce9a288", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1036,7 +1024,26 @@ "valueId": "NM" }, { - "url": "OBX.6" + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" + } + ], + "system": "http://unitsofmeasure.org", + "code": "wk", + "display": "week" + } + ] + } }, { "url": "OBX.29", @@ -1050,8 +1057,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "57714-8", + "display": "OBSTETRIC ESTIMATION OF GESTATIONAL AGE" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1071,10 +1097,10 @@ } }, { - "fullUrl": "Observation/1730739114781403000.c72e580a-921e-4985-9db4-c512c27ebc78", + "fullUrl": "Observation/1732560543279677000.617ea6d5-9be1-4a98-bd30-8a28bc15c971", "resource": { "resourceType": "Observation", - "id": "1730739114781403000.c72e580a-921e-4985-9db4-c512c27ebc78", + "id": "1732560543279677000.617ea6d5-9be1-4a98-bd30-8a28bc15c971", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1103,8 +1129,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "57713-0", + "display": "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1137,10 +1182,10 @@ } }, { - "fullUrl": "Observation/1730739114783506000.a923c1e7-2c06-4387-9f91-c9ce8d0f2378", + "fullUrl": "Observation/1732560543281793000.f04d11d4-e337-4e47-9a5e-ca8483f0f168", "resource": { "resourceType": "Observation", - "id": "1730739114783506000.a923c1e7-2c06-4387-9f91-c9ce8d0f2378", + "id": "1732560543281793000.f04d11d4-e337-4e47-9a5e-ca8483f0f168", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1169,8 +1214,26 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "MNDSIB", + "display": "DOES THE BABY HAVE A DECEASED SIBLING?" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1202,10 +1265,10 @@ } }, { - "fullUrl": "Observation/1730739114785823000.18ed61b6-eca0-47bb-a05f-940d36e93a6f", + "fullUrl": "Observation/1732560543283827000.4b0a99f4-cd5b-477f-af08-058d47395f06", "resource": { "resourceType": "Observation", - "id": "1730739114785823000.18ed61b6-eca0-47bb-a05f-940d36e93a6f", + "id": "1732560543283827000.4b0a99f4-cd5b-477f-af08-058d47395f06", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1234,8 +1297,26 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "MNDEFECT", + "display": "DOES THE BABY HAVE BIRTH DEFECTS?" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1267,10 +1348,10 @@ } }, { - "fullUrl": "Observation/1730739114788828000.7b33fda8-a4cd-451c-9cae-26f2a7cc728e", + "fullUrl": "Observation/1732560543286362000.ef088072-bef6-4cfa-9cf9-4940af1b5658", "resource": { "resourceType": "Observation", - "id": "1730739114788828000.7b33fda8-a4cd-451c-9cae-26f2a7cc728e", + "id": "1732560543286362000.ef088072-bef6-4cfa-9cf9-4940af1b5658", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1299,8 +1380,26 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "MNFAM", + "display": "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1332,10 +1431,10 @@ } }, { - "fullUrl": "Observation/1730739114790984000.0b193cfb-49f2-4d80-a07d-f0e2ee62003a", + "fullUrl": "Observation/1732560543288331000.ae179a9b-f56c-4d11-b149-293d2887ebce", "resource": { "resourceType": "Observation", - "id": "1730739114790984000.0b193cfb-49f2-4d80-a07d-f0e2ee62003a", + "id": "1732560543288331000.ae179a9b-f56c-4d11-b149-293d2887ebce", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1364,8 +1463,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "67704-7", + "display": "FEEDING TYPES" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1398,10 +1516,10 @@ } }, { - "fullUrl": "Observation/1730739114793111000.b83aa2d3-8969-4069-969f-49217c3aca8d", + "fullUrl": "Observation/1732560543290243000.d411deba-f6a1-45f1-a505-3713059b4a6e", "resource": { "resourceType": "Observation", - "id": "1730739114793111000.b83aa2d3-8969-4069-969f-49217c3aca8d", + "id": "1732560543290243000.d411deba-f6a1-45f1-a505-3713059b4a6e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1430,8 +1548,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "67704-7", + "display": "FEEDING TYPES" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1464,10 +1601,10 @@ } }, { - "fullUrl": "Observation/1730739114795312000.58c7b5f2-2fdb-4f97-9723-046eea56a341", + "fullUrl": "Observation/1732560543292147000.2429838a-1b4f-490b-9ef3-8668bdb3444a", "resource": { "resourceType": "Observation", - "id": "1730739114795312000.58c7b5f2-2fdb-4f97-9723-046eea56a341", + "id": "1732560543292147000.2429838a-1b4f-490b-9ef3-8668bdb3444a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1496,8 +1633,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "57723-9", + "display": "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1524,10 +1680,10 @@ } }, { - "fullUrl": "Observation/1730739114797071000.46ad5875-1800-4de1-b266-d690820909eb", + "fullUrl": "Observation/1732560543293778000.c8b6eaf4-48db-4d31-9dc7-4662b2dd5ead", "resource": { "resourceType": "Observation", - "id": "1730739114797071000.46ad5875-1800-4de1-b266-d690820909eb", + "id": "1732560543293778000.c8b6eaf4-48db-4d31-9dc7-4662b2dd5ead", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1556,8 +1712,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "62328-0", + "display": "DISCHARGE PROVIDER PRACTICE PHONE NUMBER" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1572,10 +1747,10 @@ } }, { - "fullUrl": "Observation/1730739114798696000.6a08e93e-7012-4668-920f-6dd0b6086fba", + "fullUrl": "Observation/1732560543295369000.775c794b-2f24-42b0-b890-e1e9e9f4a522", "resource": { "resourceType": "Observation", - "id": "1730739114798696000.6a08e93e-7012-4668-920f-6dd0b6086fba", + "id": "1732560543295369000.775c794b-2f24-42b0-b890-e1e9e9f4a522", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1604,8 +1779,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "62324-9", + "display": "POST-DISCHARGE PROVIDER NAME" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1620,10 +1814,10 @@ } }, { - "fullUrl": "Observation/1730739114800274000.f123aecc-501c-43eb-a4a1-5a4489e47952", + "fullUrl": "Observation/1732560543297140000.e55bde3c-775c-4635-a191-4030b16bb2c8", "resource": { "resourceType": "Observation", - "id": "1730739114800274000.f123aecc-501c-43eb-a4a1-5a4489e47952", + "id": "1732560543297140000.e55bde3c-775c-4635-a191-4030b16bb2c8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1652,8 +1846,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "62326-4", + "display": "POST-DISCHARGE PROVIDER PRACTICE NAME" + } + ] + }, "subject": { - "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1668,10 +1881,75 @@ } }, { - "fullUrl": "Specimen/1730739114807923000.8f9e2bd9-31bf-4899-ac32-ba62d0b8a7c6", + "fullUrl": "Specimen/1732560543300806000.406c938b-63f5-4b24-87a2-fe6df4db3c2e", + "resource": { + "resourceType": "Specimen", + "id": "1732560543300806000.406c938b-63f5-4b24-87a2-fe6df4db3c2e", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "440500007" + } + ] + }, + "collection": { + "collectedDateTime": "2023-05-06T05:00:00Z", + "_collectedDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000" + } + ] + } + }, + "container": [ + { + "additiveCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "Blood spot specimen" + } + ] + } + } + ], + "note": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "OBR.15.3" + } + ], + "text": "SCT" + } + ] + } + }, + { + "fullUrl": "Specimen/1732560543303231000.2d9cfa3b-d077-47dc-b9e9-c6dbaf6d7e14", "resource": { "resourceType": "Specimen", - "id": "1730739114807923000.8f9e2bd9-31bf-4899-ac32-ba62d0b8a7c6", + "id": "1732560543303231000.2d9cfa3b-d077-47dc-b9e9-c6dbaf6d7e14", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -1723,8 +2001,8 @@ } ], "system": "http://snomed.info/sct", - "code": "440500007", - "display": "Blood spot specimen" + "code": "440500042", + "display": "Blood spatter specimen" } ] }, @@ -1742,10 +2020,10 @@ } }, { - "fullUrl": "ServiceRequest/1731693499410541000.44604b6d-c242-4fa8-8ae6-9d66a3e6f8f6", + "fullUrl": "ServiceRequest/1732560543311645000.b57e1bdc-262e-422d-a16f-9f77660cf315", "resource": { "resourceType": "ServiceRequest", - "id": "1731693499410541000.44604b6d-c242-4fa8-8ae6-9d66a3e6f8f6", + "id": "1732560543311645000.b57e1bdc-262e-422d-a16f-9f77660cf315", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", @@ -1761,19 +2039,19 @@ { "url": "orc-21-ordering-facility-name", "valueReference": { - "reference": "Organization/1731693499407045000.0405b8a0-2641-44bd-bead-9f864439e87c" + "reference": "Organization/1732560543307780000.31100ae8-a7cd-4d48-9c32-54ba4cf017ac" } }, { "url": "orc-21-ordering-facility-name", "valueReference": { - "reference": "Organization/1731693499407702000.179c5b71-0abd-4ca5-90f6-39bfddfae2e4" + "reference": "Organization/1732560543308452000.98aae0fd-f400-4fa4-81b1-edbf5c98b5d4" } }, { "url": "orc-12-ordering-provider", "valueReference": { - "reference": "Practitioner/1731693499408540000.b160605f-1ac2-4c93-a4a2-1701d568b747" + "reference": "Practitioner/1732560543309446000.c33a9be2-d78d-4d54-a272-6ecc44333bf6" } } ] @@ -1914,7 +2192,7 @@ ] }, "subject": { - "reference": "Patient/1731693499244826000.1ec96b37-a200-45f6-8524-0d9bf4773a65" + "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18" }, "authoredOn": "2023-05-06T05:29:13-05:00", "_authoredOn": { @@ -1926,61 +2204,61 @@ ] }, "requester": { - "reference": "PractitionerRole/1731693499401922000.0288ec12-86a2-4087-850a-9b78b3d26b72" + "reference": "PractitionerRole/1732560543303804000.31426fcc-91fd-45d7-bd6e-291e762530df" }, "supportingInfo": [ { - "reference": "Observation/1731693499254154000.dd4e0899-fbb3-4fae-8a44-c25a4a1b1943" + "reference": "Observation/1732560543274855000.4d949d81-fa30-46bc-9cbc-78ce6ec7615a" }, { - "reference": "Observation/1731693499256643000.f3d87add-5a46-4983-aad6-dc4937663363" + "reference": "Observation/1732560543277556000.688615ca-95a9-4338-b3b6-28ed0ce9a288" }, { - "reference": "Observation/1731693499258634000.3dad0e71-dda0-40d4-8fe9-8ab9b08dbad7" + "reference": "Observation/1732560543279677000.617ea6d5-9be1-4a98-bd30-8a28bc15c971" }, { - "reference": "Observation/1731693499260502000.5055910a-809e-4bba-bdab-76843a177460" + "reference": "Observation/1732560543281793000.f04d11d4-e337-4e47-9a5e-ca8483f0f168" }, { - "reference": "Observation/1731693499262109000.997e1625-6c27-4a81-9060-68c36c79910f" + "reference": "Observation/1732560543283827000.4b0a99f4-cd5b-477f-af08-058d47395f06" }, { - "reference": "Observation/1731693499263903000.ff9328b6-2aeb-4a06-b5ce-f194c1b4343b" + "reference": "Observation/1732560543286362000.ef088072-bef6-4cfa-9cf9-4940af1b5658" }, { - "reference": "Observation/1731693499265894000.4be5c4d9-daca-4249-871b-b5e9b2299e64" + "reference": "Observation/1732560543288331000.ae179a9b-f56c-4d11-b149-293d2887ebce" }, { - "reference": "Observation/1731693499267278000.4f9e6cd4-2d27-4ae0-8a4a-c11557902264" + "reference": "Observation/1732560543290243000.d411deba-f6a1-45f1-a505-3713059b4a6e" }, { - "reference": "Observation/1731693499270093000.7eecd56f-a1b0-4342-87af-2236a11d5f06" + "reference": "Observation/1732560543292147000.2429838a-1b4f-490b-9ef3-8668bdb3444a" }, { - "reference": "Observation/1731693499271474000.ccb6c726-3d31-4904-8c4a-b8bb8cab6b7f" + "reference": "Observation/1732560543293778000.c8b6eaf4-48db-4d31-9dc7-4662b2dd5ead" }, { - "reference": "Observation/1731693499272795000.2ead0280-0219-4455-a28a-52eedd24a781" + "reference": "Observation/1732560543295369000.775c794b-2f24-42b0-b890-e1e9e9f4a522" }, { - "reference": "Observation/1731693499274060000.09f106cd-ca67-4226-90a5-f555890d98f0" + "reference": "Observation/1732560543297140000.e55bde3c-775c-4635-a191-4030b16bb2c8" } ], "specimen": [ { - "reference": "Specimen/1731693499401246000.af41b374-d90e-4385-a6cd-34a15a4956c7" + "reference": "Specimen/1732560543303231000.2d9cfa3b-d077-47dc-b9e9-c6dbaf6d7e14" }, { - "reference": "Specimen/1731693499399056000.cb3e6b3e-2c30-44ec-aad9-1d5caaac8e04" + "reference": "Specimen/1732560543300806000.406c938b-63f5-4b24-87a2-fe6df4db3c2e" } ] } }, { - "fullUrl": "Organization/1731693499402155000.5e0feb3b-43d1-4413-8114-1f9bb184ce9e", + "fullUrl": "Organization/1732560543304112000.dc3c498d-a046-4f19-85d8-523a30bf309f", "resource": { "resourceType": "Organization", - "id": "1731693499402155000.5e0feb3b-43d1-4413-8114-1f9bb184ce9e", + "id": "1732560543304112000.dc3c498d-a046-4f19-85d8-523a30bf309f", "identifier": [ { "extension": [ @@ -1995,10 +2273,10 @@ } }, { - "fullUrl": "Practitioner/1731693499403117000.ad293f7d-eb9c-4c41-b727-0a5e50b319de", + "fullUrl": "Practitioner/1732560543304915000.2aea385b-1e59-400f-8533-ec48845b37d6", "resource": { "resourceType": "Practitioner", - "id": "1731693499403117000.ad293f7d-eb9c-4c41-b727-0a5e50b319de", + "id": "1732560543304915000.2aea385b-1e59-400f-8533-ec48845b37d6", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -2006,12 +2284,6 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", "valueString": "NPI" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] }, @@ -2050,7 +2322,7 @@ }, "value": "1265136360", "assigner": { - "reference": "Organization/1731693499402155000.5e0feb3b-43d1-4413-8114-1f9bb184ce9e" + "reference": "Organization/1732560543304112000.dc3c498d-a046-4f19-85d8-523a30bf309f" } } ], @@ -2066,10 +2338,10 @@ } }, { - "fullUrl": "Organization/1731693499404212000.25916871-3bc5-4803-a2f1-d784fb317b55", + "fullUrl": "Organization/1732560543305808000.f46f933c-1599-4a9d-9e1b-8ba3fd09aa33", "resource": { "resourceType": "Organization", - "id": "1731693499404212000.25916871-3bc5-4803-a2f1-d784fb317b55", + "id": "1732560543305808000.f46f933c-1599-4a9d-9e1b-8ba3fd09aa33", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -2120,12 +2392,6 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", "valueString": "CMS" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] } @@ -2145,23 +2411,23 @@ } }, { - "fullUrl": "PractitionerRole/1731693499401922000.0288ec12-86a2-4087-850a-9b78b3d26b72", + "fullUrl": "PractitionerRole/1732560543303804000.31426fcc-91fd-45d7-bd6e-291e762530df", "resource": { "resourceType": "PractitionerRole", - "id": "1731693499401922000.0288ec12-86a2-4087-850a-9b78b3d26b72", + "id": "1732560543303804000.31426fcc-91fd-45d7-bd6e-291e762530df", "practitioner": { - "reference": "Practitioner/1731693499403117000.ad293f7d-eb9c-4c41-b727-0a5e50b319de" + "reference": "Practitioner/1732560543304915000.2aea385b-1e59-400f-8533-ec48845b37d6" }, "organization": { - "reference": "Organization/1731693499404212000.25916871-3bc5-4803-a2f1-d784fb317b55" + "reference": "Organization/1732560543305808000.f46f933c-1599-4a9d-9e1b-8ba3fd09aa33" } } }, { - "fullUrl": "Organization/1731693499407045000.0405b8a0-2641-44bd-bead-9f864439e87c", + "fullUrl": "Organization/1732560543307780000.31100ae8-a7cd-4d48-9c32-54ba4cf017ac", "resource": { "resourceType": "Organization", - "id": "1731693499407045000.0405b8a0-2641-44bd-bead-9f864439e87c", + "id": "1732560543307780000.31100ae8-a7cd-4d48-9c32-54ba4cf017ac", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -2212,12 +2478,6 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", "valueString": "CMS" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] } @@ -2237,10 +2497,10 @@ } }, { - "fullUrl": "Organization/1731693499407702000.179c5b71-0abd-4ca5-90f6-39bfddfae2e4", + "fullUrl": "Organization/1732560543308452000.98aae0fd-f400-4fa4-81b1-edbf5c98b5d4", "resource": { "resourceType": "Organization", - "id": "1731693499407702000.179c5b71-0abd-4ca5-90f6-39bfddfae2e4", + "id": "1732560543308452000.98aae0fd-f400-4fa4-81b1-edbf5c98b5d4", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -2291,12 +2551,6 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", "valueString": "MN Public Health Lab" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] } @@ -2316,10 +2570,10 @@ } }, { - "fullUrl": "Organization/1731693499407971000.145351e1-d9b0-49ce-a7a4-288a71734f66", + "fullUrl": "Organization/1732560543308800000.ad53ba99-d6bd-47f8-9a4c-f15fb6c1cd42", "resource": { "resourceType": "Organization", - "id": "1731693499407971000.145351e1-d9b0-49ce-a7a4-288a71734f66", + "id": "1732560543308800000.ad53ba99-d6bd-47f8-9a4c-f15fb6c1cd42", "identifier": [ { "extension": [ @@ -2334,10 +2588,10 @@ } }, { - "fullUrl": "Practitioner/1731693499408540000.b160605f-1ac2-4c93-a4a2-1701d568b747", + "fullUrl": "Practitioner/1732560543309446000.c33a9be2-d78d-4d54-a272-6ecc44333bf6", "resource": { "resourceType": "Practitioner", - "id": "1731693499408540000.b160605f-1ac2-4c93-a4a2-1701d568b747", + "id": "1732560543309446000.c33a9be2-d78d-4d54-a272-6ecc44333bf6", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -2345,12 +2599,6 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", "valueString": "NPI" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type" } ] }, @@ -2385,7 +2633,7 @@ }, "value": "1265136360", "assigner": { - "reference": "Organization/1731693499407971000.145351e1-d9b0-49ce-a7a4-288a71734f66" + "reference": "Organization/1732560543308800000.ad53ba99-d6bd-47f8-9a4c-f15fb6c1cd42" } } ], diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir index f26d7b91686..ef3cb6666c3 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir @@ -1,8 +1,8 @@ { "resourceType": "Bundle", - "id": "1730739044768853000.b4938369-ac66-4abc-93a6-c1a8db4da033", + "id": "1732560511670724000.f32c77cf-ad23-43bc-a013-3fea9d443cd3", "meta": { - "lastUpdated": "2024-11-04T11:50:44.779-05:00" + "lastUpdated": "2024-11-25T13:48:31.670-05:00" }, "identifier": { "system": "https://reportstream.cdc.gov/prime-router", @@ -12,10 +12,10 @@ "timestamp": "2023-05-06T06:29:16.000-04:00", "entry": [ { - "fullUrl": "MessageHeader/1730739044854563000.a02af09b-b5fc-460a-879d-d38e881ba202", + "fullUrl": "MessageHeader/1732560511672681000.d74fc9a5-4839-469c-beaa-071f45976033", "resource": { "resourceType": "MessageHeader", - "id": "1730739044854563000.a02af09b-b5fc-460a-879d-d38e881ba202", + "id": "1732560511672681000.d74fc9a5-4839-469c-beaa-071f45976033", "meta": { "tag": [ { @@ -129,12 +129,12 @@ ], "name": "NATUS", "receiver": { - "reference": "Organization/1730739044853311000.a7c7630d-0fe8-4c46-aaf7-e3d8731f18b6" + "reference": "Organization/1732560511672306000.d58e54ce-4c82-462c-b681-4496c250cca6" } } ], "sender": { - "reference": "Organization/1730739044832105000.94f279f5-2ad0-4b90-b5ad-80f818bd000e" + "reference": "Organization/1732560511671630000.031ef0d6-4818-43f3-b16a-b1ee4acf5e92" }, "source": { "extension": [ @@ -162,10 +162,10 @@ } }, { - "fullUrl": "Organization/1730739044832105000.94f279f5-2ad0-4b90-b5ad-80f818bd000e", + "fullUrl": "Organization/1732560511671630000.031ef0d6-4818-43f3-b16a-b1ee4acf5e92", "resource": { "resourceType": "Organization", - "id": "1730739044832105000.94f279f5-2ad0-4b90-b5ad-80f818bd000e", + "id": "1732560511671630000.031ef0d6-4818-43f3-b16a-b1ee4acf5e92", "identifier": [ { "extension": [ @@ -197,10 +197,10 @@ } }, { - "fullUrl": "Organization/1730739044853311000.a7c7630d-0fe8-4c46-aaf7-e3d8731f18b6", + "fullUrl": "Organization/1732560511672306000.d58e54ce-4c82-462c-b681-4496c250cca6", "resource": { "resourceType": "Organization", - "id": "1730739044853311000.a7c7630d-0fe8-4c46-aaf7-e3d8731f18b6", + "id": "1732560511672306000.d58e54ce-4c82-462c-b681-4496c250cca6", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -239,16 +239,150 @@ } }, { - "fullUrl": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f", + "fullUrl": "Provenance/1732560511675303000.2621144c-963e-4ab1-955f-16d7475c8ad3", + "resource": { + "resourceType": "Provenance", + "id": "1732560511675303000.2621144c-963e-4ab1-955f-16d7475c8ad3", + "recorded": "2023-05-06T05:29:16-05:00", + "activity": { + "coding": [ + { + "display": "ORM^O01^ORM_O01" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "author" + } + ] + }, + "who": { + "reference": "Organization/1732560511675026000.eab0c53f-3658-4b9e-b58b-b587acf35f89" + } + } + ] + } + }, + { + "fullUrl": "Organization/1732560511675026000.eab0c53f-3658-4b9e-b58b-b587acf35f89", + "resource": { + "resourceType": "Organization", + "id": "1732560511675026000.eab0c53f-3658-4b9e-b58b-b587acf35f89", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Centracare" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "DNS" + } + ] + }, + "value": "centracare.com" + } + ] + } + }, + { + "fullUrl": "Provenance/1732560511677094000.f0412861-717d-4c48-96e7-2fe34bb54c8d", + "resource": { + "resourceType": "Provenance", + "id": "1732560511677094000.f0412861-717d-4c48-96e7-2fe34bb54c8d", + "recorded": "2024-11-25T13:48:31Z", + "policy": [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity": { + "coding": [ + { + "code": "v2-FHIR transformation" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" + } + ] + }, + "who": { + "reference": "Organization/1732560511676926000.0b711c54-8b8d-4aea-8c98-68f92c12a44e" + } + } + ] + } + }, + { + "fullUrl": "Organization/1732560511676926000.0b711c54-8b8d-4aea-8c98-68f92c12a44e", + "resource": { + "resourceType": "Organization", + "id": "1732560511676926000.0b711c54-8b8d-4aea-8c98-68f92c12a44e", + "identifier": [ + { + "value": "CDC PRIME - Atlanta" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a", "resource": { "resourceType": "Patient", - "id": "1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f", + "id": "1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", "extension": [ { - "url": "PID.8" + "url": "PID.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "M" + } + ] + } }, { "url": "PID.24", @@ -307,7 +441,7 @@ }, "value": "11102779", "assigner": { - "reference": "Organization/1730739045436383000.143cca78-1d3b-49b5-855d-0b68ae8fd374" + "reference": "Organization/1732560511677929000.bc510668-0a60-42a3-88ab-a8c3328dbc3e" } } ], @@ -420,7 +554,7 @@ "link": [ { "other": { - "reference": "RelatedPerson/1730739045452628000.7cc7bd01-5335-4089-bb4a-452daa11cff5" + "reference": "RelatedPerson/1732560511680963000.2918c42d-2608-4940-b18e-d3afc197779e" }, "type": "seealso" } @@ -428,10 +562,10 @@ } }, { - "fullUrl": "Organization/1730739045436383000.143cca78-1d3b-49b5-855d-0b68ae8fd374", + "fullUrl": "Organization/1732560511677929000.bc510668-0a60-42a3-88ab-a8c3328dbc3e", "resource": { "resourceType": "Organization", - "id": "1730739045436383000.143cca78-1d3b-49b5-855d-0b68ae8fd374", + "id": "1732560511677929000.bc510668-0a60-42a3-88ab-a8c3328dbc3e", "identifier": [ { "extension": [ @@ -446,10 +580,10 @@ } }, { - "fullUrl": "RelatedPerson/1730739045452628000.7cc7bd01-5335-4089-bb4a-452daa11cff5", + "fullUrl": "RelatedPerson/1732560511680963000.2918c42d-2608-4940-b18e-d3afc197779e", "resource": { "resourceType": "RelatedPerson", - "id": "1730739045452628000.7cc7bd01-5335-4089-bb4a-452daa11cff5", + "id": "1732560511680963000.2918c42d-2608-4940-b18e-d3afc197779e", "identifier": [ { "extension": [ @@ -468,495 +602,470 @@ } }, { - "fullUrl": "ServiceRequest/1730739045486998000.12434c42-eb33-4391-95ed-206405199d4d", + "fullUrl": "Provenance/1732560511683387000.e6eb7827-be89-4bd4-afdc-0cadfe3c8380", "resource": { - "resourceType": "ServiceRequest", - "id": "1730739045486998000.12434c42-eb33-4391-95ed-206405199d4d", + "resourceType": "Provenance", + "id": "1732560511683387000.e6eb7827-be89-4bd4-afdc-0cadfe3c8380", + "target": [ + { + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" + } + ], + "recorded": "2024-11-25T13:48:31Z", + "activity": { + "coding": [ + { + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" + } + ] + } + } + }, + { + "fullUrl": "Observation/1732560511685409000.68ec79c6-ca91-4584-a18c-edf96c10ea81", + "resource": { + "resourceType": "Observation", + "id": "1732560511685409000.68ec79c6-ca91-4584-a18c-edf96c10ea81", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode": "NW" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString": "20230506052913-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "orc-21-ordering-facility-name", - "valueReference": { - "reference": "Organization/1730739045482221000.12655f3b-3a76-4149-92c7-eab672b22b75" - } - }, - { - "url": "orc-21-ordering-facility-name", - "valueReference": { - "reference": "Organization/1730739045483655000.fbf465a4-777d-44dd-84de-ab216725b063" - } + "url": "OBX.2", + "valueId": "NM" }, { - "url": "orc-12-ordering-provider", - "valueReference": { - "reference": "Practitioner/1730739045485318000.50da42d9-9ed8-49ca-8ce1-eb63a81a9606" - } - } - ] - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension": [ - { - "url": "OBR.2", - "valueIdentifier": { - "extension": [ + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "EPIC" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode": "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" } ], - "system" : "http://unitsofmeasure.org", - "code" : "g", - "display" : "gram" + "system": "http://unitsofmeasure.org", + "code": "g", + "display": "gram" } - ], - "value": "421832901" + ] } - } - ] - } - ], - "identifier": [ - { - "extension": [ + }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "ORC.2" + "url": "OBX.29", + "valueId": "QST" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "EPIC" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode": "ISO" - } - ] + "url": "OBX.11", + "valueString": "O" } - ], - "type": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "PLAC" - } - ] - }, - "value": "421832901" + ] } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "8339-4", + "display": "BIRTH WEIGHT MEASURED" + } + ] + }, "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" }, - "authoredOn": "2023-05-06T05:29:13-05:00", - "_authoredOn": { + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506052913-0500" + "valueString": "20230506050000-0500" } ] }, - "requester": { - "reference": "PractitionerRole/1730739045475925000.e4ec22c3-0315-4b18-a42c-fe9e88296e4c" + "valueQuantity": { + "value": 1769.859285, + "unit": "gram", + "system": "UCUM", + "code": "g" } } }, { - "fullUrl": "Organization/1730739045476392000.19543a23-10bc-47cb-9da4-707a24b3a6ed", - "resource": { - "resourceType": "Organization", - "id": "1730739045476392000.19543a23-10bc-47cb-9da4-707a24b3a6ed", - "identifier": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "HD.1" - } - ], - "value": "NPI" - } - ] - } - }, - { - "fullUrl": "Practitioner/1730739045477799000.3e4230fe-22a6-4972-8a1e-a8be2c2234be", + "fullUrl": "Observation/1732560511687601000.49535bc8-4b68-4f91-b9b7-c8750e2d8f7d", "resource": { - "resourceType": "Practitioner", - "id": "1730739045477799000.3e4230fe-22a6-4972-8a1e-a8be2c2234be", + "resourceType": "Observation", + "id": "1732560511687601000.49535bc8-4b68-4f91-b9b7-c8750e2d8f7d", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "NPI" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension": [ - { - "url": "XCN.3", - "valueString": "JANE" - }, - { - "url": "XCN.10", - "valueString": "L" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "ORC.12" - } - ], - "identifier": [ - { - "type": { - "coding": [ - { - "extension": [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "NM" + }, + { + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean": true + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" + } + ], + "system": "http://unitsofmeasure.org", + "code": "wk", + "display": "week" } - ], - "code": "NPI" - } - ] - }, - "value": "1265136360", - "assigner": { - "reference": "Organization/1730739045476392000.19543a23-10bc-47cb-9da4-707a24b3a6ed" - } - } - ], - "name": [ - { - "use": "official", - "family": "JONES", - "given": [ - "JANE" - ] - } - ] - } - }, - { - "fullUrl": "Organization/1730739045479084000.cda1b269-0a63-4666-a1bd-d140ad91e24d", - "resource": { - "resourceType": "Organization", - "id": "1730739045479084000.cda1b269-0a63-4666-a1bd-d140ad91e24d", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "XON.2" - } - ] - } + ] } - ] - } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension": [ + }, { - "url": "XON.10", - "valueString": "1043269798" + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.11", + "valueString": "O" } ] } ], - "identifier": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "CMS" - } - ] - } - ], - "type": { - "coding": [ + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "NPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } - ] - }, - "value": "1043269798" - } - ], - "name": "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl": "PractitionerRole/1730739045475925000.e4ec22c3-0315-4b18-a42c-fe9e88296e4c", - "resource": { - "resourceType": "PractitionerRole", - "id": "1730739045475925000.e4ec22c3-0315-4b18-a42c-fe9e88296e4c", - "practitioner": { - "reference": "Practitioner/1730739045477799000.3e4230fe-22a6-4972-8a1e-a8be2c2234be" + ], + "system": "http://loinc.org", + "code": "57714-8", + "display": "OBSTETRIC ESTIMATION OF GESTATIONAL AGE" + } + ] }, - "organization": { - "reference": "Organization/1730739045479084000.cda1b269-0a63-4666-a1bd-d140ad91e24d" + "subject": { + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueQuantity": { + "value": 32, + "unit": "week", + "system": "UCUM", + "code": "wk" } } }, { - "fullUrl": "Organization/1730739045482221000.12655f3b-3a76-4149-92c7-eab672b22b75", + "fullUrl": "Observation/1732560511689759000.2564e813-a596-4109-80a4-ba7dc42d24e5", "resource": { - "resourceType": "Organization", - "id": "1730739045482221000.12655f3b-3a76-4149-92c7-eab672b22b75", + "resourceType": "Observation", + "id": "1732560511689759000.2564e813-a596-4109-80a4-ba7dc42d24e5", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "XON.2" - } - ] - } - } - ] - } + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension": [ - { - "url": "XON.10", - "valueString": "1043269798" - } - ] - } - ], - "identifier": [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" + }, { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "CMS" - } - ] + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.11", + "valueString": "O" } - ], - "type": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "NPI" - } - ] - }, - "value": "1043269798" + ] } ], - "name": "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl": "Organization/1730739045483655000.fbf465a4-777d-44dd-84de-ab216725b063", - "resource": { - "resourceType": "Organization", - "id": "1730739045483655000.fbf465a4-777d-44dd-84de-ab216725b063", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding": { + "status": "unknown", + "code": { + "coding": [ + { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "XON.2" - } - ] - } + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "code" : "MNDSIB", - "display" : "DOES THE BABY HAVE A DECEASED SIBLING?" + "system": "http://loinc.org", + "code": "57713-0", + "display": "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION" } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension": [ - { - "url": "XON.10", - "valueString": "739" - } - ] - } - ], - "identifier": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "MN Public Health Lab" - } - ] - } - ], - "type": { - "coding": [ + ] + }, + "subject": { + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueCodeableConcept": { + "coding": [ + { + "extension": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "NPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } - ] - }, - "value": "739" - } - ], - "name": "ST. CLOUD HOSPITAL" + ], + "system": "http://loinc.org", + "code": "LA12419-0", + "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + } + ] + } } }, { - "fullUrl": "Organization/1730739045484200000.76b8dad6-c380-4ecd-a397-d56cd876c36a", + "fullUrl": "Observation/1732560511692143000.5ba6549d-7b30-40a2-8259-07901724e390", "resource": { - "resourceType": "Organization", - "id": "1730739045484200000.76b8dad6-c380-4ecd-a397-d56cd876c36a", - "identifier": [ + "resourceType": "Observation", + "id": "1732560511692143000.5ba6549d-7b30-40a2-8259-07901724e390", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" + }, { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "HD.1" + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.11", + "valueString": "O" } - ], - "value": "NPI" + ] } - ] + ], + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "MNDSIB", + "display": "DOES THE BABY HAVE A DECEASED SIBLING?" + } + ] + }, + "subject": { + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "N", + "display": "No" + } + ] + } } }, { - "fullUrl": "Practitioner/1730739045485318000.50da42d9-9ed8-49ca-8ce1-eb63a81a9606", + "fullUrl": "Observation/1732560511694464000.6c92cfb0-0578-45f0-b0be-390fb453fa53", "resource": { - "resourceType": "Practitioner", - "id": "1730739045485318000.50da42d9-9ed8-49ca-8ce1-eb63a81a9606", + "resourceType": "Observation", + "id": "1732560511694464000.6c92cfb0-0578-45f0-b0be-390fb453fa53", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "NPI" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "XCN.3", - "valueString": "JANE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url": "XCN.10", - "valueString": "L" + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.11", + "valueString": "O" } ] } ], - "identifier": [ - { - "type": { - "coding": [ + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean": true - } - ], - "code": "NPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" } - ] - }, - "value": "1265136360", - "assigner": { - "reference": "Organization/1730739045484200000.76b8dad6-c380-4ecd-a397-d56cd876c36a" + ], + "code": "MNDEFECT", + "display": "DOES THE BABY HAVE BIRTH DEFECTS?" } - } - ], - "name": [ - { - "use": "official", - "family": "JONES", - "given": [ - "JANE" - ] - } - ] + ] + }, + "subject": { + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "N", + "display": "No" + } + ] + } } }, { - "fullUrl": "Observation/1730739045689805000.da48cbda-80e8-48e3-8374-38873b0f7770", + "fullUrl": "Observation/1732560511696929000.06885dba-e795-4a03-8be4-76f255868d9b", "resource": { "resourceType": "Observation", - "id": "1730739045689805000.da48cbda-80e8-48e3-8374-38873b0f7770", + "id": "1732560511696929000.06885dba-e795-4a03-8be4-76f255868d9b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -971,10 +1080,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "NM" - }, - { - "url": "OBX.6" + "valueId": "CWE" }, { "url": "OBX.29", @@ -988,8 +1094,26 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "MNFAM", + "display": "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL" + } + ] + }, "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1000,19 +1124,31 @@ } ] }, - "valueQuantity": { - "value": 1769.859285, - "unit": "gram", - "system": "UCUM", - "code": "g" + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "N", + "display": "No" + } + ] } } }, { - "fullUrl": "Observation/1730739045692808000.abe30e64-14d3-41cb-a5c3-abe28db35af5", + "fullUrl": "Observation/1732560511700247000.83d485ad-8bf1-47d0-9a6c-bf7e83f78fb8", "resource": { "resourceType": "Observation", - "id": "1730739045692808000.abe30e64-14d3-41cb-a5c3-abe28db35af5", + "id": "1732560511700247000.83d485ad-8bf1-47d0-9a6c-bf7e83f78fb8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1027,10 +1163,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "NM" - }, - { - "url": "OBX.6" + "valueId": "CWE" }, { "url": "OBX.29", @@ -1044,8 +1177,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "67704-7", + "display": "FEEDING TYPES" + } + ] + }, "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1055,24 +1207,37 @@ "valueString": "20230506050000-0500" } ] - }, - "valueQuantity": { - "value": 32, - "unit": "week", - "system": "UCUM", - "code": "wk" + }, + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "LA12418-2", + "display": "TPN" + } + ] } } }, { - "fullUrl": "Observation/1730739045695721000.ca344441-ce4c-47d3-b018-d9b7f6a06e41", + "fullUrl": "Observation/1732560511702948000.7d0cd160-1c90-40a5-9b5c-8e2c2f0a8bf8", "resource": { "resourceType": "Observation", - "id": "1730739045695721000.ca344441-ce4c-47d3-b018-d9b7f6a06e41", + "id": "1732560511702948000.7d0cd160-1c90-40a5-9b5c-8e2c2f0a8bf8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" + "valueString": "2" }, { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", @@ -1097,8 +1262,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "67704-7", + "display": "FEEDING TYPES" + } + ] + }, "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1123,18 +1307,18 @@ } ], "system": "http://loinc.org", - "code": "LA12419-0", - "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + "code": "LA16914-6", + "display": "BREAST MILK" } ] } } }, { - "fullUrl": "Observation/1730739045698125000.69ecfe90-4d71-4eba-8639-7cd2b5ca865c", + "fullUrl": "Observation/1732560511705489000.b9fb605f-b56d-4789-9f59-58b4265df4f8", "resource": { "resourceType": "Observation", - "id": "1730739045698125000.69ecfe90-4d71-4eba-8639-7cd2b5ca865c", + "id": "1732560511705489000.b9fb605f-b56d-4789-9f59-58b4265df4f8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1163,8 +1347,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "57723-9", + "display": "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE" + } + ] + }, "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1182,24 +1385,19 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", "valueString": "coding" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString": "99MDH" } ], - "code": "N", - "display": "No" + "code": "0516199364" } ] } } }, { - "fullUrl": "Observation/1730739045700350000.59a61811-fb31-472b-b7e6-f524364d158b", + "fullUrl": "Observation/1732560511707736000.8cd8206b-364c-4b72-8b92-552921b30ec1", "resource": { "resourceType": "Observation", - "id": "1730739045700350000.59a61811-fb31-472b-b7e6-f524364d158b", + "id": "1732560511707736000.8cd8206b-364c-4b72-8b92-552921b30ec1", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1214,7 +1412,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "CWE" + "valueId": "ST" }, { "url": "OBX.29", @@ -1228,19 +1426,7 @@ } ], "status": "unknown", - "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueCodeableConcept": { + "code": { "coding": [ { "extension": [ @@ -1250,21 +1436,35 @@ }, { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString": "99MDH" + "valueString": "LN" } ], - "code": "N", - "display": "No" + "system": "http://loinc.org", + "code": "62328-0", + "display": "DISCHARGE PROVIDER PRACTICE PHONE NUMBER" } ] - } + }, + "subject": { + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueString": "Daniel Davis/218-555-1000" } }, { - "fullUrl": "Observation/1730739045703506000.1e33d28c-8a2b-43ea-aca4-4476031b9f67", + "fullUrl": "Observation/1732560511709616000.18975279-2dc6-48cb-b073-8dc2c123262d", "resource": { "resourceType": "Observation", - "id": "1730739045703506000.1e33d28c-8a2b-43ea-aca4-4476031b9f67", + "id": "1732560511709616000.18975279-2dc6-48cb-b073-8dc2c123262d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1279,7 +1479,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "CWE" + "valueId": "ST" }, { "url": "OBX.29", @@ -1293,19 +1493,7 @@ } ], "status": "unknown", - "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueCodeableConcept": { + "code": { "coding": [ { "extension": [ @@ -1315,34 +1503,35 @@ }, { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString": "99MDH" + "valueString": "LN" } ], - "code": "N", - "display": "No" + "system": "http://loinc.org", + "code": "62324-9", + "display": "POST-DISCHARGE PROVIDER NAME" } ] }, - "subject" : { - "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + "subject": { + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueString" : "Daniel Davis/218-555-1000" + "valueString": "DAVIS, DANIEL, MD" } }, { - "fullUrl": "Observation/1730739045706083000.ac447d16-c594-4fac-8571-432fc8f7ca2e", + "fullUrl": "Observation/1732560511713056000.b8cd9b90-6da3-4d22-ab0d-c8847d7d6b03", "resource": { "resourceType": "Observation", - "id": "1730739045706083000.ac447d16-c594-4fac-8571-432fc8f7ca2e", + "id": "1732560511713056000.b8cd9b90-6da3-4d22-ab0d-c8847d7d6b03", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1357,7 +1546,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "CWE" + "valueId": "ST" }, { "url": "OBX.29", @@ -1367,23 +1556,198 @@ "url": "OBX.11", "valueString": "O" } - ] + ] + } + ], + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "62326-4", + "display": "POST-DISCHARGE PROVIDER PRACTICE NAME" + } + ] + }, + "subject": { + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueString": "Lakeridge Health Revere" + } + }, + { + "fullUrl": "ServiceRequest/1732560511725681000.1da16c6a-3fde-4b6b-b928-56d600c07c18", + "resource": { + "resourceType": "ServiceRequest", + "id": "1732560511725681000.1da16c6a-3fde-4b6b-b928-56d600c07c18", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "NW" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "20230506052913-0500" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ + { + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1732560511721539000.4c3275ea-1d6d-4358-b609-d98f4cd5b54b" + } + }, + { + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1732560511722310000.3a3a3b2d-2eb1-4295-9b6a-b5dadea32a64" + } + }, + { + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1732560511723434000.d581902c-b16e-44d2-b43b-b6d3b0a48827" + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.2", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "EPIC" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "421832901" + } + }, + { + "url": "OBR.15.1", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "440500007" + } + ] + } + }, + { + "url": "OBR.15.2", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "Blood spot specimen" + } + ] + } + }, + { + "url": "OBR.15.3", + "valueString": "SCT" + }, + { + "url": "OBR.7", + "valueDateTime": "2023-05-06T05:00:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000" + } + ] + } + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "EPIC" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" + } + ] + }, + "value": "421832901" } ], "status": "unknown", - "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueCodeableConcept": { + "code": { "coding": [ { "extension": [ @@ -1397,306 +1761,456 @@ } ], "system": "http://loinc.org", - "code": "LA12418-2", - "display": "TPN" + "code": "54089-8", + "display": "Newborn screening panel American Health Information Community (AHIC)" } ] }, - "subject" : { - "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + "subject": { + "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "authoredOn": "2023-05-06T05:29:13-05:00", + "_authoredOn": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506052913-0500" } ] }, - "valueString" : "DAVIS, DANIEL, MD" + "requester": { + "reference": "PractitionerRole/1732560511717059000.fc4d1491-112d-49e6-a7af-b04c870de159" + }, + "supportingInfo": [ + { + "reference": "Observation/1732560511685409000.68ec79c6-ca91-4584-a18c-edf96c10ea81" + }, + { + "reference": "Observation/1732560511687601000.49535bc8-4b68-4f91-b9b7-c8750e2d8f7d" + }, + { + "reference": "Observation/1732560511689759000.2564e813-a596-4109-80a4-ba7dc42d24e5" + }, + { + "reference": "Observation/1732560511692143000.5ba6549d-7b30-40a2-8259-07901724e390" + }, + { + "reference": "Observation/1732560511694464000.6c92cfb0-0578-45f0-b0be-390fb453fa53" + }, + { + "reference": "Observation/1732560511696929000.06885dba-e795-4a03-8be4-76f255868d9b" + }, + { + "reference": "Observation/1732560511700247000.83d485ad-8bf1-47d0-9a6c-bf7e83f78fb8" + }, + { + "reference": "Observation/1732560511702948000.7d0cd160-1c90-40a5-9b5c-8e2c2f0a8bf8" + }, + { + "reference": "Observation/1732560511705489000.b9fb605f-b56d-4789-9f59-58b4265df4f8" + }, + { + "reference": "Observation/1732560511707736000.8cd8206b-364c-4b72-8b92-552921b30ec1" + }, + { + "reference": "Observation/1732560511709616000.18975279-2dc6-48cb-b073-8dc2c123262d" + }, + { + "reference": "Observation/1732560511713056000.b8cd9b90-6da3-4d22-ab0d-c8847d7d6b03" + } + ] } }, { - "fullUrl": "Observation/1730739045708800000.071d99fc-d52a-49eb-8832-5ea9a8783a51", + "fullUrl": "Organization/1732560511717357000.c2922d7b-cba8-496a-a7ca-cf304d64c11b", "resource": { - "resourceType": "Observation", - "id": "1730739045708800000.071d99fc-d52a-49eb-8832-5ea9a8783a51", - "extension": [ + "resourceType": "Organization", + "id": "1732560511717357000.c2922d7b-cba8-496a-a7ca-cf304d64c11b", + "identifier": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "2" - }, + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "NPI" + } + ] + } + }, + { + "fullUrl": "Practitioner/1732560511718325000.97a34171-7c25-4846-bc20-2c4e5232ca24", + "resource": { + "resourceType": "Practitioner", + "id": "1732560511718325000.97a34171-7c25-4846-bc20-2c4e5232ca24", + "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + } + ] }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", "extension": [ { - "url": "OBX.2", - "valueId": "CWE" - }, - { - "url": "OBX.29", - "valueId": "QST" + "url": "XCN.3", + "valueString": "JANE" }, { - "url": "OBX.11", - "valueString": "O" + "url": "XCN.10", + "valueString": "L" } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" } ], - "status": "unknown", - "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "value": "1265136360", + "assigner": { + "reference": "Organization/1732560511717357000.c2922d7b-cba8-496a-a7ca-cf304d64c11b" } - ] - }, - "valueCodeableConcept": { - "coding": [ - { + } + ], + "name": [ + { + "use": "official", + "family": "JONES", + "given": [ + "JANE" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732560511719345000.3958aac8-8a3a-4112-ac2f-7bf06f9b1671", + "resource": { + "resourceType": "Organization", + "id": "1732560511719345000.3958aac8-8a3a-4112-ac2f-7bf06f9b1671", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString": "coding" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString": "LN" + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } } ], - "system": "http://loinc.org", - "code": "LA16914-6", - "display": "BREAST MILK" + "code": "L" } - ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "1043269798" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CMS" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "value": "1043269798" + } + ], + "name": "ST. CLOUD HOSPITAL" + } + }, + { + "fullUrl": "PractitionerRole/1732560511717059000.fc4d1491-112d-49e6-a7af-b04c870de159", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732560511717059000.fc4d1491-112d-49e6-a7af-b04c870de159", + "practitioner": { + "reference": "Practitioner/1732560511718325000.97a34171-7c25-4846-bc20-2c4e5232ca24" + }, + "organization": { + "reference": "Organization/1732560511719345000.3958aac8-8a3a-4112-ac2f-7bf06f9b1671" } } }, { - "fullUrl": "Observation/1730739045711124000.6a42730c-2d26-4f7c-a363-265ddf0f78ea", + "fullUrl": "Organization/1732560511721539000.4c3275ea-1d6d-4358-b609-d98f4cd5b54b", "resource": { - "resourceType": "Observation", - "id": "1730739045711124000.6a42730c-2d26-4f7c-a363-265ddf0f78ea", + "resourceType": "Organization", + "id": "1732560511721539000.4c3275ea-1d6d-4358-b609-d98f4cd5b54b", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension": [ { - "url": "OBX.2", - "valueId": "CWE" - }, - { - "url": "OBX.29", - "valueId": "QST" - }, - { - "url": "OBX.11", - "valueString": "O" + "url": "XON.10", + "valueString": "1043269798" } ] } ], - "status": "unknown", - "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueCodeableConcept": { - "coding": [ - { - "extension": [ + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CMS" + } + ] + } + ], + "type": { + "coding": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString": "coding" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" } - ], - "code": "0516199364" - } - ] - } + ] + }, + "value": "1043269798" + } + ], + "name": "ST. CLOUD HOSPITAL" } }, { - "fullUrl": "Observation/1730739045712805000.c6ba70d3-dd36-4033-85cb-e41197c6a2ca", + "fullUrl": "Organization/1732560511722310000.3a3a3b2d-2eb1-4295-9b6a-b5dadea32a64", "resource": { - "resourceType": "Observation", - "id": "1730739045712805000.c6ba70d3-dd36-4033-85cb-e41197c6a2ca", + "resourceType": "Organization", + "id": "1732560511722310000.3a3a3b2d-2eb1-4295-9b6a-b5dadea32a64", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension": [ { - "url": "OBX.2", - "valueId": "ST" - }, - { - "url": "OBX.29", - "valueId": "QST" - }, + "url": "XON.10", + "valueString": "739" + } + ] + } + ], + "identifier": [ + { + "extension": [ { - "url": "OBX.11", - "valueString": "O" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "MN Public Health Lab" + } + ] } ], - "value" : "NPI" + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "value": "739" } ], - "status": "unknown", - "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueString": "Daniel Davis/218-555-1000" + "name": "ST. CLOUD HOSPITAL" } }, { - "fullUrl": "Observation/1730739045714474000.1778e192-0a14-4b24-9fdd-56feeceab7c7", + "fullUrl": "Organization/1732560511722669000.82aa091b-f7aa-438a-bba9-a3d888fd10a2", "resource": { - "resourceType": "Observation", - "id": "1730739045714474000.1778e192-0a14-4b24-9fdd-56feeceab7c7", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" - }, + "resourceType": "Organization", + "id": "1732560511722669000.82aa091b-f7aa-438a-bba9-a3d888fd10a2", + "identifier": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "OBX.2", - "valueId": "ST" - }, - { - "url": "OBX.29", - "valueId": "QST" - }, - { - "url": "OBX.11", - "valueString": "O" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } - ] + ], + "value": "NPI" } - ], - "status": "unknown", - "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueString": "DAVIS, DANIEL, MD" + ] } }, { - "fullUrl": "Observation/1730739045716087000.f8dae56a-14fe-4a40-a229-4978b250eb4f", + "fullUrl": "Practitioner/1732560511723434000.d581902c-b16e-44d2-b43b-b6d3b0a48827", "resource": { - "resourceType": "Observation", - "id": "1730739045716087000.f8dae56a-14fe-4a40-a229-4978b250eb4f", + "resourceType": "Practitioner", + "id": "1732560511723434000.d581902c-b16e-44d2-b43b-b6d3b0a48827", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + } + ] }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", "extension": [ { - "url": "OBX.2", - "valueId": "ST" - }, - { - "url": "OBX.29", - "valueId": "QST" + "url": "XCN.3", + "valueString": "JANE" }, { - "url": "OBX.11", - "valueString": "O" + "url": "XCN.10", + "valueString": "L" } ] } ], - "status": "unknown", - "subject": { - "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "value": "1265136360", + "assigner": { + "reference": "Organization/1732560511722669000.82aa091b-f7aa-438a-bba9-a3d888fd10a2" } - ] - }, - "valueString": "Lakeridge Health Revere" - } - }, - { - "fullUrl": "Specimen/1730739045723761000.769edddd-9a44-4394-af6d-bb7f2e6478e9", - "resource": { - "resourceType": "Specimen", - "id": "1730739045723761000.769edddd-9a44-4394-af6d-bb7f2e6478e9", - "extension": [ + } + ], + "name": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString": "SPM" + "use": "official", + "family": "JONES", + "given": [ + "JANE" + ] } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir index fd137a653ca..3392f6faf3f 100644 --- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir +++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir @@ -1,8 +1,8 @@ { "resourceType": "Bundle", - "id": "1730738730597348000.b5a72365-7902-4cf3-a770-aae6df5dd1f9", + "id": "1732560463137196000.517d26a7-e9ca-4058-93f7-8779688fd074", "meta": { - "lastUpdated": "2024-11-04T11:45:30.608-05:00" + "lastUpdated": "2024-11-25T13:47:43.148-05:00" }, "identifier": { "system": "https://reportstream.cdc.gov/prime-router", @@ -12,10 +12,10 @@ "timestamp": "2023-05-06T06:29:16.000-04:00", "entry": [ { - "fullUrl": "MessageHeader/1730738730688276000.3886156a-8ef5-419f-96ba-42fc39d41be9", + "fullUrl": "MessageHeader/1732560463224593000.c15da8d5-9824-4a8e-8e1b-b8da20182ebc", "resource": { "resourceType": "MessageHeader", - "id": "1730738730688276000.3886156a-8ef5-419f-96ba-42fc39d41be9", + "id": "1732560463224593000.c15da8d5-9824-4a8e-8e1b-b8da20182ebc", "meta": { "tag": [ { @@ -129,12 +129,12 @@ ], "name": "NATUS", "receiver": { - "reference": "Organization/1730738730687016000.cca4c775-6507-4106-8e64-1d3c3ba8ec15" + "reference": "Organization/1732560463223416000.eb2d89b3-de83-4df1-8fb7-187d8a77b896" } } ], "sender": { - "reference": "Organization/1730738730665862000.6238b114-270b-4f77-891a-39ac66cf8caa" + "reference": "Organization/1732560463198995000.4ddc94e7-af16-42b1-9c77-566ef9c63d0c" }, "source": { "extension": [ @@ -160,10 +160,10 @@ } }, { - "fullUrl": "Organization/1730738730665862000.6238b114-270b-4f77-891a-39ac66cf8caa", + "fullUrl": "Organization/1732560463198995000.4ddc94e7-af16-42b1-9c77-566ef9c63d0c", "resource": { "resourceType": "Organization", - "id": "1730738730665862000.6238b114-270b-4f77-891a-39ac66cf8caa", + "id": "1732560463198995000.4ddc94e7-af16-42b1-9c77-566ef9c63d0c", "identifier": [ { "extension": [ @@ -195,10 +195,10 @@ } }, { - "fullUrl": "Organization/1730738730687016000.cca4c775-6507-4106-8e64-1d3c3ba8ec15", + "fullUrl": "Organization/1732560463223416000.eb2d89b3-de83-4df1-8fb7-187d8a77b896", "resource": { "resourceType": "Organization", - "id": "1730738730687016000.cca4c775-6507-4106-8e64-1d3c3ba8ec15", + "id": "1732560463223416000.eb2d89b3-de83-4df1-8fb7-187d8a77b896", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -237,16 +237,150 @@ } }, { - "fullUrl": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873", + "fullUrl": "Provenance/1732560463817806000.c7fb5a8a-64f1-4a64-9047-e73b69a802a3", + "resource": { + "resourceType": "Provenance", + "id": "1732560463817806000.c7fb5a8a-64f1-4a64-9047-e73b69a802a3", + "recorded": "2023-05-06T05:29:16-05:00", + "activity": { + "coding": [ + { + "display": "ORM^O01^ORM_O01" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "author" + } + ] + }, + "who": { + "reference": "Organization/1732560463816972000.f19dff49-46b3-4fc3-9c5a-5ca3bd5fe13d" + } + } + ] + } + }, + { + "fullUrl": "Organization/1732560463816972000.f19dff49-46b3-4fc3-9c5a-5ca3bd5fe13d", + "resource": { + "resourceType": "Organization", + "id": "1732560463816972000.f19dff49-46b3-4fc3-9c5a-5ca3bd5fe13d", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Centracare" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "DNS" + } + ] + }, + "value": "centracare.com" + } + ] + } + }, + { + "fullUrl": "Provenance/1732560463831364000.e4abf8f1-13de-4848-9210-1040538f6209", + "resource": { + "resourceType": "Provenance", + "id": "1732560463831364000.e4abf8f1-13de-4848-9210-1040538f6209", + "recorded": "2024-11-25T13:47:43Z", + "policy": [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity": { + "coding": [ + { + "code": "v2-FHIR transformation" + } + ] + }, + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" + } + ] + }, + "who": { + "reference": "Organization/1732560463830884000.0a87d5ea-d3da-4e51-8c33-149b9a248d42" + } + } + ] + } + }, + { + "fullUrl": "Organization/1732560463830884000.0a87d5ea-d3da-4e51-8c33-149b9a248d42", + "resource": { + "resourceType": "Organization", + "id": "1732560463830884000.0a87d5ea-d3da-4e51-8c33-149b9a248d42", + "identifier": [ + { + "value": "CDC PRIME - Atlanta" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" + } + ] + } + }, + { + "fullUrl": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c", "resource": { "resourceType": "Patient", - "id": "1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873", + "id": "1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", "extension": [ { - "url": "PID.8" + "url": "PID.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "M" + } + ] + } }, { "url": "PID.24", @@ -305,7 +439,7 @@ }, "value": "11102779", "assigner": { - "reference": "Organization/1730738731258707000.cf31cadb-f202-4bde-aa3e-58aeeb2b27ac" + "reference": "Organization/1732560463839308000.47e0c50d-64f5-42dd-8f8e-b18d52dfbc88" } } ], @@ -418,7 +552,7 @@ "link": [ { "other": { - "reference": "RelatedPerson/1730738731274605000.5d0a2328-c431-4aab-9064-26de004d7d38" + "reference": "RelatedPerson/1732560463848989000.e6c3e63c-9219-430b-9587-4dfa5fef089c" }, "type": "seealso" } @@ -426,10 +560,10 @@ } }, { - "fullUrl": "Organization/1730738731258707000.cf31cadb-f202-4bde-aa3e-58aeeb2b27ac", + "fullUrl": "Organization/1732560463839308000.47e0c50d-64f5-42dd-8f8e-b18d52dfbc88", "resource": { "resourceType": "Organization", - "id": "1730738731258707000.cf31cadb-f202-4bde-aa3e-58aeeb2b27ac", + "id": "1732560463839308000.47e0c50d-64f5-42dd-8f8e-b18d52dfbc88", "identifier": [ { "extension": [ @@ -444,10 +578,10 @@ } }, { - "fullUrl": "RelatedPerson/1730738731274605000.5d0a2328-c431-4aab-9064-26de004d7d38", + "fullUrl": "RelatedPerson/1732560463848989000.e6c3e63c-9219-430b-9587-4dfa5fef089c", "resource": { "resourceType": "RelatedPerson", - "id": "1730738731274605000.5d0a2328-c431-4aab-9064-26de004d7d38", + "id": "1732560463848989000.e6c3e63c-9219-430b-9587-4dfa5fef089c", "identifier": [ { "extension": [ @@ -466,495 +600,470 @@ } }, { - "fullUrl": "ServiceRequest/1730738731313444000.eb728ed1-85c7-41f6-8ac5-b9f9da838787", + "fullUrl": "Provenance/1732560463865026000.14ec571c-6d04-425e-9125-a3c966e1d57a", "resource": { - "resourceType": "ServiceRequest", - "id": "1730738731313444000.eb728ed1-85c7-41f6-8ac5-b9f9da838787", + "resourceType": "Provenance", + "id": "1732560463865026000.14ec571c-6d04-425e-9125-a3c966e1d57a", + "target": [ + { + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" + } + ], + "recorded": "2024-11-25T13:47:43Z", + "activity": { + "coding": [ + { + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" + } + ] + } + } + }, + { + "fullUrl": "Observation/1732560463868656000.d9931814-009e-488f-9e9e-d9e2e9a0d88e", + "resource": { + "resourceType": "Observation", + "id": "1732560463868656000.d9931814-009e-488f-9e9e-d9e2e9a0d88e", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode": "NW" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString": "20230506052913-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "orc-21-ordering-facility-name", - "valueReference": { - "reference": "Organization/1730738731309095000.03da74e9-6434-4ded-9742-09c5ab19932f" - } - }, - { - "url": "orc-21-ordering-facility-name", - "valueReference": { - "reference": "Organization/1730738731310360000.2f784e80-0a21-4ad9-87ff-c5e7f5d5afd5" - } + "url": "OBX.2", + "valueId": "NM" }, { - "url": "orc-12-ordering-provider", - "valueReference": { - "reference": "Practitioner/1730738731311977000.d7ea85e0-64d8-4234-ad65-abcf714feec6" - } - } - ] - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension": [ - { - "url": "OBR.2", - "valueIdentifier": { - "extension": [ + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "EPIC" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode": "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" } ], - "system" : "http://unitsofmeasure.org", - "code" : "g", - "display" : "gram" + "system": "http://unitsofmeasure.org", + "code": "g", + "display": "gram" } - ], - "value": "421832901" + ] } - } - ] - } - ], - "identifier": [ - { - "extension": [ + }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "ORC.2" + "url": "OBX.29", + "valueId": "QST" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "EPIC" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode": "ISO" - } - ] + "url": "OBX.11", + "valueString": "O" } - ], - "type": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "PLAC" - } - ] - }, - "value": "421832901" + ] } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "8339-4", + "display": "BIRTH WEIGHT MEASURED" + } + ] + }, "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" }, - "authoredOn": "2023-05-06T05:29:13-05:00", - "_authoredOn": { + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506052913-0500" + "valueString": "20230506050000-0500" } ] }, - "requester": { - "reference": "PractitionerRole/1730738731302914000.403c7e15-3b25-4800-bbdd-abf7589450cb" + "valueQuantity": { + "value": 1769.859285, + "unit": "gram", + "system": "UCUM", + "code": "g" } } }, { - "fullUrl": "Organization/1730738731303356000.1d550b83-438d-4d19-9998-5434be62a215", - "resource": { - "resourceType": "Organization", - "id": "1730738731303356000.1d550b83-438d-4d19-9998-5434be62a215", - "identifier": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "HD.1" - } - ], - "value": "NPI" - } - ] - } - }, - { - "fullUrl": "Practitioner/1730738731304793000.ea2b1372-fc3a-44cc-ad74-4ca94fc13255", + "fullUrl": "Observation/1732560463872437000.ff33bbbf-a19c-4168-a776-d777e6292a53", "resource": { - "resourceType": "Practitioner", - "id": "1730738731304793000.ea2b1372-fc3a-44cc-ad74-4ca94fc13255", + "resourceType": "Observation", + "id": "1732560463872437000.ff33bbbf-a19c-4168-a776-d777e6292a53", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "NPI" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension": [ - { - "url": "XCN.3", - "valueString": "JANE" - }, - { - "url": "XCN.10", - "valueString": "L" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "ORC.12" - } - ], - "identifier": [ - { - "type": { - "coding": [ - { - "extension": [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ + { + "url": "OBX.2", + "valueId": "NM" + }, + { + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean": true + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" + } + ], + "system": "http://unitsofmeasure.org", + "code": "wk", + "display": "week" } - ], - "code": "NPI" - } - ] - }, - "value": "1265136360", - "assigner": { - "reference": "Organization/1730738731303356000.1d550b83-438d-4d19-9998-5434be62a215" - } - } - ], - "name": [ - { - "use": "official", - "family": "JONES", - "given": [ - "JANE" - ] - } - ] - } - }, - { - "fullUrl": "Organization/1730738731306205000.ae1ce8c4-b120-40f7-9470-5180ef5aba42", - "resource": { - "resourceType": "Organization", - "id": "1730738731306205000.ae1ce8c4-b120-40f7-9470-5180ef5aba42", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "XON.2" - } - ] - } + ] } - ] - } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension": [ + }, { - "url": "XON.10", - "valueString": "1043269798" + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.11", + "valueString": "O" } ] } ], - "identifier": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "CMS" - } - ] - } - ], - "type": { - "coding": [ + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "NPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } - ] - }, - "value": "1043269798" - } - ], - "name": "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl": "PractitionerRole/1730738731302914000.403c7e15-3b25-4800-bbdd-abf7589450cb", - "resource": { - "resourceType": "PractitionerRole", - "id": "1730738731302914000.403c7e15-3b25-4800-bbdd-abf7589450cb", - "practitioner": { - "reference": "Practitioner/1730738731304793000.ea2b1372-fc3a-44cc-ad74-4ca94fc13255" + ], + "system": "http://loinc.org", + "code": "57714-8", + "display": "OBSTETRIC ESTIMATION OF GESTATIONAL AGE" + } + ] }, - "organization": { - "reference": "Organization/1730738731306205000.ae1ce8c4-b120-40f7-9470-5180ef5aba42" + "subject": { + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueQuantity": { + "value": 32, + "unit": "week", + "system": "UCUM", + "code": "wk" } } }, { - "fullUrl": "Organization/1730738731309095000.03da74e9-6434-4ded-9742-09c5ab19932f", + "fullUrl": "Observation/1732560463875990000.b2d5769f-bf17-4c33-9fe8-ab809ff5432c", "resource": { - "resourceType": "Organization", - "id": "1730738731309095000.03da74e9-6434-4ded-9742-09c5ab19932f", + "resourceType": "Observation", + "id": "1732560463875990000.b2d5769f-bf17-4c33-9fe8-ab809ff5432c", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "XON.2" - } - ] - } - } - ] - } + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension": [ - { - "url": "XON.10", - "valueString": "1043269798" - } - ] - } - ], - "identifier": [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" + }, { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "CMS" - } - ] + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.11", + "valueString": "O" } - ], - "type": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "NPI" - } - ] - }, - "value": "1043269798" + ] } ], - "name": "ST. CLOUD HOSPITAL" - } - }, - { - "fullUrl": "Organization/1730738731310360000.2f784e80-0a21-4ad9-87ff-c5e7f5d5afd5", - "resource": { - "resourceType": "Organization", - "id": "1730738731310360000.2f784e80-0a21-4ad9-87ff-c5e7f5d5afd5", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding": { + "status": "unknown", + "code": { + "coding": [ + { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "XON.2" - } - ] - } + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "code" : "MNDSIB", - "display" : "DOES THE BABY HAVE A DECEASED SIBLING?" + "system": "http://loinc.org", + "code": "57713-0", + "display": "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION" } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension": [ - { - "url": "XON.10", - "valueString": "739" - } - ] - } - ], - "identifier": [ - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "MN Public Health Lab" - } - ] - } - ], - "type": { - "coding": [ + ] + }, + "subject": { + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueCodeableConcept": { + "coding": [ + { + "extension": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0203", - "code": "NPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } - ] - }, - "value": "739" - } - ], - "name": "ST. CLOUD HOSPITAL" + ], + "system": "http://loinc.org", + "code": "LA12419-0", + "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + } + ] + } } }, { - "fullUrl": "Organization/1730738731310862000.0ea5a2e1-5333-40f0-a17d-38cbe92257a1", + "fullUrl": "Observation/1732560463878796000.a41e65dc-a9b1-4a28-8206-6131bd92cd43", "resource": { - "resourceType": "Organization", - "id": "1730738731310862000.0ea5a2e1-5333-40f0-a17d-38cbe92257a1", - "identifier": [ + "resourceType": "Observation", + "id": "1732560463878796000.a41e65dc-a9b1-4a28-8206-6131bd92cd43", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" + }, { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "HD.1" + "url": "OBX.2", + "valueId": "CWE" + }, + { + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.11", + "valueString": "O" } - ], - "value": "NPI" + ] } - ] + ], + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "MNDSIB", + "display": "DOES THE BABY HAVE A DECEASED SIBLING?" + } + ] + }, + "subject": { + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "N", + "display": "No" + } + ] + } } }, { - "fullUrl": "Practitioner/1730738731311977000.d7ea85e0-64d8-4234-ad65-abcf714feec6", + "fullUrl": "Observation/1732560463881421000.b5199e33-5e9c-4cda-832e-da7faf1c6d2b", "resource": { - "resourceType": "Practitioner", - "id": "1730738731311977000.d7ea85e0-64d8-4234-ad65-abcf714feec6", + "resourceType": "Observation", + "id": "1732560463881421000.b5199e33-5e9c-4cda-832e-da7faf1c6d2b", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString": "NPI" - } - ] + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "1" }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", + "valueCode": "AOE" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "XCN.3", - "valueString": "JANE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url": "XCN.10", - "valueString": "L" + "url": "OBX.29", + "valueId": "QST" + }, + { + "url": "OBX.11", + "valueString": "O" } ] } ], - "identifier": [ - { - "type": { - "coding": [ + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean": true - } - ], - "code": "NPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" } - ] - }, - "value": "1265136360", - "assigner": { - "reference": "Organization/1730738731310862000.0ea5a2e1-5333-40f0-a17d-38cbe92257a1" + ], + "code": "MNDEFECT", + "display": "DOES THE BABY HAVE BIRTH DEFECTS?" } - } - ], - "name": [ - { - "use": "official", - "family": "JONES", - "given": [ - "JANE" - ] - } - ] + ] + }, + "subject": { + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "N", + "display": "No" + } + ] + } } }, { - "fullUrl": "Observation/1730738731510327000.88b4ec9b-b9b3-4502-a606-0e7a3cb9b155", + "fullUrl": "Observation/1732560463884184000.9eb8d049-95d5-45f3-8017-84984bc98cfe", "resource": { "resourceType": "Observation", - "id": "1730738731510327000.88b4ec9b-b9b3-4502-a606-0e7a3cb9b155", + "id": "1732560463884184000.9eb8d049-95d5-45f3-8017-84984bc98cfe", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -969,10 +1078,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "NM" - }, - { - "url": "OBX.6" + "valueId": "CWE" }, { "url": "OBX.29", @@ -986,8 +1092,26 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "MNFAM", + "display": "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL" + } + ] + }, "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -998,19 +1122,31 @@ } ] }, - "valueQuantity": { - "value": 1769.859285, - "unit": "gram", - "system": "UCUM", - "code": "g" + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "99MDH" + } + ], + "code": "N", + "display": "No" + } + ] } } }, { - "fullUrl": "Observation/1730738731513131000.f5e9b62c-add4-41d8-897b-03c1f6ae8500", + "fullUrl": "Observation/1732560463886871000.629e13bb-5ce8-4d9e-a2c9-1d935b10ca9f", "resource": { "resourceType": "Observation", - "id": "1730738731513131000.f5e9b62c-add4-41d8-897b-03c1f6ae8500", + "id": "1732560463886871000.629e13bb-5ce8-4d9e-a2c9-1d935b10ca9f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1025,10 +1161,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "NM" - }, - { - "url": "OBX.6" + "valueId": "CWE" }, { "url": "OBX.29", @@ -1042,8 +1175,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "67704-7", + "display": "FEEDING TYPES" + } + ] + }, "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1053,24 +1205,37 @@ "valueString": "20230506050000-0500" } ] - }, - "valueQuantity": { - "value": 32, - "unit": "week", - "system": "UCUM", - "code": "wk" + }, + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "LA12418-2", + "display": "TPN" + } + ] } } }, { - "fullUrl": "Observation/1730738731515940000.b6b3f42f-91f0-496f-9fd9-eb22a31a7ffa", + "fullUrl": "Observation/1732560463889572000.c7462fee-e160-41ec-b001-8ab991db07cc", "resource": { "resourceType": "Observation", - "id": "1730738731515940000.b6b3f42f-91f0-496f-9fd9-eb22a31a7ffa", + "id": "1732560463889572000.c7462fee-e160-41ec-b001-8ab991db07cc", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" + "valueString": "2" }, { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", @@ -1095,8 +1260,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "67704-7", + "display": "FEEDING TYPES" + } + ] + }, "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1121,18 +1305,18 @@ } ], "system": "http://loinc.org", - "code": "LA12419-0", - "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION" + "code": "LA16914-6", + "display": "BREAST MILK" } ] } } }, { - "fullUrl": "Observation/1730738731518273000.190131f9-cfca-4cee-8478-e0b07408fb03", + "fullUrl": "Observation/1732560463892002000.02dfff3e-dff7-47e8-a365-e2f492e64d08", "resource": { "resourceType": "Observation", - "id": "1730738731518273000.190131f9-cfca-4cee-8478-e0b07408fb03", + "id": "1732560463892002000.02dfff3e-dff7-47e8-a365-e2f492e64d08", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1161,8 +1345,27 @@ } ], "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "57723-9", + "display": "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE" + } + ] + }, "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" }, "effectiveDateTime": "2023-05-06T05:00:00-05:00", "_effectiveDateTime": { @@ -1180,24 +1383,19 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", "valueString": "coding" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString": "99MDH" } ], - "code": "N", - "display": "No" + "code": "0516199364" } ] } } }, { - "fullUrl": "Observation/1730738731520682000.b4c586d3-597e-47ab-80c2-c7c2bc54ea49", + "fullUrl": "Observation/1732560463894461000.9b02a635-1544-4b4e-a632-8cf72a382572", "resource": { "resourceType": "Observation", - "id": "1730738731520682000.b4c586d3-597e-47ab-80c2-c7c2bc54ea49", + "id": "1732560463894461000.9b02a635-1544-4b4e-a632-8cf72a382572", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1212,7 +1410,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "CWE" + "valueId": "ST" }, { "url": "OBX.29", @@ -1226,19 +1424,7 @@ } ], "status": "unknown", - "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueCodeableConcept": { + "code": { "coding": [ { "extension": [ @@ -1248,21 +1434,35 @@ }, { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString": "99MDH" + "valueString": "LN" } ], - "code": "N", - "display": "No" + "system": "http://loinc.org", + "code": "62328-0", + "display": "DISCHARGE PROVIDER PRACTICE PHONE NUMBER" } ] - } + }, + "subject": { + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueString": "Daniel Davis/218-555-1000" } }, { - "fullUrl": "Observation/1730738731523380000.352af6c9-ee7a-46dd-affc-ae5072396619", + "fullUrl": "Observation/1732560463896580000.b4921e15-5a39-445b-bcd2-fe30902cac6b", "resource": { "resourceType": "Observation", - "id": "1730738731523380000.352af6c9-ee7a-46dd-affc-ae5072396619", + "id": "1732560463896580000.b4921e15-5a39-445b-bcd2-fe30902cac6b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1277,7 +1477,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "CWE" + "valueId": "ST" }, { "url": "OBX.29", @@ -1291,19 +1491,7 @@ } ], "status": "unknown", - "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueCodeableConcept": { + "code": { "coding": [ { "extension": [ @@ -1313,34 +1501,35 @@ }, { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString": "99MDH" + "valueString": "LN" } ], - "code": "N", - "display": "No" + "system": "http://loinc.org", + "code": "62324-9", + "display": "POST-DISCHARGE PROVIDER NAME" } ] }, - "subject" : { - "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + "subject": { + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" } ] }, - "valueString" : "Daniel Davis/218-555-1000" + "valueString": "DAVIS, DANIEL, MD" } }, { - "fullUrl": "Observation/1730738731526556000.2b0159b2-169e-48c8-9015-0e1b8818ca0c", + "fullUrl": "Observation/1732560463898808000.9872ccd7-0e23-4fa6-a2ce-2cc7e0ce07a3", "resource": { "resourceType": "Observation", - "id": "1730738731526556000.2b0159b2-169e-48c8-9015-0e1b8818ca0c", + "id": "1732560463898808000.9872ccd7-0e23-4fa6-a2ce-2cc7e0ce07a3", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -1355,7 +1544,7 @@ "extension": [ { "url": "OBX.2", - "valueId": "CWE" + "valueId": "ST" }, { "url": "OBX.29", @@ -1365,23 +1554,198 @@ "url": "OBX.11", "valueString": "O" } - ] + ] + } + ], + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "code": "62326-4", + "display": "POST-DISCHARGE PROVIDER PRACTICE NAME" + } + ] + }, + "subject": { + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" + }, + "effectiveDateTime": "2023-05-06T05:00:00-05:00", + "_effectiveDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000-0500" + } + ] + }, + "valueString": "Lakeridge Health Revere" + } + }, + { + "fullUrl": "ServiceRequest/1732560464091181000.f098610a-e954-4a1f-962a-84a040c087a3", + "resource": { + "resourceType": "ServiceRequest", + "id": "1732560464091181000.f098610a-e954-4a1f-962a-84a040c087a3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "NW" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "20230506052913-0500" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ + { + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1732560464084616000.557a839f-fd07-44e4-8a5a-6a809c443dc8" + } + }, + { + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1732560464085384000.81024e7a-2bdc-4cb6-beba-2aaa10eeb4de" + } + }, + { + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1732560464086477000.a4c334f5-625e-4f80-ac45-0582c86e78ec" + } + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.2", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "EPIC" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "value": "421832901" + } + }, + { + "url": "OBR.15.1", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "440500007" + } + ] + } + }, + { + "url": "OBR.15.2", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "Blood spot specimen" + } + ] + } + }, + { + "url": "OBR.15.3", + "valueString": "SCT" + }, + { + "url": "OBR.7", + "valueDateTime": "2023-05-06T05:00:00Z", + "_valueDateTime": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506050000" + } + ] + } + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "EPIC" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "1.2.840.114350.1.13.145.2.7.2.695071" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" + } + ] + }, + "value": "421832901" } ], "status": "unknown", - "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueCodeableConcept": { + "code": { "coding": [ { "extension": [ @@ -1395,306 +1759,456 @@ } ], "system": "http://loinc.org", - "code": "LA12418-2", - "display": "TPN" + "code": "54089-8", + "display": "Newborn screening panel American Health Information Community (AHIC)" } ] }, - "subject" : { - "reference" : "Patient/1729550865931405000.c51809c5-fc8c-4216-83c4-e262b81f6ddb" + "subject": { + "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c" }, - "effectiveDateTime" : "2023-05-06T05:00:00-05:00", - "_effectiveDateTime" : { - "extension" : [ + "authoredOn": "2023-05-06T05:29:13-05:00", + "_authoredOn": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230506050000-0500" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230506052913-0500" } ] }, - "valueString" : "DAVIS, DANIEL, MD" + "requester": { + "reference": "PractitionerRole/1732560464079296000.34904a47-9965-4150-ae6d-2d1795f5492c" + }, + "supportingInfo": [ + { + "reference": "Observation/1732560463868656000.d9931814-009e-488f-9e9e-d9e2e9a0d88e" + }, + { + "reference": "Observation/1732560463872437000.ff33bbbf-a19c-4168-a776-d777e6292a53" + }, + { + "reference": "Observation/1732560463875990000.b2d5769f-bf17-4c33-9fe8-ab809ff5432c" + }, + { + "reference": "Observation/1732560463878796000.a41e65dc-a9b1-4a28-8206-6131bd92cd43" + }, + { + "reference": "Observation/1732560463881421000.b5199e33-5e9c-4cda-832e-da7faf1c6d2b" + }, + { + "reference": "Observation/1732560463884184000.9eb8d049-95d5-45f3-8017-84984bc98cfe" + }, + { + "reference": "Observation/1732560463886871000.629e13bb-5ce8-4d9e-a2c9-1d935b10ca9f" + }, + { + "reference": "Observation/1732560463889572000.c7462fee-e160-41ec-b001-8ab991db07cc" + }, + { + "reference": "Observation/1732560463892002000.02dfff3e-dff7-47e8-a365-e2f492e64d08" + }, + { + "reference": "Observation/1732560463894461000.9b02a635-1544-4b4e-a632-8cf72a382572" + }, + { + "reference": "Observation/1732560463896580000.b4921e15-5a39-445b-bcd2-fe30902cac6b" + }, + { + "reference": "Observation/1732560463898808000.9872ccd7-0e23-4fa6-a2ce-2cc7e0ce07a3" + } + ] } }, { - "fullUrl": "Observation/1730738731529037000.180d231d-59dd-4321-8845-27197fa048fd", + "fullUrl": "Organization/1732560464079844000.0841fbf6-fb0f-4996-a66f-95df2651bc5e", "resource": { - "resourceType": "Observation", - "id": "1730738731529037000.180d231d-59dd-4321-8845-27197fa048fd", - "extension": [ + "resourceType": "Organization", + "id": "1732560464079844000.0841fbf6-fb0f-4996-a66f-95df2651bc5e", + "identifier": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "2" - }, + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "NPI" + } + ] + } + }, + { + "fullUrl": "Practitioner/1732560464080827000.fbc9b2c7-9a0b-48ec-8769-0af93a42d207", + "resource": { + "resourceType": "Practitioner", + "id": "1732560464080827000.fbc9b2c7-9a0b-48ec-8769-0af93a42d207", + "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + } + ] }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", "extension": [ { - "url": "OBX.2", - "valueId": "CWE" - }, - { - "url": "OBX.29", - "valueId": "QST" + "url": "XCN.3", + "valueString": "JANE" }, { - "url": "OBX.11", - "valueString": "O" + "url": "XCN.10", + "valueString": "L" } ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" } ], - "status": "unknown", - "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "value": "1265136360", + "assigner": { + "reference": "Organization/1732560464079844000.0841fbf6-fb0f-4996-a66f-95df2651bc5e" } - ] - }, - "valueCodeableConcept": { - "coding": [ - { + } + ], + "name": [ + { + "use": "official", + "family": "JONES", + "given": [ + "JANE" + ] + } + ] + } + }, + { + "fullUrl": "Organization/1732560464081718000.d477fd89-88c5-4c92-93d2-e06b84429c8f", + "resource": { + "resourceType": "Organization", + "id": "1732560464081718000.d477fd89-88c5-4c92-93d2-e06b84429c8f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString": "coding" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString": "LN" + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } } ], - "system": "http://loinc.org", - "code": "LA16914-6", - "display": "BREAST MILK" + "code": "L" } - ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.10", + "valueString": "1043269798" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CMS" + } + ] + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "value": "1043269798" + } + ], + "name": "ST. CLOUD HOSPITAL" + } + }, + { + "fullUrl": "PractitionerRole/1732560464079296000.34904a47-9965-4150-ae6d-2d1795f5492c", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732560464079296000.34904a47-9965-4150-ae6d-2d1795f5492c", + "practitioner": { + "reference": "Practitioner/1732560464080827000.fbc9b2c7-9a0b-48ec-8769-0af93a42d207" + }, + "organization": { + "reference": "Organization/1732560464081718000.d477fd89-88c5-4c92-93d2-e06b84429c8f" } } }, { - "fullUrl": "Observation/1730738731531149000.c5106738-6a97-4414-9da1-bea8ae0d9965", + "fullUrl": "Organization/1732560464084616000.557a839f-fd07-44e4-8a5a-6a809c443dc8", "resource": { - "resourceType": "Observation", - "id": "1730738731531149000.c5106738-6a97-4414-9da1-bea8ae0d9965", + "resourceType": "Organization", + "id": "1732560464084616000.557a839f-fd07-44e4-8a5a-6a809c443dc8", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension": [ { - "url": "OBX.2", - "valueId": "CWE" - }, - { - "url": "OBX.29", - "valueId": "QST" - }, - { - "url": "OBX.11", - "valueString": "O" + "url": "XON.10", + "valueString": "1043269798" } ] } ], - "status": "unknown", - "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueCodeableConcept": { - "coding": [ - { - "extension": [ + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CMS" + } + ] + } + ], + "type": { + "coding": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString": "coding" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" } - ], - "code": "0516199364" - } - ] - } + ] + }, + "value": "1043269798" + } + ], + "name": "ST. CLOUD HOSPITAL" } }, { - "fullUrl": "Observation/1730738731532885000.a4961dae-caa2-429c-b378-454e3a868984", + "fullUrl": "Organization/1732560464085384000.81024e7a-2bdc-4cb6-beba-2aaa10eeb4de", "resource": { - "resourceType": "Observation", - "id": "1730738731532885000.a4961dae-caa2-429c-b378-454e3a868984", + "resourceType": "Organization", + "id": "1732560464085384000.81024e7a-2bdc-4cb6-beba-2aaa10eeb4de", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "L" + } + ] + } + } + ], + "code": "L" + } }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension": [ { - "url": "OBX.2", - "valueId": "ST" - }, - { - "url": "OBX.29", - "valueId": "QST" - }, + "url": "XON.10", + "valueString": "739" + } + ] + } + ], + "identifier": [ + { + "extension": [ { - "url": "OBX.11", - "valueString": "O" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "MN Public Health Lab" + } + ] } ], - "value" : "NPI" + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "value": "739" } ], - "status": "unknown", - "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueString": "Daniel Davis/218-555-1000" + "name": "ST. CLOUD HOSPITAL" } }, { - "fullUrl": "Observation/1730738731534684000.1cf416d4-71bd-4cc2-aa61-d11e9df2aace", + "fullUrl": "Organization/1732560464085781000.072e5d55-f93d-4fd4-b49f-2eded70f92e6", "resource": { - "resourceType": "Observation", - "id": "1730738731534684000.1cf416d4-71bd-4cc2-aa61-d11e9df2aace", - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" - }, + "resourceType": "Organization", + "id": "1732560464085781000.072e5d55-f93d-4fd4-b49f-2eded70f92e6", + "identifier": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", "extension": [ { - "url": "OBX.2", - "valueId": "ST" - }, - { - "url": "OBX.29", - "valueId": "QST" - }, - { - "url": "OBX.11", - "valueString": "O" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } - ] + ], + "value": "NPI" } - ], - "status": "unknown", - "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" - } - ] - }, - "valueString": "DAVIS, DANIEL, MD" + ] } }, { - "fullUrl": "Observation/1730738731536431000.f80e1acd-096d-4dc3-9ce4-a83034097979", + "fullUrl": "Practitioner/1732560464086477000.a4c334f5-625e-4f80-ac45-0582c86e78ec", "resource": { - "resourceType": "Observation", - "id": "1730738731536431000.f80e1acd-096d-4dc3-9ce4-a83034097979", + "resourceType": "Practitioner", + "id": "1732560464086477000.a4c334f5-625e-4f80-ac45-0582c86e78ec", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString": "1" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type", - "valueCode": "AOE" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + } + ] }, { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", "extension": [ { - "url": "OBX.2", - "valueId": "ST" - }, - { - "url": "OBX.29", - "valueId": "QST" + "url": "XCN.3", + "valueString": "JANE" }, { - "url": "OBX.11", - "valueString": "O" + "url": "XCN.10", + "valueString": "L" } ] } ], - "status": "unknown", - "subject": { - "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873" - }, - "effectiveDateTime": "2023-05-06T05:00:00-05:00", - "_effectiveDateTime": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString": "20230506050000-0500" + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "value": "1265136360", + "assigner": { + "reference": "Organization/1732560464085781000.072e5d55-f93d-4fd4-b49f-2eded70f92e6" } - ] - }, - "valueString": "Lakeridge Health Revere" - } - }, - { - "fullUrl": "Specimen/1730738731544333000.8f505bef-a90a-4fdf-b4fa-27a1777dae04", - "resource": { - "resourceType": "Specimen", - "id": "1730738731544333000.8f505bef-a90a-4fdf-b4fa-27a1777dae04", - "extension": [ + } + ], + "name": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString": "SPM" + "use": "official", + "family": "JONES", + "given": [ + "JANE" + ] } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir index 2b970b74ffd..049fc4fbdce 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir @@ -1,21 +1,21 @@ { "resourceType": "Bundle", - "id": "1731704146603489000.6dc269cd-cd37-4587-89c1-e32656e91044", + "id": "1732560946103663000.00c83475-61b1-4722-b571-392974c116e2", "meta": { - "lastUpdated": "2024-11-15T12:55:46.608-08:00" + "lastUpdated": "2024-11-25T13:55:46.115-05:00" }, "identifier": { "system": "https://reportstream.cdc.gov/prime-router", "value": "0123" }, "type": "message", - "timestamp": "2019-07-20T09:12:29.000-07:00", + "timestamp": "2019-07-20T09:12:29.000-04:00", "entry": [ { - "fullUrl": "MessageHeader/1731704146658361000.51de3625-346e-48b2-a54a-3bf44e5ee904", + "fullUrl": "MessageHeader/1732560946205658000.d9f872a1-d8e0-4027-a6ff-0dd10709fdaa", "resource": { "resourceType": "MessageHeader", - "id": "1731704146658361000.51de3625-346e-48b2-a54a-3bf44e5ee904", + "id": "1732560946205658000.d9f872a1-d8e0-4027-a6ff-0dd10709fdaa", "meta": { "security": [ { @@ -208,7 +208,7 @@ "name": "txdshslabNBS", "endpoint": "urn:oid:2.16.840.1.114222.4.1.181960.2", "receiver": { - "reference": "Organization/1731704146654900000.5f694f3c-0cf8-44d3-8ead-cef521e630f5" + "reference": "Organization/1732560946198606000.5af9a2d6-b4b1-46ca-8549-a276f1770944" } }, { @@ -229,17 +229,17 @@ "name": "ReceivingNetworkAddress", "endpoint": "urn:oid:9.87.123.1.114222.XXX", "receiver": { - "reference": "Organization/1731704146655763000.dafb2e41-9f17-44f1-8f96-fb4500d2f684" + "reference": "Organization/1732560946201623000.fc8b853a-cce6-4662-abb3-cbbc902841f5" } }, { "receiver": { - "reference": "Organization/1731704146658169000.27382a02-0245-4593-8863-e8123707fa5d" + "reference": "Organization/1732560946205362000.259d38b6-49a7-4764-add4-94f024ea3c67" } } ], "sender": { - "reference": "Organization/1731704146634292000.932f8e2e-9c80-4c19-98c4-124f82549151" + "reference": "Organization/1732560946168730000.5485c015-7831-4992-bc78-8c2eff3d4da9" }, "source": { "extension": [ @@ -265,15 +265,15 @@ "endpoint": "urn:oid:2.16.840.1.114222.XXX" }, "responsible": { - "reference": "Organization/1731704146654227000.858e1290-25c4-40be-88d9-32ad45703fd8" + "reference": "Organization/1732560946197609000.fd024ea0-f02b-43bf-8ad9-efaec4e623be" } } }, { - "fullUrl": "Organization/1731704146634292000.932f8e2e-9c80-4c19-98c4-124f82549151", + "fullUrl": "Organization/1732560946168730000.5485c015-7831-4992-bc78-8c2eff3d4da9", "resource": { "resourceType": "Organization", - "id": "1731704146634292000.932f8e2e-9c80-4c19-98c4-124f82549151", + "id": "1732560946168730000.5485c015-7831-4992-bc78-8c2eff3d4da9", "identifier": [ { "extension": [ @@ -311,10 +311,10 @@ } }, { - "fullUrl": "Location/1731704146650434000.d54342e1-28a9-4b3e-bdba-c6baf982c54d", + "fullUrl": "Location/1732560946190626000.6ba520df-aae4-4f54-ba3c-d3a837243f5b", "resource": { "resourceType": "Location", - "id": "1731704146650434000.d54342e1-28a9-4b3e-bdba-c6baf982c54d", + "id": "1732560946190626000.6ba520df-aae4-4f54-ba3c-d3a837243f5b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -338,10 +338,10 @@ } }, { - "fullUrl": "Organization/1731704146654227000.858e1290-25c4-40be-88d9-32ad45703fd8", + "fullUrl": "Organization/1732560946197609000.fd024ea0-f02b-43bf-8ad9-efaec4e623be", "resource": { "resourceType": "Organization", - "id": "1731704146654227000.858e1290-25c4-40be-88d9-32ad45703fd8", + "id": "1732560946197609000.fd024ea0-f02b-43bf-8ad9-efaec4e623be", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -449,7 +449,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146650434000.d54342e1-28a9-4b3e-bdba-c6baf982c54d" + "reference": "Location/1732560946190626000.6ba520df-aae4-4f54-ba3c-d3a837243f5b" } } ], @@ -468,10 +468,10 @@ } }, { - "fullUrl": "Organization/1731704146654900000.5f694f3c-0cf8-44d3-8ead-cef521e630f5", + "fullUrl": "Organization/1732560946198606000.5af9a2d6-b4b1-46ca-8549-a276f1770944", "resource": { "resourceType": "Organization", - "id": "1731704146654900000.5f694f3c-0cf8-44d3-8ead-cef521e630f5", + "id": "1732560946198606000.5af9a2d6-b4b1-46ca-8549-a276f1770944", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -510,10 +510,10 @@ } }, { - "fullUrl": "Organization/1731704146655763000.dafb2e41-9f17-44f1-8f96-fb4500d2f684", + "fullUrl": "Organization/1732560946201623000.fc8b853a-cce6-4662-abb3-cbbc902841f5", "resource": { "resourceType": "Organization", - "id": "1731704146655763000.dafb2e41-9f17-44f1-8f96-fb4500d2f684", + "id": "1732560946201623000.fc8b853a-cce6-4662-abb3-cbbc902841f5", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -552,10 +552,10 @@ } }, { - "fullUrl": "Location/1731704146656889000.18772fbb-6bd4-42bb-bc6d-8cec0c48e04a", + "fullUrl": "Location/1732560946203403000.742d2718-8261-4ae3-95db-a1e2b4850513", "resource": { "resourceType": "Location", - "id": "1731704146656889000.18772fbb-6bd4-42bb-bc6d-8cec0c48e04a", + "id": "1732560946203403000.742d2718-8261-4ae3-95db-a1e2b4850513", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -579,10 +579,10 @@ } }, { - "fullUrl": "Organization/1731704146658169000.27382a02-0245-4593-8863-e8123707fa5d", + "fullUrl": "Organization/1732560946205362000.259d38b6-49a7-4764-add4-94f024ea3c67", "resource": { "resourceType": "Organization", - "id": "1731704146658169000.27382a02-0245-4593-8863-e8123707fa5d", + "id": "1732560946205362000.259d38b6-49a7-4764-add4-94f024ea3c67", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -694,7 +694,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146656889000.18772fbb-6bd4-42bb-bc6d-8cec0c48e04a" + "reference": "Location/1732560946203403000.742d2718-8261-4ae3-95db-a1e2b4850513" } } ], @@ -713,10 +713,10 @@ } }, { - "fullUrl": "Provenance/1731704146896883000.34cecadb-8889-4f9f-baf4-fa266af5ee22", + "fullUrl": "Provenance/1732560946950155000.6a4d9d77-12e7-4c31-992b-ab9a588bf871", "resource": { "resourceType": "Provenance", - "id": "1731704146896883000.34cecadb-8889-4f9f-baf4-fa266af5ee22", + "id": "1732560946950155000.6a4d9d77-12e7-4c31-992b-ab9a588bf871", "recorded": "2019-07-20T09:12:29Z", "activity": { "coding": [ @@ -736,7 +736,7 @@ ] }, "who": { - "reference": "Organization/1731704146896693000.a3da0f78-b1ba-49c8-b103-a70844a76af9" + "reference": "Organization/1732560946949876000.eed26c8d-bc43-488b-abf4-7dbf519d040a" } } ], @@ -744,17 +744,17 @@ { "role": "source", "what": { - "reference": "Device/1731704146900321000.3d449c36-c488-4a11-af71-71aa976c412b" + "reference": "Device/1732560946956044000.478dcbef-ef28-460c-a0c9-5034ef9bcd78" } } ] } }, { - "fullUrl": "Location/1731704146895606000.3ffcf0a6-aa29-479e-997e-86bb0cebb53d", + "fullUrl": "Location/1732560946948248000.bb3918f3-8c0b-4272-9f84-da2d16ca2100", "resource": { "resourceType": "Location", - "id": "1731704146895606000.3ffcf0a6-aa29-479e-997e-86bb0cebb53d", + "id": "1732560946948248000.bb3918f3-8c0b-4272-9f84-da2d16ca2100", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -778,10 +778,10 @@ } }, { - "fullUrl": "Organization/1731704146896693000.a3da0f78-b1ba-49c8-b103-a70844a76af9", + "fullUrl": "Organization/1732560946949876000.eed26c8d-bc43-488b-abf4-7dbf519d040a", "resource": { "resourceType": "Organization", - "id": "1731704146896693000.a3da0f78-b1ba-49c8-b103-a70844a76af9", + "id": "1732560946949876000.eed26c8d-bc43-488b-abf4-7dbf519d040a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -889,7 +889,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146895606000.3ffcf0a6-aa29-479e-997e-86bb0cebb53d" + "reference": "Location/1732560946948248000.bb3918f3-8c0b-4272-9f84-da2d16ca2100" } } ], @@ -908,10 +908,10 @@ } }, { - "fullUrl": "Location/1731704146899300000.d1cde637-92ec-4b05-8f02-6da945f1fa63", + "fullUrl": "Location/1732560946954537000.2269571e-e826-4fe9-bb65-480d6ecdada8", "resource": { "resourceType": "Location", - "id": "1731704146899300000.d1cde637-92ec-4b05-8f02-6da945f1fa63", + "id": "1732560946954537000.2269571e-e826-4fe9-bb65-480d6ecdada8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -935,10 +935,10 @@ } }, { - "fullUrl": "Organization/1731704146900192000.d8047bd9-ef38-4850-8bf0-61981eddac70", + "fullUrl": "Organization/1732560946955765000.cc7695af-f122-42eb-854b-4401e669da11", "resource": { "resourceType": "Organization", - "id": "1731704146900192000.d8047bd9-ef38-4850-8bf0-61981eddac70", + "id": "1732560946955765000.cc7695af-f122-42eb-854b-4401e669da11", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -1026,7 +1026,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146899300000.d1cde637-92ec-4b05-8f02-6da945f1fa63" + "reference": "Location/1732560946954537000.2269571e-e826-4fe9-bb65-480d6ecdada8" } } ], @@ -1045,15 +1045,15 @@ } }, { - "fullUrl": "Device/1731704146900321000.3d449c36-c488-4a11-af71-71aa976c412b", + "fullUrl": "Device/1732560946956044000.478dcbef-ef28-460c-a0c9-5034ef9bcd78", "resource": { "resourceType": "Device", - "id": "1731704146900321000.3d449c36-c488-4a11-af71-71aa976c412b", + "id": "1732560946956044000.478dcbef-ef28-460c-a0c9-5034ef9bcd78", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", "valueReference": { - "reference": "Organization/1731704146900192000.d8047bd9-ef38-4850-8bf0-61981eddac70" + "reference": "Organization/1732560946955765000.cc7695af-f122-42eb-854b-4401e669da11" } } ], @@ -1092,11 +1092,11 @@ } }, { - "fullUrl": "Provenance/1731704146910244000.055bc370-83de-4258-913d-059566394128", + "fullUrl": "Provenance/1732560946971375000.14423481-71a6-46d5-a500-0f60d1fb345b", "resource": { "resourceType": "Provenance", - "id": "1731704146910244000.055bc370-83de-4258-913d-059566394128", - "recorded": "2024-11-15T12:55:46Z", + "id": "1732560946971375000.14423481-71a6-46d5-a500-0f60d1fb345b", + "recorded": "2024-11-25T13:55:46Z", "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], @@ -1118,17 +1118,17 @@ ] }, "who": { - "reference": "Organization/1731704146909991000.783d5f84-f8e0-4dd7-ad77-c2717a521256" + "reference": "Organization/1732560946971002000.4116387f-caed-496f-a3c7-10c5a7217a34" } } ] } }, { - "fullUrl": "Organization/1731704146909991000.783d5f84-f8e0-4dd7-ad77-c2717a521256", + "fullUrl": "Organization/1732560946971002000.4116387f-caed-496f-a3c7-10c5a7217a34", "resource": { "resourceType": "Organization", - "id": "1731704146909991000.783d5f84-f8e0-4dd7-ad77-c2717a521256", + "id": "1732560946971002000.4116387f-caed-496f-a3c7-10c5a7217a34", "identifier": [ { "value": "CDC PRIME - Atlanta" @@ -1148,16 +1148,16 @@ } }, { - "fullUrl": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea", + "fullUrl": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee", "resource": { "resourceType": "Patient", - "id": "1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea", + "id": "1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee", "meta": { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", "valueReference": { - "reference": "Organization/1731704146941745000.ffe8c316-611f-479f-9ca6-6f164199da81" + "reference": "Organization/1732560947028683000.e8d76b91-dd13-4728-922a-841490e02430" } } ], @@ -1313,7 +1313,7 @@ } ], "authorReference": { - "reference": "Practitioner/1731704146922768000.83da4f80-28fe-43ab-a268-80aef1a36f14" + "reference": "Practitioner/1732560946990177000.ea0532ae-f999-491a-9a49-1dd341ee36b9" }, "time": "2023-05-31", "_time": { @@ -2208,7 +2208,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1731704146929298000.ad9b0bbd-9d3e-4381-805d-4f928f2a2cd3" + "reference": "Organization/1732560947000285000.cad4e4e2-bae9-4adb-8b01-d7a6c6f10148" } }, { @@ -2259,7 +2259,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1731704146929916000.c6490dae-76fb-4ca5-a86e-6d6b54f8c34e" + "reference": "Organization/1732560947001505000.8b598190-3017-4cf9-9909-495e77538013" } }, { @@ -2373,13 +2373,13 @@ { "url": "PD1.14", "valueReference": { - "reference": "Organization/1731704146931548000.98da17fb-025a-4dc1-8b64-4718591ee4d4" + "reference": "Organization/1732560947004561000.e2b0f63b-e4ac-4731-9213-2982445eac53" } }, { "url": "PD1.14", "valueReference": { - "reference": "Organization/1731704146932460000.8991f1f5-0d86-4aa6-8014-4070f7e57e01" + "reference": "Organization/1732560947006034000.092cb85f-9594-4697-85cd-fc3119b7430e" } }, { @@ -2810,7 +2810,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1731704146915669000.3b7f4209-0077-4d5b-b1cf-96f63f111890" + "reference": "Organization/1732560946978236000.1a73fe05-85b2-4cfc-acd5-4e741a9211fd" } }, { @@ -2962,7 +2962,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1731704146917336000.2a051cf6-00d8-4256-a1cc-5a55d39e0eb2" + "reference": "Organization/1732560946981369000.8df5b7cc-7da6-4468-9161-c365e8b34d8a" } }, { @@ -3535,7 +3535,23 @@ "country": "USA", "period": { "start": "2020", - "end": "2024" + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2020" + } + ] + }, + "end": "2024", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2024" + } + ] + } } }, { @@ -3588,7 +3604,23 @@ "country": "USA", "period": { "start": "2020", - "end": "2024" + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2020" + } + ] + }, + "end": "2024", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2024" + } + ] + } } } ], @@ -4170,7 +4202,7 @@ }, "gender": "unknown", "organization": { - "reference": "Organization/1731704146944899000.78ca289d-8d36-4e56-9da8-df11b7f379d2" + "reference": "Organization/1732560947033318000.460ab4a3-da0f-4bec-a270-ae253a95d100" }, "period": { "start": "2022-05-01T10:25:31-04:00", @@ -4218,22 +4250,22 @@ ], "generalPractitioner": [ { - "reference": "Organization/1731704146919601000.ac31960c-dd2c-4153-873c-52f4a3f695e3" + "reference": "Organization/1732560946984073000.f6b31c9f-398c-40e1-8d29-dc1793f16cce" }, { - "reference": "Organization/1731704146920799000.6f432a5c-4b14-4b7f-b3a4-4e78a506d59f" + "reference": "Organization/1732560946986249000.e2ca7f4b-09a9-4aec-b013-cd1a6c5f9d47" } ], "link": [ { "other": { - "reference": "RelatedPerson/1731704146938119000.4596e280-4938-4a99-8b51-eeaafd2790e3" + "reference": "RelatedPerson/1732560947019898000.8912d887-a4d5-4ce9-af9d-c04c12e6dcb0" }, "type": "seealso" }, { "other": { - "reference": "RelatedPerson/1731704146938336000.71ee8bcb-1663-458a-85f8-987f2ce45f07" + "reference": "RelatedPerson/1732560947020256000.43a42303-ede4-421c-b7c5-7ddf28da8827" }, "type": "seealso" } @@ -4241,10 +4273,10 @@ } }, { - "fullUrl": "Organization/1731704146915669000.3b7f4209-0077-4d5b-b1cf-96f63f111890", + "fullUrl": "Organization/1732560946978236000.1a73fe05-85b2-4cfc-acd5-4e741a9211fd", "resource": { "resourceType": "Organization", - "id": "1731704146915669000.3b7f4209-0077-4d5b-b1cf-96f63f111890", + "id": "1732560946978236000.1a73fe05-85b2-4cfc-acd5-4e741a9211fd", "identifier": [ { "extension": [ @@ -4277,10 +4309,10 @@ } }, { - "fullUrl": "Organization/1731704146917336000.2a051cf6-00d8-4256-a1cc-5a55d39e0eb2", + "fullUrl": "Organization/1732560946981369000.8df5b7cc-7da6-4468-9161-c365e8b34d8a", "resource": { "resourceType": "Organization", - "id": "1731704146917336000.2a051cf6-00d8-4256-a1cc-5a55d39e0eb2", + "id": "1732560946981369000.8df5b7cc-7da6-4468-9161-c365e8b34d8a", "identifier": [ { "extension": [ @@ -4313,10 +4345,10 @@ } }, { - "fullUrl": "Location/1731704146918148000.059eeb1c-e701-4aee-ae11-cf9c26b46bd6", + "fullUrl": "Location/1732560946982710000.80cd8a74-be3f-485c-b9df-bd3e7b9b7008", "resource": { "resourceType": "Location", - "id": "1731704146918148000.059eeb1c-e701-4aee-ae11-cf9c26b46bd6", + "id": "1732560946982710000.80cd8a74-be3f-485c-b9df-bd3e7b9b7008", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4340,10 +4372,10 @@ } }, { - "fullUrl": "Organization/1731704146919601000.ac31960c-dd2c-4153-873c-52f4a3f695e3", + "fullUrl": "Organization/1732560946984073000.f6b31c9f-398c-40e1-8d29-dc1793f16cce", "resource": { "resourceType": "Organization", - "id": "1731704146919601000.ac31960c-dd2c-4153-873c-52f4a3f695e3", + "id": "1732560946984073000.f6b31c9f-398c-40e1-8d29-dc1793f16cce", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -4451,7 +4483,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146918148000.059eeb1c-e701-4aee-ae11-cf9c26b46bd6" + "reference": "Location/1732560946982710000.80cd8a74-be3f-485c-b9df-bd3e7b9b7008" } } ], @@ -4470,10 +4502,10 @@ } }, { - "fullUrl": "Location/1731704146920075000.1742204b-97be-4e11-baf6-ca56697e5fb1", + "fullUrl": "Location/1732560946984997000.0d781aeb-6dad-466f-8e06-6ba588e902b8", "resource": { "resourceType": "Location", - "id": "1731704146920075000.1742204b-97be-4e11-baf6-ca56697e5fb1", + "id": "1732560946984997000.0d781aeb-6dad-466f-8e06-6ba588e902b8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4497,10 +4529,10 @@ } }, { - "fullUrl": "Organization/1731704146920799000.6f432a5c-4b14-4b7f-b3a4-4e78a506d59f", + "fullUrl": "Organization/1732560946986249000.e2ca7f4b-09a9-4aec-b013-cd1a6c5f9d47", "resource": { "resourceType": "Organization", - "id": "1731704146920799000.6f432a5c-4b14-4b7f-b3a4-4e78a506d59f", + "id": "1732560946986249000.e2ca7f4b-09a9-4aec-b013-cd1a6c5f9d47", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -4608,7 +4640,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146920075000.1742204b-97be-4e11-baf6-ca56697e5fb1" + "reference": "Location/1732560946984997000.0d781aeb-6dad-466f-8e06-6ba588e902b8" } } ], @@ -4627,10 +4659,10 @@ } }, { - "fullUrl": "Practitioner/1731704146922768000.83da4f80-28fe-43ab-a268-80aef1a36f14", + "fullUrl": "Practitioner/1732560946990177000.ea0532ae-f999-491a-9a49-1dd341ee36b9", "resource": { "resourceType": "Practitioner", - "id": "1731704146922768000.83da4f80-28fe-43ab-a268-80aef1a36f14", + "id": "1732560946990177000.ea0532ae-f999-491a-9a49-1dd341ee36b9", "identifier": [ { "value": "Bob R.N." @@ -4639,10 +4671,10 @@ } }, { - "fullUrl": "Organization/1731704146929298000.ad9b0bbd-9d3e-4381-805d-4f928f2a2cd3", + "fullUrl": "Organization/1732560947000285000.cad4e4e2-bae9-4adb-8b01-d7a6c6f10148", "resource": { "resourceType": "Organization", - "id": "1731704146929298000.ad9b0bbd-9d3e-4381-805d-4f928f2a2cd3", + "id": "1732560947000285000.cad4e4e2-bae9-4adb-8b01-d7a6c6f10148", "identifier": [ { "extension": [ @@ -4675,10 +4707,10 @@ } }, { - "fullUrl": "Organization/1731704146929916000.c6490dae-76fb-4ca5-a86e-6d6b54f8c34e", + "fullUrl": "Organization/1732560947001505000.8b598190-3017-4cf9-9909-495e77538013", "resource": { "resourceType": "Organization", - "id": "1731704146929916000.c6490dae-76fb-4ca5-a86e-6d6b54f8c34e", + "id": "1732560947001505000.8b598190-3017-4cf9-9909-495e77538013", "identifier": [ { "extension": [ @@ -4711,10 +4743,10 @@ } }, { - "fullUrl": "Location/1731704146930937000.1cb5e6dc-b477-451b-8e67-57e57eb12873", + "fullUrl": "Location/1732560947003406000.c4cab69c-62b5-42e4-816f-9d6ec0eea29c", "resource": { "resourceType": "Location", - "id": "1731704146930937000.1cb5e6dc-b477-451b-8e67-57e57eb12873", + "id": "1732560947003406000.c4cab69c-62b5-42e4-816f-9d6ec0eea29c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4738,10 +4770,10 @@ } }, { - "fullUrl": "Organization/1731704146931548000.98da17fb-025a-4dc1-8b64-4718591ee4d4", + "fullUrl": "Organization/1732560947004561000.e2b0f63b-e4ac-4731-9213-2982445eac53", "resource": { "resourceType": "Organization", - "id": "1731704146931548000.98da17fb-025a-4dc1-8b64-4718591ee4d4", + "id": "1732560947004561000.e2b0f63b-e4ac-4731-9213-2982445eac53", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -4849,7 +4881,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146930937000.1cb5e6dc-b477-451b-8e67-57e57eb12873" + "reference": "Location/1732560947003406000.c4cab69c-62b5-42e4-816f-9d6ec0eea29c" } } ], @@ -4868,10 +4900,10 @@ } }, { - "fullUrl": "Location/1731704146931934000.428aa378-04d8-46ce-b6e8-8bbc97d118bc", + "fullUrl": "Location/1732560947005240000.cfe9822d-c368-4536-a335-cef80cdf0cdd", "resource": { "resourceType": "Location", - "id": "1731704146931934000.428aa378-04d8-46ce-b6e8-8bbc97d118bc", + "id": "1732560947005240000.cfe9822d-c368-4536-a335-cef80cdf0cdd", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4895,10 +4927,10 @@ } }, { - "fullUrl": "Organization/1731704146932460000.8991f1f5-0d86-4aa6-8014-4070f7e57e01", + "fullUrl": "Organization/1732560947006034000.092cb85f-9594-4697-85cd-fc3119b7430e", "resource": { "resourceType": "Organization", - "id": "1731704146932460000.8991f1f5-0d86-4aa6-8014-4070f7e57e01", + "id": "1732560947006034000.092cb85f-9594-4697-85cd-fc3119b7430e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -5006,7 +5038,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146931934000.428aa378-04d8-46ce-b6e8-8bbc97d118bc" + "reference": "Location/1732560947005240000.cfe9822d-c368-4536-a335-cef80cdf0cdd" } } ], @@ -5025,10 +5057,10 @@ } }, { - "fullUrl": "RelatedPerson/1731704146938119000.4596e280-4938-4a99-8b51-eeaafd2790e3", + "fullUrl": "RelatedPerson/1732560947019898000.8912d887-a4d5-4ce9-af9d-c04c12e6dcb0", "resource": { "resourceType": "RelatedPerson", - "id": "1731704146938119000.4596e280-4938-4a99-8b51-eeaafd2790e3", + "id": "1732560947019898000.8912d887-a4d5-4ce9-af9d-c04c12e6dcb0", "identifier": [ { "value": "maybe" @@ -5037,10 +5069,10 @@ } }, { - "fullUrl": "RelatedPerson/1731704146938336000.71ee8bcb-1663-458a-85f8-987f2ce45f07", + "fullUrl": "RelatedPerson/1732560947020256000.43a42303-ede4-421c-b7c5-7ddf28da8827", "resource": { "resourceType": "RelatedPerson", - "id": "1731704146938336000.71ee8bcb-1663-458a-85f8-987f2ce45f07", + "id": "1732560947020256000.43a42303-ede4-421c-b7c5-7ddf28da8827", "identifier": [ { "value": "maybe not" @@ -5049,10 +5081,10 @@ } }, { - "fullUrl": "Organization/1731704146941745000.ffe8c316-611f-479f-9ca6-6f164199da81", + "fullUrl": "Organization/1732560947028683000.e8d76b91-dd13-4728-922a-841490e02430", "resource": { "resourceType": "Organization", - "id": "1731704146941745000.ffe8c316-611f-479f-9ca6-6f164199da81", + "id": "1732560947028683000.e8d76b91-dd13-4728-922a-841490e02430", "identifier": [ { "extension": [ @@ -5085,10 +5117,10 @@ } }, { - "fullUrl": "Organization/1731704146944899000.78ca289d-8d36-4e56-9da8-df11b7f379d2", + "fullUrl": "Organization/1732560947033318000.460ab4a3-da0f-4bec-a270-ae253a95d100", "resource": { "resourceType": "Organization", - "id": "1731704146944899000.78ca289d-8d36-4e56-9da8-df11b7f379d2", + "id": "1732560947033318000.460ab4a3-da0f-4bec-a270-ae253a95d100", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -5232,17 +5264,17 @@ } }, { - "fullUrl": "Provenance/1731704146966322000.547ef142-b081-40c7-99d8-a94d1968631b", + "fullUrl": "Provenance/1732560947067669000.a71997f2-8202-4359-b2bc-87d0c35d7122", "resource": { "resourceType": "Provenance", - "id": "1731704146966322000.547ef142-b081-40c7-99d8-a94d1968631b", + "id": "1732560947067669000.a71997f2-8202-4359-b2bc-87d0c35d7122", "target": [ { - "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee" } ], "occurredDateTime": "2024-08-21T11:38:00Z", - "recorded": "2024-11-15T12:55:46Z", + "recorded": "2024-11-25T13:55:47Z", "activity": { "coding": [ { @@ -5262,17 +5294,17 @@ ] }, "who": { - "reference": "Organization/1731704146966079000.2e38dd42-265c-4639-b701-7e741520ef3f" + "reference": "Organization/1732560947067347000.b0dfe50b-7dd5-4db3-bf94-2660507b9a6b" } } ] } }, { - "fullUrl": "Organization/1731704146966079000.2e38dd42-265c-4639-b701-7e741520ef3f", + "fullUrl": "Organization/1732560947067347000.b0dfe50b-7dd5-4db3-bf94-2660507b9a6b", "resource": { "resourceType": "Organization", - "id": "1731704146966079000.2e38dd42-265c-4639-b701-7e741520ef3f", + "id": "1732560947067347000.b0dfe50b-7dd5-4db3-bf94-2660507b9a6b", "identifier": [ { "extension": [ @@ -5305,10 +5337,10 @@ } }, { - "fullUrl": "RelatedPerson/1731704146972699000.d8d98dea-04a5-4cd5-ad74-d5e214de51cb", + "fullUrl": "RelatedPerson/1732560947078273000.c258bc9d-a81e-4489-ac7b-b42f17bdcdff", "resource": { "resourceType": "RelatedPerson", - "id": "1731704146972699000.d8d98dea-04a5-4cd5-ad74-d5e214de51cb", + "id": "1732560947078273000.c258bc9d-a81e-4489-ac7b-b42f17bdcdff", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -5320,13 +5352,13 @@ { "url": "NK1.13", "valueReference": { - "reference": "Organization/1731704146968032000.f35624e9-ca32-4edf-8739-0d37189ed087" + "reference": "Organization/1732560947070415000.fd05515b-a14d-4605-9a55-af19963cbadb" } }, { "url": "NK1.13", "valueReference": { - "reference": "Organization/1731704146968235000.2fcdb900-9cc3-448d-aebf-4f25eb8c5cd8" + "reference": "Organization/1732560947070704000.d32971c4-235f-4c2a-8d99-c34b900850bb" } }, { @@ -5399,7 +5431,7 @@ } ], "patient": { - "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee" }, "relationship": [ { @@ -6400,10 +6432,10 @@ } }, { - "fullUrl": "Organization/1731704146968032000.f35624e9-ca32-4edf-8739-0d37189ed087", + "fullUrl": "Organization/1732560947070415000.fd05515b-a14d-4605-9a55-af19963cbadb", "resource": { "resourceType": "Organization", - "id": "1731704146968032000.f35624e9-ca32-4edf-8739-0d37189ed087", + "id": "1732560947070415000.fd05515b-a14d-4605-9a55-af19963cbadb", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -6428,10 +6460,10 @@ } }, { - "fullUrl": "Organization/1731704146968235000.2fcdb900-9cc3-448d-aebf-4f25eb8c5cd8", + "fullUrl": "Organization/1732560947070704000.d32971c4-235f-4c2a-8d99-c34b900850bb", "resource": { "resourceType": "Organization", - "id": "1731704146968235000.2fcdb900-9cc3-448d-aebf-4f25eb8c5cd8", + "id": "1732560947070704000.d32971c4-235f-4c2a-8d99-c34b900850bb", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -6456,10 +6488,10 @@ } }, { - "fullUrl": "RelatedPerson/1731704146976466000.4d08c9ea-2fdb-497f-99b0-1f5fdba9b904", + "fullUrl": "RelatedPerson/1732560947085287000.b3d57f6d-c29b-43d4-b611-3aca9fda506d", "resource": { "resourceType": "RelatedPerson", - "id": "1731704146976466000.4d08c9ea-2fdb-497f-99b0-1f5fdba9b904", + "id": "1732560947085287000.b3d57f6d-c29b-43d4-b611-3aca9fda506d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -6471,7 +6503,7 @@ { "url": "NK1.13", "valueReference": { - "reference": "Organization/1731704146973915000.7d915b7e-b1c4-4fa5-9afe-5883e02bd48c" + "reference": "Organization/1732560947080448000.2021f8f7-23b2-4192-8a52-590089b9a188" } }, { @@ -6524,7 +6556,7 @@ } ], "patient": { - "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee" }, "relationship": [ { @@ -7140,10 +7172,10 @@ } }, { - "fullUrl": "Organization/1731704146973915000.7d915b7e-b1c4-4fa5-9afe-5883e02bd48c", + "fullUrl": "Organization/1732560947080448000.2021f8f7-23b2-4192-8a52-590089b9a188", "resource": { "resourceType": "Organization", - "id": "1731704146973915000.7d915b7e-b1c4-4fa5-9afe-5883e02bd48c", + "id": "1732560947080448000.2021f8f7-23b2-4192-8a52-590089b9a188", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -7168,10 +7200,10 @@ } }, { - "fullUrl": "Encounter/1731704146993830000.c7fb2291-5b17-4035-a2d1-7ccc15e57a65", + "fullUrl": "Encounter/1732560947116827000.30eb62e2-3974-4fc3-9d69-7b9e6119177e", "resource": { "resourceType": "Encounter", - "id": "1731704146993830000.c7fb2291-5b17-4035-a2d1-7ccc15e57a65", + "id": "1732560947116827000.30eb62e2-3974-4fc3-9d69-7b9e6119177e", "meta": { "security": [ { @@ -7510,13 +7542,13 @@ { "url": "PV2.23", "valueReference": { - "reference": "Organization/1731704146983846000.c2a5c6c0-1a3d-4e95-8df5-3100d4c9b5a4" + "reference": "Organization/1732560947096488000.785ac0b2-17f6-4b0f-872e-660e5f53c4a6" } }, { "url": "PV2.23", "valueReference": { - "reference": "Organization/1731704146984398000.728534c3-842b-4bc8-980d-3805d84563a1" + "reference": "Organization/1732560947097902000.0904e746-7f9b-4641-b50d-ef3642d27ac9" } }, { @@ -7647,11 +7679,11 @@ ] }, "subject": { - "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee" }, "episodeOfCare": [ { - "reference": "EpisodeOfCare/1731704146994097000.c66a4598-85ee-4708-855d-2e8e1f36b8b6" + "reference": "EpisodeOfCare/1732560947117362000.9b75561a-8224-4fc9-9030-8370b84d42ee" } ], "participant": [ @@ -7668,7 +7700,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146986032000.712990c4-6b7d-4da8-ad40-d5a3389e5344" + "reference": "Practitioner/1732560947101401000.31ca3069-9607-43d3-ba15-b05ee95726db" } }, { @@ -7684,7 +7716,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146986497000.32ae08ba-45d9-416d-a001-b21d0d2f7c15" + "reference": "Practitioner/1732560947102328000.9ac2c5de-59a3-4ebf-b36a-f5b33070ffb8" } }, { @@ -7700,7 +7732,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146986852000.8d34afbe-1dd5-4274-9005-0ce0d548b629" + "reference": "Practitioner/1732560947102919000.46c5e45b-5bbf-4cc9-9edb-beaf8d35f18a" } }, { @@ -7716,7 +7748,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146987129000.6523929d-ca09-4ff9-ac05-cc461311a41d" + "reference": "Practitioner/1732560947103509000.f2c8d8c3-4604-435b-8204-e550b5598002" } }, { @@ -7732,7 +7764,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146987422000.11a78c59-598d-4c7f-bad6-994df2df91b7" + "reference": "Practitioner/1732560947104221000.4c197e78-08a6-4fab-9ea2-f9de06488294" } }, { @@ -7748,7 +7780,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146987702000.2df77fa7-838f-4862-bbd0-51bb49ad0ce9" + "reference": "Practitioner/1732560947104860000.43f59350-cc0d-4485-a034-63e0fe31fa0c" } }, { @@ -7764,7 +7796,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146987996000.d21f4d5f-7b4a-4c44-b887-1ddefa68fcc0" + "reference": "Practitioner/1732560947105422000.f8e05326-ac6e-4f82-8da1-33210f1eeb70" } }, { @@ -7780,7 +7812,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146988282000.3359adbc-591c-48a0-879e-8cd18d87a47d" + "reference": "Practitioner/1732560947105965000.902547cf-9532-4523-b705-9b6d3b013092" } }, { @@ -7796,7 +7828,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146989589000.75a59674-da55-4d0c-a14f-d64db9d2a35c" + "reference": "Practitioner/1732560947108468000.8804a57c-53bc-4061-92cd-f6255e3a984c" } }, { @@ -7812,7 +7844,7 @@ } ], "individual": { - "reference": "Practitioner/1731704146990909000.97e56863-8c1a-48dd-a0cf-080d99ffdbb8" + "reference": "Practitioner/1732560947110860000.0fe20340-4918-4319-a79f-79582e0678b8" } } ], @@ -7945,7 +7977,7 @@ } ], "destination": { - "reference": "Location/1731704146984679000.0fd65c20-79a6-42bc-bbe3-5b1f7789a735" + "reference": "Location/1732560947098491000.f1158a39-67bc-4de0-a7b5-451b9e15dd2f" }, "dischargeDisposition": { "coding": [ @@ -7975,7 +8007,7 @@ } ], "location": { - "reference": "Location/1731704146992320000.d4e4b37a-aebe-46cc-ae39-bc5a9ddaa7a3" + "reference": "Location/1732560947113843000.69b30a21-c4ce-4fc7-a0b3-485f8ffbdf37" }, "status": "active" }, @@ -7987,7 +8019,7 @@ } ], "location": { - "reference": "Location/1731704146992812000.2af3d22d-3579-43c7-ad5a-5129c6df48c4" + "reference": "Location/1732560947114854000.8fb3eb16-f138-4c7b-99de-034230a291d0" }, "status": "completed" }, @@ -8003,7 +8035,7 @@ } ], "location": { - "reference": "Location/1731704146992983000.1ea5db9f-19ad-42a0-85f3-88de0164a0bb" + "reference": "Location/1732560947115174000.e3d61a25-d515-4e08-84c4-9650eb2b5fdd" }, "status": "active" }, @@ -8015,7 +8047,7 @@ } ], "location": { - "reference": "Location/1731704146993131000.13e8d471-a874-48b2-866f-f797b0a42832" + "reference": "Location/1732560947115496000.3c37c486-0bde-47de-9279-7d781ea92acd" }, "status": "planned" }, @@ -8031,7 +8063,7 @@ } ], "location": { - "reference": "Location/1731704146993297000.d48f5551-9c09-444e-b13c-7877b91e1751" + "reference": "Location/1732560947115807000.7073bf4f-0083-4388-b8f1-1082a1584772" }, "status": "completed" }, @@ -8047,7 +8079,7 @@ } ], "location": { - "reference": "Location/1731704146993768000.ec3b7add-0155-4c09-aa68-59e53e8987d5" + "reference": "Location/1732560947116718000.05d1c715-158f-473c-90ae-c89df79005e7" }, "status": "planned" } @@ -8055,10 +8087,10 @@ } }, { - "fullUrl": "Location/1731704146983456000.3e0dcf7b-7ed0-4a2e-a4a1-5fe26f22d7f5", + "fullUrl": "Location/1732560947095713000.10b2dfdb-eae6-4703-a3fe-b5ee56ac1330", "resource": { "resourceType": "Location", - "id": "1731704146983456000.3e0dcf7b-7ed0-4a2e-a4a1-5fe26f22d7f5", + "id": "1732560947095713000.10b2dfdb-eae6-4703-a3fe-b5ee56ac1330", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -8082,10 +8114,10 @@ } }, { - "fullUrl": "Organization/1731704146983846000.c2a5c6c0-1a3d-4e95-8df5-3100d4c9b5a4", + "fullUrl": "Organization/1732560947096488000.785ac0b2-17f6-4b0f-872e-660e5f53c4a6", "resource": { "resourceType": "Organization", - "id": "1731704146983846000.c2a5c6c0-1a3d-4e95-8df5-3100d4c9b5a4", + "id": "1732560947096488000.785ac0b2-17f6-4b0f-872e-660e5f53c4a6", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -8185,7 +8217,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146983456000.3e0dcf7b-7ed0-4a2e-a4a1-5fe26f22d7f5" + "reference": "Location/1732560947095713000.10b2dfdb-eae6-4703-a3fe-b5ee56ac1330" } } ], @@ -8204,10 +8236,10 @@ } }, { - "fullUrl": "Location/1731704146984077000.340e3d9e-bc18-4705-a666-edbdaabdc170", + "fullUrl": "Location/1732560947097075000.893658cf-04c0-44c7-90fc-9c1965fb9dca", "resource": { "resourceType": "Location", - "id": "1731704146984077000.340e3d9e-bc18-4705-a666-edbdaabdc170", + "id": "1732560947097075000.893658cf-04c0-44c7-90fc-9c1965fb9dca", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -8231,10 +8263,10 @@ } }, { - "fullUrl": "Organization/1731704146984398000.728534c3-842b-4bc8-980d-3805d84563a1", + "fullUrl": "Organization/1732560947097902000.0904e746-7f9b-4641-b50d-ef3642d27ac9", "resource": { "resourceType": "Organization", - "id": "1731704146984398000.728534c3-842b-4bc8-980d-3805d84563a1", + "id": "1732560947097902000.0904e746-7f9b-4641-b50d-ef3642d27ac9", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -8334,7 +8366,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704146984077000.340e3d9e-bc18-4705-a666-edbdaabdc170" + "reference": "Location/1732560947097075000.893658cf-04c0-44c7-90fc-9c1965fb9dca" } } ], @@ -8353,10 +8385,10 @@ } }, { - "fullUrl": "Location/1731704146984679000.0fd65c20-79a6-42bc-bbe3-5b1f7789a735", + "fullUrl": "Location/1732560947098491000.f1158a39-67bc-4de0-a7b5-451b9e15dd2f", "resource": { "resourceType": "Location", - "id": "1731704146984679000.0fd65c20-79a6-42bc-bbe3-5b1f7789a735", + "id": "1732560947098491000.f1158a39-67bc-4de0-a7b5-451b9e15dd2f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date", @@ -8366,10 +8398,10 @@ } }, { - "fullUrl": "Practitioner/1731704146986032000.712990c4-6b7d-4da8-ad40-d5a3389e5344", + "fullUrl": "Practitioner/1732560947101401000.31ca3069-9607-43d3-ba15-b05ee95726db", "resource": { "resourceType": "Practitioner", - "id": "1731704146986032000.712990c4-6b7d-4da8-ad40-d5a3389e5344", + "id": "1732560947101401000.31ca3069-9607-43d3-ba15-b05ee95726db", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -8462,10 +8494,10 @@ } }, { - "fullUrl": "Practitioner/1731704146986497000.32ae08ba-45d9-416d-a001-b21d0d2f7c15", + "fullUrl": "Practitioner/1732560947102328000.9ac2c5de-59a3-4ebf-b36a-f5b33070ffb8", "resource": { "resourceType": "Practitioner", - "id": "1731704146986497000.32ae08ba-45d9-416d-a001-b21d0d2f7c15", + "id": "1732560947102328000.9ac2c5de-59a3-4ebf-b36a-f5b33070ffb8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -8558,10 +8590,10 @@ } }, { - "fullUrl": "Practitioner/1731704146986852000.8d34afbe-1dd5-4274-9005-0ce0d548b629", + "fullUrl": "Practitioner/1732560947102919000.46c5e45b-5bbf-4cc9-9edb-beaf8d35f18a", "resource": { "resourceType": "Practitioner", - "id": "1731704146986852000.8d34afbe-1dd5-4274-9005-0ce0d548b629", + "id": "1732560947102919000.46c5e45b-5bbf-4cc9-9edb-beaf8d35f18a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8581,10 +8613,10 @@ } }, { - "fullUrl": "Practitioner/1731704146987129000.6523929d-ca09-4ff9-ac05-cc461311a41d", + "fullUrl": "Practitioner/1732560947103509000.f2c8d8c3-4604-435b-8204-e550b5598002", "resource": { "resourceType": "Practitioner", - "id": "1731704146987129000.6523929d-ca09-4ff9-ac05-cc461311a41d", + "id": "1732560947103509000.f2c8d8c3-4604-435b-8204-e550b5598002", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8604,10 +8636,10 @@ } }, { - "fullUrl": "Practitioner/1731704146987422000.11a78c59-598d-4c7f-bad6-994df2df91b7", + "fullUrl": "Practitioner/1732560947104221000.4c197e78-08a6-4fab-9ea2-f9de06488294", "resource": { "resourceType": "Practitioner", - "id": "1731704146987422000.11a78c59-598d-4c7f-bad6-994df2df91b7", + "id": "1732560947104221000.4c197e78-08a6-4fab-9ea2-f9de06488294", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8627,10 +8659,10 @@ } }, { - "fullUrl": "Practitioner/1731704146987702000.2df77fa7-838f-4862-bbd0-51bb49ad0ce9", + "fullUrl": "Practitioner/1732560947104860000.43f59350-cc0d-4485-a034-63e0fe31fa0c", "resource": { "resourceType": "Practitioner", - "id": "1731704146987702000.2df77fa7-838f-4862-bbd0-51bb49ad0ce9", + "id": "1732560947104860000.43f59350-cc0d-4485-a034-63e0fe31fa0c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8650,10 +8682,10 @@ } }, { - "fullUrl": "Practitioner/1731704146987996000.d21f4d5f-7b4a-4c44-b887-1ddefa68fcc0", + "fullUrl": "Practitioner/1732560947105422000.f8e05326-ac6e-4f82-8da1-33210f1eeb70", "resource": { "resourceType": "Practitioner", - "id": "1731704146987996000.d21f4d5f-7b4a-4c44-b887-1ddefa68fcc0", + "id": "1732560947105422000.f8e05326-ac6e-4f82-8da1-33210f1eeb70", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8673,10 +8705,10 @@ } }, { - "fullUrl": "Practitioner/1731704146988282000.3359adbc-591c-48a0-879e-8cd18d87a47d", + "fullUrl": "Practitioner/1732560947105965000.902547cf-9532-4523-b705-9b6d3b013092", "resource": { "resourceType": "Practitioner", - "id": "1731704146988282000.3359adbc-591c-48a0-879e-8cd18d87a47d", + "id": "1732560947105965000.902547cf-9532-4523-b705-9b6d3b013092", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8696,10 +8728,10 @@ } }, { - "fullUrl": "Practitioner/1731704146989589000.75a59674-da55-4d0c-a14f-d64db9d2a35c", + "fullUrl": "Practitioner/1732560947108468000.8804a57c-53bc-4061-92cd-f6255e3a984c", "resource": { "resourceType": "Practitioner", - "id": "1731704146989589000.75a59674-da55-4d0c-a14f-d64db9d2a35c", + "id": "1732560947108468000.8804a57c-53bc-4061-92cd-f6255e3a984c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -8907,10 +8939,10 @@ } }, { - "fullUrl": "Practitioner/1731704146990909000.97e56863-8c1a-48dd-a0cf-080d99ffdbb8", + "fullUrl": "Practitioner/1732560947110860000.0fe20340-4918-4319-a79f-79582e0678b8", "resource": { "resourceType": "Practitioner", - "id": "1731704146990909000.97e56863-8c1a-48dd-a0cf-080d99ffdbb8", + "id": "1732560947110860000.0fe20340-4918-4319-a79f-79582e0678b8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -9118,10 +9150,10 @@ } }, { - "fullUrl": "Organization/1731704146991148000.518f3c57-8c13-44f3-9904-6825cfa52e0d", + "fullUrl": "Organization/1732560947111430000.94aae298-0670-4c92-9b55-07e2b204bbe6", "resource": { "resourceType": "Organization", - "id": "1731704146991148000.518f3c57-8c13-44f3-9904-6825cfa52e0d", + "id": "1732560947111430000.94aae298-0670-4c92-9b55-07e2b204bbe6", "identifier": [ { "extension": [ @@ -9154,10 +9186,10 @@ } }, { - "fullUrl": "Location/1731704146991919000.5f9680ec-7d3d-4b74-98ba-b01ef9c1b2fa", + "fullUrl": "Location/1732560947113006000.f1399e9c-b308-41f3-99fe-813d35e491b5", "resource": { "resourceType": "Location", - "id": "1731704146991919000.5f9680ec-7d3d-4b74-98ba-b01ef9c1b2fa", + "id": "1732560947113006000.f1399e9c-b308-41f3-99fe-813d35e491b5", "identifier": [ { "extension": [ @@ -9202,10 +9234,10 @@ } }, { - "fullUrl": "Location/1731704146991986000.cf5aa076-c86f-4001-819d-fa0057ed2af1", + "fullUrl": "Location/1732560947113103000.5484952c-beb2-4586-9b6e-ea591bd7e31b", "resource": { "resourceType": "Location", - "id": "1731704146991986000.cf5aa076-c86f-4001-819d-fa0057ed2af1", + "id": "1732560947113103000.5484952c-beb2-4586-9b6e-ea591bd7e31b", "identifier": [ { "extension": [ @@ -9234,15 +9266,15 @@ ] }, "partOf": { - "reference": "Location/1731704146991919000.5f9680ec-7d3d-4b74-98ba-b01ef9c1b2fa" + "reference": "Location/1732560947113006000.f1399e9c-b308-41f3-99fe-813d35e491b5" } } }, { - "fullUrl": "Location/1731704146992052000.e73267b5-4a21-4ef2-85db-e02027dbe7d5", + "fullUrl": "Location/1732560947113244000.acad36a0-0546-48f2-859b-faa1c4b233e4", "resource": { "resourceType": "Location", - "id": "1731704146992052000.e73267b5-4a21-4ef2-85db-e02027dbe7d5", + "id": "1732560947113244000.acad36a0-0546-48f2-859b-faa1c4b233e4", "identifier": [ { "extension": [ @@ -9271,15 +9303,15 @@ ] }, "partOf": { - "reference": "Location/1731704146991986000.cf5aa076-c86f-4001-819d-fa0057ed2af1" + "reference": "Location/1732560947113103000.5484952c-beb2-4586-9b6e-ea591bd7e31b" } } }, { - "fullUrl": "Location/1731704146992126000.90701bc6-6771-4cb1-97fd-921dd16eb890", + "fullUrl": "Location/1732560947113385000.c43a9b50-f6a0-4036-8d4c-587fa7f4d07d", "resource": { "resourceType": "Location", - "id": "1731704146992126000.90701bc6-6771-4cb1-97fd-921dd16eb890", + "id": "1732560947113385000.c43a9b50-f6a0-4036-8d4c-587fa7f4d07d", "identifier": [ { "extension": [ @@ -9329,15 +9361,15 @@ ] }, "partOf": { - "reference": "Location/1731704146992052000.e73267b5-4a21-4ef2-85db-e02027dbe7d5" + "reference": "Location/1732560947113244000.acad36a0-0546-48f2-859b-faa1c4b233e4" } } }, { - "fullUrl": "Location/1731704146992190000.9e41dae0-39cf-4a64-a617-f8fe5c73f015", + "fullUrl": "Location/1732560947113539000.5c4972fb-092f-4caa-a0bb-29d53a4f4bc0", "resource": { "resourceType": "Location", - "id": "1731704146992190000.9e41dae0-39cf-4a64-a617-f8fe5c73f015", + "id": "1732560947113539000.5c4972fb-092f-4caa-a0bb-29d53a4f4bc0", "identifier": [ { "extension": [ @@ -9380,15 +9412,15 @@ ] }, "partOf": { - "reference": "Location/1731704146992126000.90701bc6-6771-4cb1-97fd-921dd16eb890" + "reference": "Location/1732560947113385000.c43a9b50-f6a0-4036-8d4c-587fa7f4d07d" } } }, { - "fullUrl": "Location/1731704146992320000.d4e4b37a-aebe-46cc-ae39-bc5a9ddaa7a3", + "fullUrl": "Location/1732560947113843000.69b30a21-c4ce-4fc7-a0b3-485f8ffbdf37", "resource": { "resourceType": "Location", - "id": "1731704146992320000.d4e4b37a-aebe-46cc-ae39-bc5a9ddaa7a3", + "id": "1732560947113843000.69b30a21-c4ce-4fc7-a0b3-485f8ffbdf37", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", @@ -9440,7 +9472,7 @@ ], "value": "Comprehensive", "assigner": { - "reference": "Organization/1731704146991148000.518f3c57-8c13-44f3-9904-6825cfa52e0d" + "reference": "Organization/1732560947111430000.94aae298-0670-4c92-9b55-07e2b204bbe6" } } ], @@ -9455,15 +9487,15 @@ ] }, "partOf": { - "reference": "Location/1731704146992190000.9e41dae0-39cf-4a64-a617-f8fe5c73f015" + "reference": "Location/1732560947113539000.5c4972fb-092f-4caa-a0bb-29d53a4f4bc0" } } }, { - "fullUrl": "Organization/1731704146992571000.0b07af73-5d6a-44ff-8b77-535af69d2510", + "fullUrl": "Organization/1732560947114313000.03edb821-2a38-4212-a897-a535db77468f", "resource": { "resourceType": "Organization", - "id": "1731704146992571000.0b07af73-5d6a-44ff-8b77-535af69d2510", + "id": "1732560947114313000.03edb821-2a38-4212-a897-a535db77468f", "identifier": [ { "extension": [ @@ -9496,10 +9528,10 @@ } }, { - "fullUrl": "Location/1731704146992812000.2af3d22d-3579-43c7-ad5a-5129c6df48c4", + "fullUrl": "Location/1732560947114854000.8fb3eb16-f138-4c7b-99de-034230a291d0", "resource": { "resourceType": "Location", - "id": "1731704146992812000.2af3d22d-3579-43c7-ad5a-5129c6df48c4", + "id": "1732560947114854000.8fb3eb16-f138-4c7b-99de-034230a291d0", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", @@ -9559,7 +9591,7 @@ ], "value": "Entity ID", "assigner": { - "reference": "Organization/1731704146992571000.0b07af73-5d6a-44ff-8b77-535af69d2510" + "reference": "Organization/1732560947114313000.03edb821-2a38-4212-a897-a535db77468f" } } ], @@ -9577,37 +9609,37 @@ } }, { - "fullUrl": "Location/1731704146992983000.1ea5db9f-19ad-42a0-85f3-88de0164a0bb", + "fullUrl": "Location/1732560947115174000.e3d61a25-d515-4e08-84c4-9650eb2b5fdd", "resource": { "resourceType": "Location", - "id": "1731704146992983000.1ea5db9f-19ad-42a0-85f3-88de0164a0bb", + "id": "1732560947115174000.e3d61a25-d515-4e08-84c4-9650eb2b5fdd", "description": "Its Temporary", "mode": "instance" } }, { - "fullUrl": "Location/1731704146993131000.13e8d471-a874-48b2-866f-f797b0a42832", + "fullUrl": "Location/1732560947115496000.3c37c486-0bde-47de-9279-7d781ea92acd", "resource": { "resourceType": "Location", - "id": "1731704146993131000.13e8d471-a874-48b2-866f-f797b0a42832", + "id": "1732560947115496000.3c37c486-0bde-47de-9279-7d781ea92acd", "description": "Pending Location", "mode": "instance" } }, { - "fullUrl": "Location/1731704146993297000.d48f5551-9c09-444e-b13c-7877b91e1751", + "fullUrl": "Location/1732560947115807000.7073bf4f-0083-4388-b8f1-1082a1584772", "resource": { "resourceType": "Location", - "id": "1731704146993297000.d48f5551-9c09-444e-b13c-7877b91e1751", + "id": "1732560947115807000.7073bf4f-0083-4388-b8f1-1082a1584772", "description": "Prior Location", "mode": "instance" } }, { - "fullUrl": "Organization/1731704146993531000.674ed08e-da69-442c-86a5-23e0cab6ab84", + "fullUrl": "Organization/1732560947116253000.9cdcc78d-f79f-465a-b746-c9158deedd71", "resource": { "resourceType": "Organization", - "id": "1731704146993531000.674ed08e-da69-442c-86a5-23e0cab6ab84", + "id": "1732560947116253000.9cdcc78d-f79f-465a-b746-c9158deedd71", "identifier": [ { "extension": [ @@ -9640,10 +9672,10 @@ } }, { - "fullUrl": "Location/1731704146993768000.ec3b7add-0155-4c09-aa68-59e53e8987d5", + "fullUrl": "Location/1732560947116718000.05d1c715-158f-473c-90ae-c89df79005e7", "resource": { "resourceType": "Location", - "id": "1731704146993768000.ec3b7add-0155-4c09-aa68-59e53e8987d5", + "id": "1732560947116718000.05d1c715-158f-473c-90ae-c89df79005e7", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", @@ -9703,7 +9735,7 @@ ], "value": "Entity ID", "assigner": { - "reference": "Organization/1731704146993531000.674ed08e-da69-442c-86a5-23e0cab6ab84" + "reference": "Organization/1732560947116253000.9cdcc78d-f79f-465a-b746-c9158deedd71" } } ], @@ -9721,10 +9753,10 @@ } }, { - "fullUrl": "EpisodeOfCare/1731704146994097000.c66a4598-85ee-4708-855d-2e8e1f36b8b6", + "fullUrl": "EpisodeOfCare/1732560947117362000.9b75561a-8224-4fc9-9030-8370b84d42ee", "resource": { "resourceType": "EpisodeOfCare", - "id": "1731704146994097000.c66a4598-85ee-4708-855d-2e8e1f36b8b6", + "id": "1732560947117362000.9b75561a-8224-4fc9-9030-8370b84d42ee", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -9743,10 +9775,10 @@ } }, { - "fullUrl": "Observation/1731704147162570000.349f1ee4-3af5-4488-a631-4a1051f73265", + "fullUrl": "Observation/1732560947435581000.24cfd8df-b5c0-4e26-8530-038f0d0f38bd", "resource": { "resourceType": "Observation", - "id": "1731704147162570000.349f1ee4-3af5-4488-a631-4a1051f73265", + "id": "1732560947435581000.24cfd8df-b5c0-4e26-8530-038f0d0f38bd", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -9927,7 +9959,7 @@ { "url": "OBX.18", "valueReference": { - "reference": "Device/1731704147160990000.405e2064-9f17-44e3-8ab8-5b256cd640d5" + "reference": "Device/1732560947433754000.19ca0d1d-0037-4c58-a555-45d998f94102" } }, { @@ -9998,10 +10030,10 @@ ] }, "subject": { - "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee" }, "encounter": { - "reference": "Encounter/1731704146993830000.c7fb2291-5b17-4035-a2d1-7ccc15e57a65" + "reference": "Encounter/1732560947116827000.30eb62e2-3974-4fc3-9d69-7b9e6119177e" }, "effectiveDateTime": "2023-01-01T00:00:00Z", "_effectiveDateTime": { @@ -10014,13 +10046,13 @@ }, "performer": [ { - "reference": "Organization/1731704147162875000.6908a5eb-d000-4541-92b1-e3f85320dfc2" + "reference": "Organization/1732560947436263000.e0e7f96c-30a7-48f7-a0ab-e43f923f9f4f" }, { - "reference": "PractitionerRole/1731704147162992000.018f7b75-4ec6-4227-a3ff-7d874c6e5e3c" + "reference": "PractitionerRole/1732560947436510000.3bd0c3ad-775d-4c25-a2b8-22d533364a14" }, { - "reference": "PractitionerRole/1731704147163384000.fe838dae-1a49-4c35-9cd4-4e9acc0d6954" + "reference": "PractitionerRole/1732560947437350000.a95aa005-ca56-47ab-94c5-8fede0d519ef" } ], "valueCodeableConcept": { @@ -10118,7 +10150,7 @@ } ], "authorReference": { - "reference": "Practitioner/1731704147164734000.6e86960d-7ce5-46ce-b232-32e1f2d869cb" + "reference": "Practitioner/1732560947440304000.24cf6e82-960a-4605-8d9a-72b2e785c6b4" }, "time": "2023-02-11", "_time": { @@ -10190,7 +10222,7 @@ } ], "authorReference": { - "reference": "Practitioner/1731704147165326000.bd6acfa1-61d9-409f-9230-2a78641a0f72" + "reference": "Practitioner/1732560947441597000.2dc62479-1ac9-4917-ba62-411e37453721" }, "time": "2023-02-11", "_time": { @@ -10237,7 +10269,7 @@ ] }, "device": { - "reference": "Device/1731704147166017000.d896f77b-dd98-422d-a712-7a4836543c2d" + "reference": "Device/1732560947442931000.3c2978d9-1ed9-4a9a-9bb4-b4d49bfe12ec" }, "referenceRange": [ { @@ -10247,10 +10279,10 @@ } }, { - "fullUrl": "Device/1731704147160990000.405e2064-9f17-44e3-8ab8-5b256cd640d5", + "fullUrl": "Device/1732560947433754000.19ca0d1d-0037-4c58-a555-45d998f94102", "resource": { "resourceType": "Device", - "id": "1731704147160990000.405e2064-9f17-44e3-8ab8-5b256cd640d5", + "id": "1732560947433754000.19ca0d1d-0037-4c58-a555-45d998f94102", "identifier": [ { "extension": [ @@ -10278,10 +10310,10 @@ } }, { - "fullUrl": "Organization/1731704147162875000.6908a5eb-d000-4541-92b1-e3f85320dfc2", + "fullUrl": "Organization/1732560947436263000.e0e7f96c-30a7-48f7-a0ab-e43f923f9f4f", "resource": { "resourceType": "Organization", - "id": "1731704147162875000.6908a5eb-d000-4541-92b1-e3f85320dfc2", + "id": "1732560947436263000.e0e7f96c-30a7-48f7-a0ab-e43f923f9f4f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", @@ -10319,10 +10351,10 @@ } }, { - "fullUrl": "Practitioner/1731704147163259000.658fcd14-05f8-4ce9-b2e3-02892a4090ad", + "fullUrl": "Practitioner/1732560947437107000.5bd8092f-c0f1-440f-b4bb-1c8681413bc9", "resource": { "resourceType": "Practitioner", - "id": "1731704147163259000.658fcd14-05f8-4ce9-b2e3-02892a4090ad", + "id": "1732560947437107000.5bd8092f-c0f1-440f-b4bb-1c8681413bc9", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -10350,12 +10382,12 @@ } }, { - "fullUrl": "PractitionerRole/1731704147162992000.018f7b75-4ec6-4227-a3ff-7d874c6e5e3c", + "fullUrl": "PractitionerRole/1732560947436510000.3bd0c3ad-775d-4c25-a2b8-22d533364a14", "resource": { "resourceType": "PractitionerRole", - "id": "1731704147162992000.018f7b75-4ec6-4227-a3ff-7d874c6e5e3c", + "id": "1732560947436510000.3bd0c3ad-775d-4c25-a2b8-22d533364a14", "practitioner": { - "reference": "Practitioner/1731704147163259000.658fcd14-05f8-4ce9-b2e3-02892a4090ad" + "reference": "Practitioner/1732560947437107000.5bd8092f-c0f1-440f-b4bb-1c8681413bc9" }, "code": [ { @@ -10370,10 +10402,10 @@ } }, { - "fullUrl": "Practitioner/1731704147163668000.6fb4c171-b74f-416b-a184-d07bfa5d26d9", + "fullUrl": "Practitioner/1732560947437952000.28334464-853e-4881-bfc3-9ad3c0f82280", "resource": { "resourceType": "Practitioner", - "id": "1731704147163668000.6fb4c171-b74f-416b-a184-d07bfa5d26d9", + "id": "1732560947437952000.28334464-853e-4881-bfc3-9ad3c0f82280", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -10401,10 +10433,10 @@ } }, { - "fullUrl": "Organization/1731704147164107000.590658fa-0dd1-4426-ad4e-f0feb03c6839", + "fullUrl": "Organization/1732560947438950000.3d87b7cb-e34a-4026-abe4-33bbd35c10ad", "resource": { "resourceType": "Organization", - "id": "1731704147164107000.590658fa-0dd1-4426-ad4e-f0feb03c6839", + "id": "1732560947438950000.3d87b7cb-e34a-4026-abe4-33bbd35c10ad", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -10478,15 +10510,15 @@ } }, { - "fullUrl": "PractitionerRole/1731704147163384000.fe838dae-1a49-4c35-9cd4-4e9acc0d6954", + "fullUrl": "PractitionerRole/1732560947437350000.a95aa005-ca56-47ab-94c5-8fede0d519ef", "resource": { "resourceType": "PractitionerRole", - "id": "1731704147163384000.fe838dae-1a49-4c35-9cd4-4e9acc0d6954", + "id": "1732560947437350000.a95aa005-ca56-47ab-94c5-8fede0d519ef", "practitioner": { - "reference": "Practitioner/1731704147163668000.6fb4c171-b74f-416b-a184-d07bfa5d26d9" + "reference": "Practitioner/1732560947437952000.28334464-853e-4881-bfc3-9ad3c0f82280" }, "organization": { - "reference": "Organization/1731704147164107000.590658fa-0dd1-4426-ad4e-f0feb03c6839" + "reference": "Organization/1732560947438950000.3d87b7cb-e34a-4026-abe4-33bbd35c10ad" }, "code": [ { @@ -10501,10 +10533,10 @@ } }, { - "fullUrl": "Practitioner/1731704147164734000.6e86960d-7ce5-46ce-b232-32e1f2d869cb", + "fullUrl": "Practitioner/1732560947440304000.24cf6e82-960a-4605-8d9a-72b2e785c6b4", "resource": { "resourceType": "Practitioner", - "id": "1731704147164734000.6e86960d-7ce5-46ce-b232-32e1f2d869cb", + "id": "1732560947440304000.24cf6e82-960a-4605-8d9a-72b2e785c6b4", "identifier": [ { "value": "Bob R.N.A." @@ -10513,10 +10545,10 @@ } }, { - "fullUrl": "Practitioner/1731704147165326000.bd6acfa1-61d9-409f-9230-2a78641a0f72", + "fullUrl": "Practitioner/1732560947441597000.2dc62479-1ac9-4917-ba62-411e37453721", "resource": { "resourceType": "Practitioner", - "id": "1731704147165326000.bd6acfa1-61d9-409f-9230-2a78641a0f72", + "id": "1732560947441597000.2dc62479-1ac9-4917-ba62-411e37453721", "identifier": [ { "value": "Bob R.N.A." @@ -10525,10 +10557,10 @@ } }, { - "fullUrl": "Device/1731704147166017000.d896f77b-dd98-422d-a712-7a4836543c2d", + "fullUrl": "Device/1732560947442931000.3c2978d9-1ed9-4a9a-9bb4-b4d49bfe12ec", "resource": { "resourceType": "Device", - "id": "1731704147166017000.d896f77b-dd98-422d-a712-7a4836543c2d", + "id": "1732560947442931000.3c2978d9-1ed9-4a9a-9bb4-b4d49bfe12ec", "identifier": [ { "extension": [ @@ -10556,10 +10588,10 @@ } }, { - "fullUrl": "Observation/1731704147168198000.1c632d99-c9e4-4105-929e-424341cb702f", + "fullUrl": "Observation/1732560947452762000.982e8dbf-6f70-46c9-9291-4bf159092ea8", "resource": { "resourceType": "Observation", - "id": "1731704147168198000.1c632d99-c9e4-4105-929e-424341cb702f", + "id": "1732560947452762000.982e8dbf-6f70-46c9-9291-4bf159092ea8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -10760,13 +10792,13 @@ { "url": "OBX.18", "valueReference": { - "reference": "Device/1731704147167337000.9174c4a7-c8f4-450c-b6dd-cafc1b371187" + "reference": "Device/1732560947450961000.e87c94b2-e6f3-4d4a-9394-dcfa4b260214" } }, { "url": "OBX.18", "valueReference": { - "reference": "Device/1731704147167467000.42323ac3-be59-4bce-a1b6-4d4140e7e0b8" + "reference": "Device/1732560947451258000.e01d036e-3a31-4c54-852d-b2223d7ff180" } }, { @@ -10850,22 +10882,6 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", "valueString": "LN" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding": { - "system": "SNOMEDCT", - "code": "6142004", - "display": "Influenza (disorder)" - } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding": { - "system": "SNOMEDCT", - "code": "6142004", - "display": "Influenza (disorder)" - } } ], "system": "http://loinc.org", @@ -10875,10 +10891,10 @@ ] }, "subject": { - "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee" }, "encounter": { - "reference": "Encounter/1731704146993830000.c7fb2291-5b17-4035-a2d1-7ccc15e57a65" + "reference": "Encounter/1732560947116827000.30eb62e2-3974-4fc3-9d69-7b9e6119177e" }, "effectiveDateTime": "2023-01-01T00:00:00Z", "_effectiveDateTime": { @@ -10891,16 +10907,16 @@ }, "performer": [ { - "reference": "Organization/1731704147168467000.9f1395e7-3391-4559-a9b6-a421a5906d9f" + "reference": "Organization/1732560947453324000.d966a526-6886-4262-a380-2cfa66a23632" }, { - "reference": "PractitionerRole/1731704147168573000.4eb05911-8ff2-4204-aca7-72f82783ce5e" + "reference": "PractitionerRole/1732560947453526000.b4f1bbea-6211-4420-8414-f3499ac71d1a" }, { - "reference": "PractitionerRole/1731704147168960000.ab9f6b8d-685e-40f8-926e-f7ca864ad9c2" + "reference": "PractitionerRole/1732560947454333000.d48045c2-d160-4171-919a-d00db16e1b75" }, { - "reference": "PractitionerRole/1731704147169334000.416da949-98e9-4c53-a37a-8877d65dc889" + "reference": "PractitionerRole/1732560947455114000.18c45f9a-23ca-4a4d-8199-ab441dc23a6e" } ], "valueCodeableConcept": { @@ -11012,7 +11028,7 @@ } ], "authorReference": { - "reference": "Practitioner/1731704147170643000.aa0d8682-8f0b-4e83-ac00-3ea13bb9a10b" + "reference": "Practitioner/1732560947458639000.71d35ae3-fdc7-45e8-8611-df40fb13c990" }, "time": "2023-02-21", "_time": { @@ -11084,7 +11100,7 @@ } ], "authorReference": { - "reference": "Practitioner/1731704147171234000.932d85c8-4a1c-4f5b-857d-86b61535f2d8" + "reference": "Practitioner/1732560947459879000.6fe5cb3a-dcea-4944-bd94-89fc71a97dbc" }, "time": "2023-02-21", "_time": { @@ -11131,7 +11147,7 @@ ] }, "device": { - "reference": "Device/1731704147171938000.cb4532b3-e006-4f9e-8d37-45a5d613f4f2" + "reference": "Device/1732560947461346000.f55a48f7-adec-4248-870f-ea708477853c" }, "referenceRange": [ { @@ -11141,10 +11157,10 @@ } }, { - "fullUrl": "Device/1731704147167337000.9174c4a7-c8f4-450c-b6dd-cafc1b371187", + "fullUrl": "Device/1732560947450961000.e87c94b2-e6f3-4d4a-9394-dcfa4b260214", "resource": { "resourceType": "Device", - "id": "1731704147167337000.9174c4a7-c8f4-450c-b6dd-cafc1b371187", + "id": "1732560947450961000.e87c94b2-e6f3-4d4a-9394-dcfa4b260214", "identifier": [ { "extension": [ @@ -11172,10 +11188,10 @@ } }, { - "fullUrl": "Device/1731704147167467000.42323ac3-be59-4bce-a1b6-4d4140e7e0b8", + "fullUrl": "Device/1732560947451258000.e01d036e-3a31-4c54-852d-b2223d7ff180", "resource": { "resourceType": "Device", - "id": "1731704147167467000.42323ac3-be59-4bce-a1b6-4d4140e7e0b8", + "id": "1732560947451258000.e01d036e-3a31-4c54-852d-b2223d7ff180", "identifier": [ { "extension": [ @@ -11203,10 +11219,10 @@ } }, { - "fullUrl": "Organization/1731704147168467000.9f1395e7-3391-4559-a9b6-a421a5906d9f", + "fullUrl": "Organization/1732560947453324000.d966a526-6886-4262-a380-2cfa66a23632", "resource": { "resourceType": "Organization", - "id": "1731704147168467000.9f1395e7-3391-4559-a9b6-a421a5906d9f", + "id": "1732560947453324000.d966a526-6886-4262-a380-2cfa66a23632", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", @@ -11244,10 +11260,10 @@ } }, { - "fullUrl": "Practitioner/1731704147168839000.d2b649f5-d25a-4cd3-ac11-b5b19683e132", + "fullUrl": "Practitioner/1732560947454077000.5f76029c-4b68-4c77-ae9f-df63aa9de998", "resource": { "resourceType": "Practitioner", - "id": "1731704147168839000.d2b649f5-d25a-4cd3-ac11-b5b19683e132", + "id": "1732560947454077000.5f76029c-4b68-4c77-ae9f-df63aa9de998", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -11275,12 +11291,12 @@ } }, { - "fullUrl": "PractitionerRole/1731704147168573000.4eb05911-8ff2-4204-aca7-72f82783ce5e", + "fullUrl": "PractitionerRole/1732560947453526000.b4f1bbea-6211-4420-8414-f3499ac71d1a", "resource": { "resourceType": "PractitionerRole", - "id": "1731704147168573000.4eb05911-8ff2-4204-aca7-72f82783ce5e", + "id": "1732560947453526000.b4f1bbea-6211-4420-8414-f3499ac71d1a", "practitioner": { - "reference": "Practitioner/1731704147168839000.d2b649f5-d25a-4cd3-ac11-b5b19683e132" + "reference": "Practitioner/1732560947454077000.5f76029c-4b68-4c77-ae9f-df63aa9de998" }, "code": [ { @@ -11295,10 +11311,10 @@ } }, { - "fullUrl": "Practitioner/1731704147169216000.06ff7b28-3a7e-4247-98e1-6c1abd6a4bf3", + "fullUrl": "Practitioner/1732560947454864000.9b076555-2a5b-4c3e-a493-5933cbc6df12", "resource": { "resourceType": "Practitioner", - "id": "1731704147169216000.06ff7b28-3a7e-4247-98e1-6c1abd6a4bf3", + "id": "1732560947454864000.9b076555-2a5b-4c3e-a493-5933cbc6df12", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -11326,12 +11342,12 @@ } }, { - "fullUrl": "PractitionerRole/1731704147168960000.ab9f6b8d-685e-40f8-926e-f7ca864ad9c2", + "fullUrl": "PractitionerRole/1732560947454333000.d48045c2-d160-4171-919a-d00db16e1b75", "resource": { "resourceType": "PractitionerRole", - "id": "1731704147168960000.ab9f6b8d-685e-40f8-926e-f7ca864ad9c2", + "id": "1732560947454333000.d48045c2-d160-4171-919a-d00db16e1b75", "practitioner": { - "reference": "Practitioner/1731704147169216000.06ff7b28-3a7e-4247-98e1-6c1abd6a4bf3" + "reference": "Practitioner/1732560947454864000.9b076555-2a5b-4c3e-a493-5933cbc6df12" }, "code": [ { @@ -11346,10 +11362,10 @@ } }, { - "fullUrl": "Practitioner/1731704147169615000.990b559d-6154-4c36-9689-478b7edd9443", + "fullUrl": "Practitioner/1732560947455722000.9239160a-b816-4cf1-a255-486e508ed743", "resource": { "resourceType": "Practitioner", - "id": "1731704147169615000.990b559d-6154-4c36-9689-478b7edd9443", + "id": "1732560947455722000.9239160a-b816-4cf1-a255-486e508ed743", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -11377,10 +11393,10 @@ } }, { - "fullUrl": "Organization/1731704147170054000.c546001a-ecb4-4f54-95b9-da3cfe09e583", + "fullUrl": "Organization/1732560947457302000.24673c89-ad21-4e07-96bc-1367d4a5eb53", "resource": { "resourceType": "Organization", - "id": "1731704147170054000.c546001a-ecb4-4f54-95b9-da3cfe09e583", + "id": "1732560947457302000.24673c89-ad21-4e07-96bc-1367d4a5eb53", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -11454,15 +11470,15 @@ } }, { - "fullUrl": "PractitionerRole/1731704147169334000.416da949-98e9-4c53-a37a-8877d65dc889", + "fullUrl": "PractitionerRole/1732560947455114000.18c45f9a-23ca-4a4d-8199-ab441dc23a6e", "resource": { "resourceType": "PractitionerRole", - "id": "1731704147169334000.416da949-98e9-4c53-a37a-8877d65dc889", + "id": "1732560947455114000.18c45f9a-23ca-4a4d-8199-ab441dc23a6e", "practitioner": { - "reference": "Practitioner/1731704147169615000.990b559d-6154-4c36-9689-478b7edd9443" + "reference": "Practitioner/1732560947455722000.9239160a-b816-4cf1-a255-486e508ed743" }, "organization": { - "reference": "Organization/1731704147170054000.c546001a-ecb4-4f54-95b9-da3cfe09e583" + "reference": "Organization/1732560947457302000.24673c89-ad21-4e07-96bc-1367d4a5eb53" }, "code": [ { @@ -11477,10 +11493,10 @@ } }, { - "fullUrl": "Practitioner/1731704147170643000.aa0d8682-8f0b-4e83-ac00-3ea13bb9a10b", + "fullUrl": "Practitioner/1732560947458639000.71d35ae3-fdc7-45e8-8611-df40fb13c990", "resource": { "resourceType": "Practitioner", - "id": "1731704147170643000.aa0d8682-8f0b-4e83-ac00-3ea13bb9a10b", + "id": "1732560947458639000.71d35ae3-fdc7-45e8-8611-df40fb13c990", "identifier": [ { "value": "Bob R.N.A." @@ -11489,10 +11505,10 @@ } }, { - "fullUrl": "Practitioner/1731704147171234000.932d85c8-4a1c-4f5b-857d-86b61535f2d8", + "fullUrl": "Practitioner/1732560947459879000.6fe5cb3a-dcea-4944-bd94-89fc71a97dbc", "resource": { "resourceType": "Practitioner", - "id": "1731704147171234000.932d85c8-4a1c-4f5b-857d-86b61535f2d8", + "id": "1732560947459879000.6fe5cb3a-dcea-4944-bd94-89fc71a97dbc", "identifier": [ { "value": "Bob R.N.A." @@ -11501,10 +11517,10 @@ } }, { - "fullUrl": "Device/1731704147171938000.cb4532b3-e006-4f9e-8d37-45a5d613f4f2", + "fullUrl": "Device/1732560947461346000.f55a48f7-adec-4248-870f-ea708477853c", "resource": { "resourceType": "Device", - "id": "1731704147171938000.cb4532b3-e006-4f9e-8d37-45a5d613f4f2", + "id": "1732560947461346000.f55a48f7-adec-4248-870f-ea708477853c", "identifier": [ { "extension": [ @@ -11532,10 +11548,10 @@ } }, { - "fullUrl": "Specimen/1731704147177705000.f3963125-8b94-45a0-9230-a03c2ded1897", + "fullUrl": "Specimen/1732560947469944000.d44f2361-3edc-4170-bea3-6af32fd4a247", "resource": { "resourceType": "Specimen", - "id": "1731704147177705000.f3963125-8b94-45a0-9230-a03c2ded1897", + "id": "1732560947469944000.d44f2361-3edc-4170-bea3-6af32fd4a247", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -11566,7 +11582,7 @@ }, "collection": { "collector": { - "reference": "Practitioner/1731704147178849000.28c590b5-b762-4d6a-8f5d-c4d69b256760" + "reference": "Practitioner/1732560947472617000.12cea1fc-bc1e-4f6d-8d0b-b1dc8f747ab5" }, "collectedPeriod": { "end": "2024-02-20", @@ -11702,10 +11718,10 @@ } }, { - "fullUrl": "Practitioner/1731704147178849000.28c590b5-b762-4d6a-8f5d-c4d69b256760", + "fullUrl": "Practitioner/1732560947472617000.12cea1fc-bc1e-4f6d-8d0b-b1dc8f747ab5", "resource": { "resourceType": "Practitioner", - "id": "1731704147178849000.28c590b5-b762-4d6a-8f5d-c4d69b256760", + "id": "1732560947472617000.12cea1fc-bc1e-4f6d-8d0b-b1dc8f747ab5", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -11854,10 +11870,10 @@ } }, { - "fullUrl": "Specimen/1731704147185921000.569f0698-a5ed-4f92-8ece-4ef418c289db", + "fullUrl": "Specimen/1732560947485272000.2de97c85-b7e1-4d34-89b3-5eb0281675c7", "resource": { "resourceType": "Specimen", - "id": "1731704147185921000.569f0698-a5ed-4f92-8ece-4ef418c289db", + "id": "1732560947485272000.2de97c85-b7e1-4d34-89b3-5eb0281675c7", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -12608,10 +12624,10 @@ } }, { - "fullUrl": "Specimen/1731704147188542000.3061406c-a576-41c2-82e3-000fc013e70a", + "fullUrl": "Specimen/1732560947490639000.76590a8f-5db7-4f30-8409-11147b0d050c", "resource": { "resourceType": "Specimen", - "id": "1731704147188542000.3061406c-a576-41c2-82e3-000fc013e70a", + "id": "1732560947490639000.76590a8f-5db7-4f30-8409-11147b0d050c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -13225,10 +13241,10 @@ } }, { - "fullUrl": "ServiceRequest/1731704147218039000.4208df27-660d-47c2-acff-6836118704a4", + "fullUrl": "ServiceRequest/1732560947529907000.d8a09a6a-8364-469a-b25b-3af90b0b03a7", "resource": { "resourceType": "ServiceRequest", - "id": "1731704147218039000.4208df27-660d-47c2-acff-6836118704a4", + "id": "1732560947529907000.d8a09a6a-8364-469a-b25b-3af90b0b03a7", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", @@ -13273,25 +13289,25 @@ { "url": "ORC.19", "valueReference": { - "reference": "Practitioner/1731704147195237000.cb331cc0-ac8b-4eea-b321-b8920ce71cb7" + "reference": "Practitioner/1732560947499269000.5ec7bd2d-b46f-4ab5-b6f1-105e2a16a033" } }, { "url": "ORC.19", "valueReference": { - "reference": "Practitioner/1731704147195562000.dd9d759c-dc2e-4d35-86bc-1bc003fc9aeb" + "reference": "Practitioner/1732560947499740000.59d10b31-b2d0-4645-8bef-afeb200d6f85" } }, { "url": "orc-21-ordering-facility-name", "valueReference": { - "reference": "Organization/1731704147196014000.1df675bf-6e36-40e6-9ea8-79c5fed7b315" + "reference": "Organization/1732560947500330000.8cdf6910-2555-4d7f-9e91-3df392f1eaac" } }, { "url": "orc-21-ordering-facility-name", "valueReference": { - "reference": "Organization/1731704147196245000.dd0d299d-5ad3-4fc6-a831-3115cd4ac18a" + "reference": "Organization/1732560947500653000.31f4e156-e9ee-451b-be8a-2f507d69bfe8" } }, { @@ -13521,43 +13537,43 @@ { "url": "ORC.10", "valueReference": { - "reference": "Practitioner/1731704147197900000.b64fec6c-cfc6-434a-b92a-f6cf2764b06c" + "reference": "Practitioner/1732560947503002000.ee504390-2017-4f6f-a4f3-53b2fd73246d" } }, { "url": "ORC.10", "valueReference": { - "reference": "Practitioner/1731704147198178000.868c0d5c-23b4-4fa9-8928-8238ab04c86d" + "reference": "Practitioner/1732560947503448000.f7156834-3f5d-4a82-b7a1-98e183b07cf1" } }, { "url": "ORC.11", "valueReference": { - "reference": "Practitioner/1731704147198490000.04a64bf0-70cc-433a-be3c-2b331a12e441" + "reference": "Practitioner/1732560947503902000.ed6d174d-d09e-41af-9395-2400535214ee" } }, { "url": "ORC.11", "valueReference": { - "reference": "Practitioner/1731704147198786000.583bf1fe-fa2c-4bfb-a502-de5f852e753c" + "reference": "Practitioner/1732560947504312000.06c8aa90-edcb-468f-89e5-132d01a8b5c7" } }, { "url": "orc-12-ordering-provider", "valueReference": { - "reference": "Practitioner/1731704147199079000.1779db36-128c-4164-b38e-de6636efb229" + "reference": "Practitioner/1732560947504759000.80007309-46b8-45c5-aca3-f060b9482d7a" } }, { "url": "orc-12-ordering-provider", "valueReference": { - "reference": "Practitioner/1731704147199370000.e59dcfbf-12c0-471e-b92a-23fbb76c5128" + "reference": "Practitioner/1732560947505412000.8534206a-3bee-45ba-93ea-4c0d68ae7d23" } }, { "url": "ORC.13", "valueReference": { - "reference": "Location/1731704147199904000.5d034c54-5076-4f70-9c58-b2e8b71319a1" + "reference": "Location/1732560947506294000.04f6861c-e932-41ec-888f-b700e45b7102" } }, { @@ -13748,13 +13764,13 @@ { "url": "OBR.16", "valueReference": { - "reference": "Practitioner/1731704147202382000.63cabfeb-beb5-4e0d-b64f-c95134373633" + "reference": "Practitioner/1732560947509331000.0ab46a24-9916-4747-9fca-3a758c81028b" } }, { "url": "OBR.16", "valueReference": { - "reference": "Practitioner/1731704147202713000.417d1a2d-c639-491e-93e2-42bcd7c42905" + "reference": "Practitioner/1732560947509819000.f1cdce66-9637-48cd-8b16-10bab1f16e1d" } }, { @@ -14000,13 +14016,13 @@ { "url": "OBR.28", "valueReference": { - "reference": "Practitioner/1731704147204704000.6b69d8ef-3028-47d6-927e-d5d5872dc892" + "reference": "Practitioner/1732560947512408000.783446c3-304f-4c9f-a460-d4e80fdb8c88" } }, { "url": "OBR.28", "valueReference": { - "reference": "Practitioner/1731704147205067000.c4c1f05b-712b-4813-a986-4a9df29d8fdb" + "reference": "Practitioner/1732560947512884000.d4774390-13b1-4d5b-8a3e-0347f57475ba" } }, { @@ -14061,13 +14077,13 @@ { "url": "OBR.33", "valueReference": { - "reference": "PractitionerRole/1731704147211853000.8e9954f7-ef42-4e32-ace7-5d50620a3751" + "reference": "PractitionerRole/1732560947520941000.f4eece44-f1da-4aca-be73-8ec35f36dab6" } }, { "url": "OBR.33", "valueReference": { - "reference": "PractitionerRole/1731704147213550000.2782cfa7-176d-45f4-9da6-b3a7a0ca064d" + "reference": "PractitionerRole/1732560947523162000.7c84ee7b-bdc3-4795-a183-d2c5bec9e2be" } }, { @@ -14299,13 +14315,13 @@ { "url": "OBR.10", "valueReference": { - "reference": "Practitioner/1731704147215800000.26615138-a081-4dec-8dd4-f397cc610177" + "reference": "Practitioner/1732560947526641000.f9f859f3-9bf8-411e-8112-33b23d353c7e" } }, { "url": "OBR.10", "valueReference": { - "reference": "Practitioner/1731704147216669000.d101dec3-5e03-4524-a7de-fce7f3782bba" + "reference": "Practitioner/1732560947527932000.3ca1d3ad-62cd-41ed-9062-5fad5b91e7c3" } }, { @@ -14636,7 +14652,7 @@ } ], "subject": { - "reference": "Patient/1731704146951532000.feebe084-6c07-45e4-b0b3-8f2dc0fe51ea" + "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee" }, "occurrenceDateTime": "2022-02-02T10:22:00Z", "_occurrenceDateTime": { @@ -14702,7 +14718,7 @@ } } ], - "reference": "PractitionerRole/1731704147190227000.de0f9388-eee6-46c9-a0e9-641f06a54759" + "reference": "PractitionerRole/1732560947492831000.5cd7780b-0f2c-46ca-889f-0798fb775efb" }, "locationCode": [ { @@ -14756,21 +14772,21 @@ ], "supportingInfo": [ { - "reference": "Observation/1731704147162570000.349f1ee4-3af5-4488-a631-4a1051f73265" + "reference": "Observation/1732560947435581000.24cfd8df-b5c0-4e26-8530-038f0d0f38bd" }, { - "reference": "Observation/1731704147168198000.1c632d99-c9e4-4105-929e-424341cb702f" + "reference": "Observation/1732560947452762000.982e8dbf-6f70-46c9-9291-4bf159092ea8" } ], "specimen": [ { - "reference": "Specimen/1731704147185921000.569f0698-a5ed-4f92-8ece-4ef418c289db" + "reference": "Specimen/1732560947485272000.2de97c85-b7e1-4d34-89b3-5eb0281675c7" }, { - "reference": "Specimen/1731704147188542000.3061406c-a576-41c2-82e3-000fc013e70a" + "reference": "Specimen/1732560947490639000.76590a8f-5db7-4f30-8409-11147b0d050c" }, { - "reference": "Specimen/1731704147177705000.f3963125-8b94-45a0-9230-a03c2ded1897" + "reference": "Specimen/1732560947469944000.d44f2361-3edc-4170-bea3-6af32fd4a247" } ], "note": [ @@ -14877,10 +14893,10 @@ } }, { - "fullUrl": "Practitioner/1731704147190872000.837181c4-e6fc-4e7f-99bd-dcf8d3652e07", + "fullUrl": "Practitioner/1732560947493696000.0477e27d-b681-492e-b0a3-4df3af046aa0", "resource": { "resourceType": "Practitioner", - "id": "1731704147190872000.837181c4-e6fc-4e7f-99bd-dcf8d3652e07", + "id": "1732560947493696000.0477e27d-b681-492e-b0a3-4df3af046aa0", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -14936,10 +14952,10 @@ } }, { - "fullUrl": "Location/1731704147191158000.d0cacc5d-bc46-4559-9dbe-1f883c20dccb", + "fullUrl": "Location/1732560947494068000.23e06089-e5d2-4ce3-b999-2680e8d550ff", "resource": { "resourceType": "Location", - "id": "1731704147191158000.d0cacc5d-bc46-4559-9dbe-1f883c20dccb", + "id": "1732560947494068000.23e06089-e5d2-4ce3-b999-2680e8d550ff", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -14963,10 +14979,10 @@ } }, { - "fullUrl": "Organization/1731704147191936000.8abde946-6f9d-45c2-9211-18dbf481a8dd", + "fullUrl": "Organization/1732560947495609000.878c2511-f6c3-4dac-a91f-ef40b67ea045", "resource": { "resourceType": "Organization", - "id": "1731704147191936000.8abde946-6f9d-45c2-9211-18dbf481a8dd", + "id": "1732560947495609000.878c2511-f6c3-4dac-a91f-ef40b67ea045", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", @@ -15005,7 +15021,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704147191158000.d0cacc5d-bc46-4559-9dbe-1f883c20dccb" + "reference": "Location/1732560947494068000.23e06089-e5d2-4ce3-b999-2680e8d550ff" } } ], @@ -15089,23 +15105,23 @@ } }, { - "fullUrl": "PractitionerRole/1731704147190227000.de0f9388-eee6-46c9-a0e9-641f06a54759", + "fullUrl": "PractitionerRole/1732560947492831000.5cd7780b-0f2c-46ca-889f-0798fb775efb", "resource": { "resourceType": "PractitionerRole", - "id": "1731704147190227000.de0f9388-eee6-46c9-a0e9-641f06a54759", + "id": "1732560947492831000.5cd7780b-0f2c-46ca-889f-0798fb775efb", "practitioner": { - "reference": "Practitioner/1731704147190872000.837181c4-e6fc-4e7f-99bd-dcf8d3652e07" + "reference": "Practitioner/1732560947493696000.0477e27d-b681-492e-b0a3-4df3af046aa0" }, "organization": { - "reference": "Organization/1731704147191936000.8abde946-6f9d-45c2-9211-18dbf481a8dd" + "reference": "Organization/1732560947495609000.878c2511-f6c3-4dac-a91f-ef40b67ea045" } } }, { - "fullUrl": "Practitioner/1731704147195237000.cb331cc0-ac8b-4eea-b321-b8920ce71cb7", + "fullUrl": "Practitioner/1732560947499269000.5ec7bd2d-b46f-4ab5-b6f1-105e2a16a033", "resource": { "resourceType": "Practitioner", - "id": "1731704147195237000.cb331cc0-ac8b-4eea-b321-b8920ce71cb7", + "id": "1732560947499269000.5ec7bd2d-b46f-4ab5-b6f1-105e2a16a033", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15132,10 +15148,10 @@ } }, { - "fullUrl": "Practitioner/1731704147195562000.dd9d759c-dc2e-4d35-86bc-1bc003fc9aeb", + "fullUrl": "Practitioner/1732560947499740000.59d10b31-b2d0-4645-8bef-afeb200d6f85", "resource": { "resourceType": "Practitioner", - "id": "1731704147195562000.dd9d759c-dc2e-4d35-86bc-1bc003fc9aeb", + "id": "1732560947499740000.59d10b31-b2d0-4645-8bef-afeb200d6f85", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15162,10 +15178,10 @@ } }, { - "fullUrl": "Location/1731704147195823000.dcb8facd-feae-4182-8a57-4131fdc09680", + "fullUrl": "Location/1732560947500074000.bb6760cf-9dbe-4d9a-9f74-ea8bb96b5798", "resource": { "resourceType": "Location", - "id": "1731704147195823000.dcb8facd-feae-4182-8a57-4131fdc09680", + "id": "1732560947500074000.bb6760cf-9dbe-4d9a-9f74-ea8bb96b5798", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -15189,10 +15205,10 @@ } }, { - "fullUrl": "Organization/1731704147196014000.1df675bf-6e36-40e6-9ea8-79c5fed7b315", + "fullUrl": "Organization/1732560947500330000.8cdf6910-2555-4d7f-9e91-3df392f1eaac", "resource": { "resourceType": "Organization", - "id": "1731704147196014000.1df675bf-6e36-40e6-9ea8-79c5fed7b315", + "id": "1732560947500330000.8cdf6910-2555-4d7f-9e91-3df392f1eaac", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", @@ -15231,7 +15247,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731704147195823000.dcb8facd-feae-4182-8a57-4131fdc09680" + "reference": "Location/1732560947500074000.bb6760cf-9dbe-4d9a-9f74-ea8bb96b5798" } } ], @@ -15250,10 +15266,10 @@ } }, { - "fullUrl": "Organization/1731704147196245000.dd0d299d-5ad3-4fc6-a831-3115cd4ac18a", + "fullUrl": "Organization/1732560947500653000.31f4e156-e9ee-451b-be8a-2f507d69bfe8", "resource": { "resourceType": "Organization", - "id": "1731704147196245000.dd0d299d-5ad3-4fc6-a831-3115cd4ac18a", + "id": "1732560947500653000.31f4e156-e9ee-451b-be8a-2f507d69bfe8", "identifier": [ { "extension": [ @@ -15281,10 +15297,10 @@ } }, { - "fullUrl": "Practitioner/1731704147197900000.b64fec6c-cfc6-434a-b92a-f6cf2764b06c", + "fullUrl": "Practitioner/1732560947503002000.ee504390-2017-4f6f-a4f3-53b2fd73246d", "resource": { "resourceType": "Practitioner", - "id": "1731704147197900000.b64fec6c-cfc6-434a-b92a-f6cf2764b06c", + "id": "1732560947503002000.ee504390-2017-4f6f-a4f3-53b2fd73246d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15311,10 +15327,10 @@ } }, { - "fullUrl": "Practitioner/1731704147198178000.868c0d5c-23b4-4fa9-8928-8238ab04c86d", + "fullUrl": "Practitioner/1732560947503448000.f7156834-3f5d-4a82-b7a1-98e183b07cf1", "resource": { "resourceType": "Practitioner", - "id": "1731704147198178000.868c0d5c-23b4-4fa9-8928-8238ab04c86d", + "id": "1732560947503448000.f7156834-3f5d-4a82-b7a1-98e183b07cf1", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15341,10 +15357,10 @@ } }, { - "fullUrl": "Practitioner/1731704147198490000.04a64bf0-70cc-433a-be3c-2b331a12e441", + "fullUrl": "Practitioner/1732560947503902000.ed6d174d-d09e-41af-9395-2400535214ee", "resource": { "resourceType": "Practitioner", - "id": "1731704147198490000.04a64bf0-70cc-433a-be3c-2b331a12e441", + "id": "1732560947503902000.ed6d174d-d09e-41af-9395-2400535214ee", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15371,10 +15387,10 @@ } }, { - "fullUrl": "Practitioner/1731704147198786000.583bf1fe-fa2c-4bfb-a502-de5f852e753c", + "fullUrl": "Practitioner/1732560947504312000.06c8aa90-edcb-468f-89e5-132d01a8b5c7", "resource": { "resourceType": "Practitioner", - "id": "1731704147198786000.583bf1fe-fa2c-4bfb-a502-de5f852e753c", + "id": "1732560947504312000.06c8aa90-edcb-468f-89e5-132d01a8b5c7", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15401,10 +15417,10 @@ } }, { - "fullUrl": "Practitioner/1731704147199079000.1779db36-128c-4164-b38e-de6636efb229", + "fullUrl": "Practitioner/1732560947504759000.80007309-46b8-45c5-aca3-f060b9482d7a", "resource": { "resourceType": "Practitioner", - "id": "1731704147199079000.1779db36-128c-4164-b38e-de6636efb229", + "id": "1732560947504759000.80007309-46b8-45c5-aca3-f060b9482d7a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15431,10 +15447,10 @@ } }, { - "fullUrl": "Practitioner/1731704147199370000.e59dcfbf-12c0-471e-b92a-23fbb76c5128", + "fullUrl": "Practitioner/1732560947505412000.8534206a-3bee-45ba-93ea-4c0d68ae7d23", "resource": { "resourceType": "Practitioner", - "id": "1731704147199370000.e59dcfbf-12c0-471e-b92a-23fbb76c5128", + "id": "1732560947505412000.8534206a-3bee-45ba-93ea-4c0d68ae7d23", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -15461,10 +15477,10 @@ } }, { - "fullUrl": "Location/1731704147199755000.fd89ef34-6aaf-44ab-b3d8-8c863bed21b8", + "fullUrl": "Location/1732560947506084000.5a892c5b-37ad-4002-bd47-8c6803d8464c", "resource": { "resourceType": "Location", - "id": "1731704147199755000.fd89ef34-6aaf-44ab-b3d8-8c863bed21b8", + "id": "1732560947506084000.5a892c5b-37ad-4002-bd47-8c6803d8464c", "identifier": [ { "extension": [ @@ -15516,10 +15532,10 @@ } }, { - "fullUrl": "Location/1731704147199904000.5d034c54-5076-4f70-9c58-b2e8b71319a1", + "fullUrl": "Location/1732560947506294000.04f6861c-e932-41ec-888f-b700e45b7102", "resource": { "resourceType": "Location", - "id": "1731704147199904000.5d034c54-5076-4f70-9c58-b2e8b71319a1", + "id": "1732560947506294000.04f6861c-e932-41ec-888f-b700e45b7102", "identifier": [ { "extension": [ @@ -15570,15 +15586,15 @@ ] }, "partOf": { - "reference": "Location/1731704147199755000.fd89ef34-6aaf-44ab-b3d8-8c863bed21b8" + "reference": "Location/1732560947506084000.5a892c5b-37ad-4002-bd47-8c6803d8464c" } } }, { - "fullUrl": "Practitioner/1731704147202382000.63cabfeb-beb5-4e0d-b64f-c95134373633", + "fullUrl": "Practitioner/1732560947509331000.0ab46a24-9916-4747-9fca-3a758c81028b", "resource": { "resourceType": "Practitioner", - "id": "1731704147202382000.63cabfeb-beb5-4e0d-b64f-c95134373633", + "id": "1732560947509331000.0ab46a24-9916-4747-9fca-3a758c81028b", "identifier": [ { "value": "1" @@ -15612,10 +15628,10 @@ } }, { - "fullUrl": "Practitioner/1731704147202713000.417d1a2d-c639-491e-93e2-42bcd7c42905", + "fullUrl": "Practitioner/1732560947509819000.f1cdce66-9637-48cd-8b16-10bab1f16e1d", "resource": { "resourceType": "Practitioner", - "id": "1731704147202713000.417d1a2d-c639-491e-93e2-42bcd7c42905", + "id": "1732560947509819000.f1cdce66-9637-48cd-8b16-10bab1f16e1d", "identifier": [ { "value": "2" @@ -15649,10 +15665,10 @@ } }, { - "fullUrl": "Practitioner/1731704147204704000.6b69d8ef-3028-47d6-927e-d5d5872dc892", + "fullUrl": "Practitioner/1732560947512408000.783446c3-304f-4c9f-a460-d4e80fdb8c88", "resource": { "resourceType": "Practitioner", - "id": "1731704147204704000.6b69d8ef-3028-47d6-927e-d5d5872dc892", + "id": "1732560947512408000.783446c3-304f-4c9f-a460-d4e80fdb8c88", "identifier": [ { "value": "1" @@ -15686,10 +15702,10 @@ } }, { - "fullUrl": "Practitioner/1731704147205067000.c4c1f05b-712b-4813-a986-4a9df29d8fdb", + "fullUrl": "Practitioner/1732560947512884000.d4774390-13b1-4d5b-8a3e-0347f57475ba", "resource": { "resourceType": "Practitioner", - "id": "1731704147205067000.c4c1f05b-712b-4813-a986-4a9df29d8fdb", + "id": "1732560947512884000.d4774390-13b1-4d5b-8a3e-0347f57475ba", "identifier": [ { "value": "2" @@ -15723,10 +15739,10 @@ } }, { - "fullUrl": "Practitioner/1731704147205724000.c2d64559-e0d4-4017-a920-ff293548d65a", + "fullUrl": "Practitioner/1732560947513689000.989ab7fa-f0bb-4786-b727-a9becbfd1e60", "resource": { "resourceType": "Practitioner", - "id": "1731704147205724000.c2d64559-e0d4-4017-a920-ff293548d65a", + "id": "1732560947513689000.989ab7fa-f0bb-4786-b727-a9becbfd1e60", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", @@ -15793,10 +15809,10 @@ } }, { - "fullUrl": "Location/1731704147207231000.f137ba6c-0f8d-452b-b503-8363140bd8d9", + "fullUrl": "Location/1732560947514770000.899f4562-f9db-4c94-bb05-047c9b1e297c", "resource": { "resourceType": "Location", - "id": "1731704147207231000.f137ba6c-0f8d-452b-b503-8363140bd8d9", + "id": "1732560947514770000.899f4562-f9db-4c94-bb05-047c9b1e297c", "identifier": [ { "extension": [ @@ -15843,10 +15859,10 @@ } }, { - "fullUrl": "Location/1731704147211014000.bcba6116-9a8f-4b82-8bf7-db9455f0baa9", + "fullUrl": "Location/1732560947519778000.baa0c773-906b-48e3-8494-d317e4765870", "resource": { "resourceType": "Location", - "id": "1731704147211014000.bcba6116-9a8f-4b82-8bf7-db9455f0baa9", + "id": "1732560947519778000.baa0c773-906b-48e3-8494-d317e4765870", "identifier": [ { "value": "Building 123" @@ -15865,10 +15881,10 @@ } }, { - "fullUrl": "Location/1731704147211283000.d4c96278-9ffc-465d-a89b-996d017764dd", + "fullUrl": "Location/1732560947520130000.cbd13489-be1a-49b5-87fb-0674e5abb016", "resource": { "resourceType": "Location", - "id": "1731704147211283000.d4c96278-9ffc-465d-a89b-996d017764dd", + "id": "1732560947520130000.cbd13489-be1a-49b5-87fb-0674e5abb016", "identifier": [ { "value": "Point of Care" @@ -15894,10 +15910,10 @@ } }, { - "fullUrl": "Location/1731704147211453000.670df912-71b5-403a-9567-094aaf478caf", + "fullUrl": "Location/1732560947520385000.002d6faf-8054-462d-b3c2-17cef5f937c9", "resource": { "resourceType": "Location", - "id": "1731704147211453000.670df912-71b5-403a-9567-094aaf478caf", + "id": "1732560947520385000.002d6faf-8054-462d-b3c2-17cef5f937c9", "identifier": [ { "value": "Floor A" @@ -15916,10 +15932,10 @@ } }, { - "fullUrl": "Location/1731704147211631000.fbf85beb-72c2-4c3d-9d58-e81e5b28a9a7", + "fullUrl": "Location/1732560947520622000.ec54c592-0fd8-4cc6-b472-bd37ae789d4c", "resource": { "resourceType": "Location", - "id": "1731704147211631000.fbf85beb-72c2-4c3d-9d58-e81e5b28a9a7", + "id": "1732560947520622000.ec54c592-0fd8-4cc6-b472-bd37ae789d4c", "identifier": [ { "value": "Room 101" @@ -15938,10 +15954,10 @@ } }, { - "fullUrl": "Location/1731704147211793000.5112c1cd-c316-4eed-9ebd-079ff9655734", + "fullUrl": "Location/1732560947520860000.2766d69c-fb80-4b36-b28a-4974be18add8", "resource": { "resourceType": "Location", - "id": "1731704147211793000.5112c1cd-c316-4eed-9ebd-079ff9655734", + "id": "1732560947520860000.2766d69c-fb80-4b36-b28a-4974be18add8", "identifier": [ { "value": "Bed A" @@ -15960,10 +15976,10 @@ } }, { - "fullUrl": "PractitionerRole/1731704147211853000.8e9954f7-ef42-4e32-ace7-5d50620a3751", + "fullUrl": "PractitionerRole/1732560947520941000.f4eece44-f1da-4aca-be73-8ec35f36dab6", "resource": { "resourceType": "PractitionerRole", - "id": "1731704147211853000.8e9954f7-ef42-4e32-ace7-5d50620a3751", + "id": "1732560947520941000.f4eece44-f1da-4aca-be73-8ec35f36dab6", "period": { "start": "2023-04-01T10:25:31-04:00", "_start": { @@ -15985,35 +16001,35 @@ } }, "practitioner": { - "reference": "Practitioner/1731704147205724000.c2d64559-e0d4-4017-a920-ff293548d65a" + "reference": "Practitioner/1732560947513689000.989ab7fa-f0bb-4786-b727-a9becbfd1e60" }, "location": [ { - "reference": "Location/1731704147207231000.f137ba6c-0f8d-452b-b503-8363140bd8d9" + "reference": "Location/1732560947514770000.899f4562-f9db-4c94-bb05-047c9b1e297c" }, { - "reference": "Location/1731704147211014000.bcba6116-9a8f-4b82-8bf7-db9455f0baa9" + "reference": "Location/1732560947519778000.baa0c773-906b-48e3-8494-d317e4765870" }, { - "reference": "Location/1731704147211283000.d4c96278-9ffc-465d-a89b-996d017764dd" + "reference": "Location/1732560947520130000.cbd13489-be1a-49b5-87fb-0674e5abb016" }, { - "reference": "Location/1731704147211453000.670df912-71b5-403a-9567-094aaf478caf" + "reference": "Location/1732560947520385000.002d6faf-8054-462d-b3c2-17cef5f937c9" }, { - "reference": "Location/1731704147211631000.fbf85beb-72c2-4c3d-9d58-e81e5b28a9a7" + "reference": "Location/1732560947520622000.ec54c592-0fd8-4cc6-b472-bd37ae789d4c" }, { - "reference": "Location/1731704147211793000.5112c1cd-c316-4eed-9ebd-079ff9655734" + "reference": "Location/1732560947520860000.2766d69c-fb80-4b36-b28a-4974be18add8" } ] } }, { - "fullUrl": "Practitioner/1731704147212340000.e2e0c2bb-9790-4d5b-bb08-7ab58adece2a", + "fullUrl": "Practitioner/1732560947521580000.9330085d-9c64-4b23-898d-fc1bc316d586", "resource": { "resourceType": "Practitioner", - "id": "1731704147212340000.e2e0c2bb-9790-4d5b-bb08-7ab58adece2a", + "id": "1732560947521580000.9330085d-9c64-4b23-898d-fc1bc316d586", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", @@ -16080,10 +16096,10 @@ } }, { - "fullUrl": "Location/1731704147212528000.58fe3b52-dd06-4182-a73e-37f67635bd2e", + "fullUrl": "Location/1732560947521847000.75df0af0-f84c-4d5e-8e52-527efd517da2", "resource": { "resourceType": "Location", - "id": "1731704147212528000.58fe3b52-dd06-4182-a73e-37f67635bd2e", + "id": "1732560947521847000.75df0af0-f84c-4d5e-8e52-527efd517da2", "identifier": [ { "extension": [ @@ -16130,10 +16146,10 @@ } }, { - "fullUrl": "Location/1731704147212695000.ba243a96-dfd5-413d-8aa4-196dce741f6a", + "fullUrl": "Location/1732560947522072000.f6938ab7-8e59-4ee2-89d7-8c1661087a27", "resource": { "resourceType": "Location", - "id": "1731704147212695000.ba243a96-dfd5-413d-8aa4-196dce741f6a", + "id": "1732560947522072000.f6938ab7-8e59-4ee2-89d7-8c1661087a27", "identifier": [ { "value": "Building 123" @@ -16152,10 +16168,10 @@ } }, { - "fullUrl": "Location/1731704147212956000.9bb0fed5-c0c7-4e37-bd10-970414515cd6", + "fullUrl": "Location/1732560947522403000.efdd2a8b-bfa4-4dd5-83ae-c38648ec1d24", "resource": { "resourceType": "Location", - "id": "1731704147212956000.9bb0fed5-c0c7-4e37-bd10-970414515cd6", + "id": "1732560947522403000.efdd2a8b-bfa4-4dd5-83ae-c38648ec1d24", "identifier": [ { "value": "Point of Care" @@ -16181,10 +16197,10 @@ } }, { - "fullUrl": "Location/1731704147213139000.2c0cc0c1-c713-4a9b-93a2-9f205ea319e5", + "fullUrl": "Location/1732560947522621000.8fe4d35a-e4c0-49af-8a26-b3d58e3e3da4", "resource": { "resourceType": "Location", - "id": "1731704147213139000.2c0cc0c1-c713-4a9b-93a2-9f205ea319e5", + "id": "1732560947522621000.8fe4d35a-e4c0-49af-8a26-b3d58e3e3da4", "identifier": [ { "value": "Floor A" @@ -16203,10 +16219,10 @@ } }, { - "fullUrl": "Location/1731704147213310000.e1ec7b93-8462-4ab6-8cf4-9c8961fcc4cc", + "fullUrl": "Location/1732560947522844000.32e18ce9-898d-4990-bdb6-eebb57cbf15d", "resource": { "resourceType": "Location", - "id": "1731704147213310000.e1ec7b93-8462-4ab6-8cf4-9c8961fcc4cc", + "id": "1732560947522844000.32e18ce9-898d-4990-bdb6-eebb57cbf15d", "identifier": [ { "value": "Room 101" @@ -16225,10 +16241,10 @@ } }, { - "fullUrl": "Location/1731704147213481000.b8856f6f-53a4-417a-961f-45104e0cfd50", + "fullUrl": "Location/1732560947523077000.606ef017-d450-4f80-be05-3bffc19531e4", "resource": { "resourceType": "Location", - "id": "1731704147213481000.b8856f6f-53a4-417a-961f-45104e0cfd50", + "id": "1732560947523077000.606ef017-d450-4f80-be05-3bffc19531e4", "identifier": [ { "value": "Bed A" @@ -16247,10 +16263,10 @@ } }, { - "fullUrl": "PractitionerRole/1731704147213550000.2782cfa7-176d-45f4-9da6-b3a7a0ca064d", + "fullUrl": "PractitionerRole/1732560947523162000.7c84ee7b-bdc3-4795-a183-d2c5bec9e2be", "resource": { "resourceType": "PractitionerRole", - "id": "1731704147213550000.2782cfa7-176d-45f4-9da6-b3a7a0ca064d", + "id": "1732560947523162000.7c84ee7b-bdc3-4795-a183-d2c5bec9e2be", "period": { "start": "2023-04-01T10:25:31-04:00", "_start": { @@ -16272,35 +16288,35 @@ } }, "practitioner": { - "reference": "Practitioner/1731704147212340000.e2e0c2bb-9790-4d5b-bb08-7ab58adece2a" + "reference": "Practitioner/1732560947521580000.9330085d-9c64-4b23-898d-fc1bc316d586" }, "location": [ { - "reference": "Location/1731704147212528000.58fe3b52-dd06-4182-a73e-37f67635bd2e" + "reference": "Location/1732560947521847000.75df0af0-f84c-4d5e-8e52-527efd517da2" }, { - "reference": "Location/1731704147212695000.ba243a96-dfd5-413d-8aa4-196dce741f6a" + "reference": "Location/1732560947522072000.f6938ab7-8e59-4ee2-89d7-8c1661087a27" }, { - "reference": "Location/1731704147212956000.9bb0fed5-c0c7-4e37-bd10-970414515cd6" + "reference": "Location/1732560947522403000.efdd2a8b-bfa4-4dd5-83ae-c38648ec1d24" }, { - "reference": "Location/1731704147213139000.2c0cc0c1-c713-4a9b-93a2-9f205ea319e5" + "reference": "Location/1732560947522621000.8fe4d35a-e4c0-49af-8a26-b3d58e3e3da4" }, { - "reference": "Location/1731704147213310000.e1ec7b93-8462-4ab6-8cf4-9c8961fcc4cc" + "reference": "Location/1732560947522844000.32e18ce9-898d-4990-bdb6-eebb57cbf15d" }, { - "reference": "Location/1731704147213481000.b8856f6f-53a4-417a-961f-45104e0cfd50" + "reference": "Location/1732560947523077000.606ef017-d450-4f80-be05-3bffc19531e4" } ] } }, { - "fullUrl": "Practitioner/1731704147215800000.26615138-a081-4dec-8dd4-f397cc610177", + "fullUrl": "Practitioner/1732560947526641000.f9f859f3-9bf8-411e-8112-33b23d353c7e", "resource": { "resourceType": "Practitioner", - "id": "1731704147215800000.26615138-a081-4dec-8dd4-f397cc610177", + "id": "1732560947526641000.f9f859f3-9bf8-411e-8112-33b23d353c7e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -16449,10 +16465,10 @@ } }, { - "fullUrl": "Practitioner/1731704147216669000.d101dec3-5e03-4524-a7de-fce7f3782bba", + "fullUrl": "Practitioner/1732560947527932000.3ca1d3ad-62cd-41ed-9062-5fad5b91e7c3", "resource": { "resourceType": "Practitioner", - "id": "1731704147216669000.d101dec3-5e03-4524-a7de-fce7f3782bba", + "id": "1732560947527932000.3ca1d3ad-62cd-41ed-9062-5fad5b91e7c3", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir index dbd8ced6685..be9dcdbbb46 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir @@ -1,21 +1,21 @@ { "resourceType": "Bundle", - "id": "1731029041966102000.c61cae84-2e4a-4896-a1c9-606af60b8644", + "id": "1732562153058506000.7cc24107-cbb3-445d-9ef3-20575f5535e3", "meta": { - "lastUpdated": "2024-11-07T17:24:01.970-08:00" + "lastUpdated": "2024-11-25T14:15:53.069-05:00" }, "identifier": { "system": "https://reportstream.cdc.gov/prime-router", "value": "0123" }, "type": "message", - "timestamp": "2019-07-20T09:12:29.000-07:00", + "timestamp": "2019-07-20T09:12:29.000-04:00", "entry": [ { - "fullUrl": "MessageHeader/1731029042020936000.11b249e1-d39d-4c63-bf54-183be05520c6", + "fullUrl": "MessageHeader/1732562153157287000.e92f3023-52ef-4fbc-a6ba-48dd04e150d9", "resource": { "resourceType": "MessageHeader", - "id": "1731029042020936000.11b249e1-d39d-4c63-bf54-183be05520c6", + "id": "1732562153157287000.e92f3023-52ef-4fbc-a6ba-48dd04e150d9", "meta": { "security": [ { @@ -183,7 +183,7 @@ "name": "txdshslabNBS", "endpoint": "urn:oid:2.16.840.1.114222.4.1.181960.2", "receiver": { - "reference": "Organization/1731029042017362000.106c959b-9e9e-4d4f-a7e8-f24db85a4d8e" + "reference": "Organization/1732562153152314000.636eb862-9bcf-4578-a8c4-76d76a52c7ba" } }, { @@ -204,17 +204,17 @@ "name": "ReceivingNetworkAddress", "endpoint": "urn:oid:9.87.123.1.114222.XXX", "receiver": { - "reference": "Organization/1731029042018204000.aee781f0-7046-460d-b453-df6eb98361fd" + "reference": "Organization/1732562153153628000.0edff44e-8d45-4fc3-b5c3-08fbed46c70e" } }, { "receiver": { - "reference": "Organization/1731029042020729000.07d4fabb-3c13-4e3e-9073-139ea792def6" + "reference": "Organization/1732562153157046000.37e93667-a04a-48be-b006-008c74bb0229" } } ], "sender": { - "reference": "Organization/1731029041997646000.0e5c02cb-8c43-4143-9430-46e27ea77fe0" + "reference": "Organization/1732562153123310000.dd82ace9-715d-4637-bdd6-9168cfe52cb2" }, "source": { "extension": [ @@ -238,15 +238,15 @@ "endpoint": "urn:oid:2.16.840.1.114222.XXX" }, "responsible": { - "reference": "Organization/1731029042016675000.a4b74f1e-f4df-458a-ac8b-261f7f96e3d2" + "reference": "Organization/1732562153151265000.9bb994e6-10bc-44ca-be6f-6a3b49f0993a" } } }, { - "fullUrl": "Organization/1731029041997646000.0e5c02cb-8c43-4143-9430-46e27ea77fe0", + "fullUrl": "Organization/1732562153123310000.dd82ace9-715d-4637-bdd6-9168cfe52cb2", "resource": { "resourceType": "Organization", - "id": "1731029041997646000.0e5c02cb-8c43-4143-9430-46e27ea77fe0", + "id": "1732562153123310000.dd82ace9-715d-4637-bdd6-9168cfe52cb2", "identifier": [ { "extension": [ @@ -284,10 +284,10 @@ } }, { - "fullUrl": "Location/1731029042013195000.465bf635-a79d-4108-b166-ad2dfd5d0106", + "fullUrl": "Location/1732562153145172000.e4978d40-c022-47e7-8443-cf61eb977e14", "resource": { "resourceType": "Location", - "id": "1731029042013195000.465bf635-a79d-4108-b166-ad2dfd5d0106", + "id": "1732562153145172000.e4978d40-c022-47e7-8443-cf61eb977e14", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -311,10 +311,10 @@ } }, { - "fullUrl": "Organization/1731029042016675000.a4b74f1e-f4df-458a-ac8b-261f7f96e3d2", + "fullUrl": "Organization/1732562153151265000.9bb994e6-10bc-44ca-be6f-6a3b49f0993a", "resource": { "resourceType": "Organization", - "id": "1731029042016675000.a4b74f1e-f4df-458a-ac8b-261f7f96e3d2", + "id": "1732562153151265000.9bb994e6-10bc-44ca-be6f-6a3b49f0993a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -422,7 +422,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042013195000.465bf635-a79d-4108-b166-ad2dfd5d0106" + "reference": "Location/1732562153145172000.e4978d40-c022-47e7-8443-cf61eb977e14" } } ], @@ -441,10 +441,10 @@ } }, { - "fullUrl": "Organization/1731029042017362000.106c959b-9e9e-4d4f-a7e8-f24db85a4d8e", + "fullUrl": "Organization/1732562153152314000.636eb862-9bcf-4578-a8c4-76d76a52c7ba", "resource": { "resourceType": "Organization", - "id": "1731029042017362000.106c959b-9e9e-4d4f-a7e8-f24db85a4d8e", + "id": "1732562153152314000.636eb862-9bcf-4578-a8c4-76d76a52c7ba", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -483,10 +483,10 @@ } }, { - "fullUrl": "Organization/1731029042018204000.aee781f0-7046-460d-b453-df6eb98361fd", + "fullUrl": "Organization/1732562153153628000.0edff44e-8d45-4fc3-b5c3-08fbed46c70e", "resource": { "resourceType": "Organization", - "id": "1731029042018204000.aee781f0-7046-460d-b453-df6eb98361fd", + "id": "1732562153153628000.0edff44e-8d45-4fc3-b5c3-08fbed46c70e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -525,10 +525,10 @@ } }, { - "fullUrl": "Location/1731029042019265000.0e7b637a-eb35-412f-88d9-412d14965fd3", + "fullUrl": "Location/1732562153155241000.f7d91a91-d032-427f-a60f-1c9d160143c8", "resource": { "resourceType": "Location", - "id": "1731029042019265000.0e7b637a-eb35-412f-88d9-412d14965fd3", + "id": "1732562153155241000.f7d91a91-d032-427f-a60f-1c9d160143c8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -552,10 +552,10 @@ } }, { - "fullUrl": "Organization/1731029042020729000.07d4fabb-3c13-4e3e-9073-139ea792def6", + "fullUrl": "Organization/1732562153157046000.37e93667-a04a-48be-b006-008c74bb0229", "resource": { "resourceType": "Organization", - "id": "1731029042020729000.07d4fabb-3c13-4e3e-9073-139ea792def6", + "id": "1732562153157046000.37e93667-a04a-48be-b006-008c74bb0229", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -667,7 +667,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042019265000.0e7b637a-eb35-412f-88d9-412d14965fd3" + "reference": "Location/1732562153155241000.f7d91a91-d032-427f-a60f-1c9d160143c8" } } ], @@ -686,10 +686,10 @@ } }, { - "fullUrl": "Provenance/1731029042255928000.7a039cd4-4b47-477e-afb0-4ed3bc68bb61", + "fullUrl": "Provenance/1732562153760137000.9845f2ac-0c8e-4157-bf81-430b8f689f6a", "resource": { "resourceType": "Provenance", - "id": "1731029042255928000.7a039cd4-4b47-477e-afb0-4ed3bc68bb61", + "id": "1732562153760137000.9845f2ac-0c8e-4157-bf81-430b8f689f6a", "recorded": "2019-07-20T09:12:29Z", "activity": { "coding": [ @@ -709,17 +709,17 @@ ] }, "who": { - "reference": "Organization/1731029042255695000.3cdd1b82-df0c-4f16-88d7-bf3f9455885b" + "reference": "Organization/1732562153759773000.5080022a-2415-47cf-8028-6440055dff6c" } } ] } }, { - "fullUrl": "Location/1731029042254728000.e748abca-2697-4c52-9736-739a09f6c29b", + "fullUrl": "Location/1732562153758411000.b85d5a33-3539-4bb5-84ce-e23b322ecc6b", "resource": { "resourceType": "Location", - "id": "1731029042254728000.e748abca-2697-4c52-9736-739a09f6c29b", + "id": "1732562153758411000.b85d5a33-3539-4bb5-84ce-e23b322ecc6b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -743,10 +743,10 @@ } }, { - "fullUrl": "Organization/1731029042255695000.3cdd1b82-df0c-4f16-88d7-bf3f9455885b", + "fullUrl": "Organization/1732562153759773000.5080022a-2415-47cf-8028-6440055dff6c", "resource": { "resourceType": "Organization", - "id": "1731029042255695000.3cdd1b82-df0c-4f16-88d7-bf3f9455885b", + "id": "1732562153759773000.5080022a-2415-47cf-8028-6440055dff6c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -854,7 +854,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042254728000.e748abca-2697-4c52-9736-739a09f6c29b" + "reference": "Location/1732562153758411000.b85d5a33-3539-4bb5-84ce-e23b322ecc6b" } } ], @@ -873,11 +873,11 @@ } }, { - "fullUrl": "Provenance/1731029042266187000.70e81727-b4fe-47f7-91b1-5d121def562d", + "fullUrl": "Provenance/1732562153773679000.9c273ef9-317b-4457-acaa-d0a10be76910", "resource": { "resourceType": "Provenance", - "id": "1731029042266187000.70e81727-b4fe-47f7-91b1-5d121def562d", - "recorded": "2024-11-07T17:24:02Z", + "id": "1732562153773679000.9c273ef9-317b-4457-acaa-d0a10be76910", + "recorded": "2024-11-25T14:15:53Z", "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], @@ -899,17 +899,17 @@ ] }, "who": { - "reference": "Organization/1731029042265934000.c0677c2f-a995-46c8-8b69-60bc3b2815ad" + "reference": "Organization/1732562153773433000.efe18488-3dea-42aa-b546-44a2320a3f28" } } ] } }, { - "fullUrl": "Organization/1731029042265934000.c0677c2f-a995-46c8-8b69-60bc3b2815ad", + "fullUrl": "Organization/1732562153773433000.efe18488-3dea-42aa-b546-44a2320a3f28", "resource": { "resourceType": "Organization", - "id": "1731029042265934000.c0677c2f-a995-46c8-8b69-60bc3b2815ad", + "id": "1732562153773433000.efe18488-3dea-42aa-b546-44a2320a3f28", "identifier": [ { "value": "CDC PRIME - Atlanta" @@ -929,16 +929,16 @@ } }, { - "fullUrl": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896", + "fullUrl": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768", "resource": { "resourceType": "Patient", - "id": "1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896", + "id": "1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768", "meta": { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", "valueReference": { - "reference": "Organization/1731029042296068000.218e21be-9d09-4b28-9860-d821b93ca3b2" + "reference": "Organization/1732562153836395000.14028c7c-9147-459e-8c73-0d1a2cac74b2" } } ], @@ -1035,7 +1035,7 @@ } ], "authorReference": { - "reference": "Practitioner/1731029042278089000.dcac21f6-7843-4a7d-9e94-f835c89dd949" + "reference": "Practitioner/1732562153789290000.4bbdce01-bb61-40c4-a31b-92bdb4331530" }, "time": "2023-05-31", "_time": { @@ -1131,7 +1131,7 @@ } ], "authorReference": { - "reference": "Practitioner/1731029042279250000.30d1176d-d94b-48a5-bda0-b965e559f312" + "reference": "Practitioner/1732562153791331000.5cbd435d-6005-4e9b-9730-0909d058b397" }, "time": "2023-05-31", "_time": { @@ -2026,7 +2026,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1731029042283964000.e3b1bba3-e4f7-405e-89e1-d733a478c1b9" + "reference": "Organization/1732562153801120000.6e0bbb7a-f0d3-40a7-ad6a-f75659ffdcc8" } }, { @@ -2077,7 +2077,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1731029042284454000.a74b8594-2b75-4b7e-b40a-21703482cbd3" + "reference": "Organization/1732562153802611000.f400d90a-2443-480f-adc6-1dad3b6fa5bd" } }, { @@ -2191,13 +2191,13 @@ { "url": "PD1.14", "valueReference": { - "reference": "Organization/1731029042285778000.f0325b07-69bd-43a4-b608-75926ed76ef9" + "reference": "Organization/1732562153806033000.7c00260f-d478-4f7a-bcf5-b4763fc10b76" } }, { "url": "PD1.14", "valueReference": { - "reference": "Organization/1731029042286633000.1d3d00af-d0be-4208-b248-cb16b26bcd0b" + "reference": "Organization/1732562153808295000.5ffd5adf-aaf7-4e2f-bb55-4fb4fe4e71c1" } }, { @@ -2628,7 +2628,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1731029042272209000.1cef4d16-bd86-473b-b83c-1ab46ba1f0fc" + "reference": "Organization/1732562153780196000.4b9cd4af-9c9a-497f-a604-a8b0c57455b3" } }, { @@ -2780,7 +2780,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1731029042274008000.c9730404-84b5-4280-aa11-aeae7230d310" + "reference": "Organization/1732562153783031000.c9978086-5e18-4764-b0a1-b9faaad4250f" } }, { @@ -3452,7 +3452,23 @@ "country": "USA", "period": { "start": "2020", - "end": "2024" + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2020" + } + ] + }, + "end": "2024", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "2024" + } + ] + } } } ], @@ -3499,22 +3515,22 @@ ], "generalPractitioner": [ { - "reference": "Organization/1731029042275811000.e30e89df-3168-48e5-a793-7f3bca1892b9" + "reference": "Organization/1732562153785679000.6782734a-567c-4ff9-97bc-64a1501e8e6b" }, { - "reference": "Organization/1731029042277151000.608595c1-1031-4aff-95ef-28cd62805833" + "reference": "Organization/1732562153787502000.6a296664-095f-422a-9acb-d8a934b9decd" } ], "link": [ { "other": { - "reference": "RelatedPerson/1731029042292411000.661fa483-f834-4f80-9850-7b88e6d5bf07" + "reference": "RelatedPerson/1732562153824586000.9f4b56c7-f6b1-4b61-bec5-63cba9d7865c" }, "type": "seealso" }, { "other": { - "reference": "RelatedPerson/1731029042292650000.97d6703f-1989-480e-be9c-f0d017e0ef9e" + "reference": "RelatedPerson/1732562153824978000.5c7cdd4c-1308-45a8-9a6f-f9da853f99a6" }, "type": "seealso" } @@ -3522,10 +3538,10 @@ } }, { - "fullUrl": "Organization/1731029042272209000.1cef4d16-bd86-473b-b83c-1ab46ba1f0fc", + "fullUrl": "Organization/1732562153780196000.4b9cd4af-9c9a-497f-a604-a8b0c57455b3", "resource": { "resourceType": "Organization", - "id": "1731029042272209000.1cef4d16-bd86-473b-b83c-1ab46ba1f0fc", + "id": "1732562153780196000.4b9cd4af-9c9a-497f-a604-a8b0c57455b3", "identifier": [ { "extension": [ @@ -3558,10 +3574,10 @@ } }, { - "fullUrl": "Organization/1731029042274008000.c9730404-84b5-4280-aa11-aeae7230d310", + "fullUrl": "Organization/1732562153783031000.c9978086-5e18-4764-b0a1-b9faaad4250f", "resource": { "resourceType": "Organization", - "id": "1731029042274008000.c9730404-84b5-4280-aa11-aeae7230d310", + "id": "1732562153783031000.c9978086-5e18-4764-b0a1-b9faaad4250f", "identifier": [ { "extension": [ @@ -3594,10 +3610,10 @@ } }, { - "fullUrl": "Location/1731029042275069000.ddcf45c9-3c4a-4ce6-9a72-929cd8cab495", + "fullUrl": "Location/1732562153784561000.263ec032-cfa5-4a0e-b859-3307c6a4bf76", "resource": { "resourceType": "Location", - "id": "1731029042275069000.ddcf45c9-3c4a-4ce6-9a72-929cd8cab495", + "id": "1732562153784561000.263ec032-cfa5-4a0e-b859-3307c6a4bf76", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -3621,10 +3637,10 @@ } }, { - "fullUrl": "Organization/1731029042275811000.e30e89df-3168-48e5-a793-7f3bca1892b9", + "fullUrl": "Organization/1732562153785679000.6782734a-567c-4ff9-97bc-64a1501e8e6b", "resource": { "resourceType": "Organization", - "id": "1731029042275811000.e30e89df-3168-48e5-a793-7f3bca1892b9", + "id": "1732562153785679000.6782734a-567c-4ff9-97bc-64a1501e8e6b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -3732,7 +3748,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042275069000.ddcf45c9-3c4a-4ce6-9a72-929cd8cab495" + "reference": "Location/1732562153784561000.263ec032-cfa5-4a0e-b859-3307c6a4bf76" } } ], @@ -3751,10 +3767,10 @@ } }, { - "fullUrl": "Location/1731029042276287000.885d46fb-a834-4cf4-9b84-b8885351e052", + "fullUrl": "Location/1732562153786484000.240bc114-fd18-48a5-90ac-a3df1cceab0b", "resource": { "resourceType": "Location", - "id": "1731029042276287000.885d46fb-a834-4cf4-9b84-b8885351e052", + "id": "1732562153786484000.240bc114-fd18-48a5-90ac-a3df1cceab0b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -3778,10 +3794,10 @@ } }, { - "fullUrl": "Organization/1731029042277151000.608595c1-1031-4aff-95ef-28cd62805833", + "fullUrl": "Organization/1732562153787502000.6a296664-095f-422a-9acb-d8a934b9decd", "resource": { "resourceType": "Organization", - "id": "1731029042277151000.608595c1-1031-4aff-95ef-28cd62805833", + "id": "1732562153787502000.6a296664-095f-422a-9acb-d8a934b9decd", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -3889,7 +3905,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042276287000.885d46fb-a834-4cf4-9b84-b8885351e052" + "reference": "Location/1732562153786484000.240bc114-fd18-48a5-90ac-a3df1cceab0b" } } ], @@ -3908,10 +3924,10 @@ } }, { - "fullUrl": "Practitioner/1731029042278089000.dcac21f6-7843-4a7d-9e94-f835c89dd949", + "fullUrl": "Practitioner/1732562153789290000.4bbdce01-bb61-40c4-a31b-92bdb4331530", "resource": { "resourceType": "Practitioner", - "id": "1731029042278089000.dcac21f6-7843-4a7d-9e94-f835c89dd949", + "id": "1732562153789290000.4bbdce01-bb61-40c4-a31b-92bdb4331530", "identifier": [ { "value": "Bob R.N." @@ -3920,10 +3936,10 @@ } }, { - "fullUrl": "Practitioner/1731029042279250000.30d1176d-d94b-48a5-bda0-b965e559f312", + "fullUrl": "Practitioner/1732562153791331000.5cbd435d-6005-4e9b-9730-0909d058b397", "resource": { "resourceType": "Practitioner", - "id": "1731029042279250000.30d1176d-d94b-48a5-bda0-b965e559f312", + "id": "1732562153791331000.5cbd435d-6005-4e9b-9730-0909d058b397", "identifier": [ { "value": "Bob R.N." @@ -3932,10 +3948,10 @@ } }, { - "fullUrl": "Organization/1731029042283964000.e3b1bba3-e4f7-405e-89e1-d733a478c1b9", + "fullUrl": "Organization/1732562153801120000.6e0bbb7a-f0d3-40a7-ad6a-f75659ffdcc8", "resource": { "resourceType": "Organization", - "id": "1731029042283964000.e3b1bba3-e4f7-405e-89e1-d733a478c1b9", + "id": "1732562153801120000.6e0bbb7a-f0d3-40a7-ad6a-f75659ffdcc8", "identifier": [ { "extension": [ @@ -3968,10 +3984,10 @@ } }, { - "fullUrl": "Organization/1731029042284454000.a74b8594-2b75-4b7e-b40a-21703482cbd3", + "fullUrl": "Organization/1732562153802611000.f400d90a-2443-480f-adc6-1dad3b6fa5bd", "resource": { "resourceType": "Organization", - "id": "1731029042284454000.a74b8594-2b75-4b7e-b40a-21703482cbd3", + "id": "1732562153802611000.f400d90a-2443-480f-adc6-1dad3b6fa5bd", "identifier": [ { "extension": [ @@ -4004,10 +4020,10 @@ } }, { - "fullUrl": "Location/1731029042285256000.8a4e6c7d-7f23-49a8-93b4-492994dc0f67", + "fullUrl": "Location/1732562153804615000.37ac84fc-0891-401b-ac46-0d6883b59493", "resource": { "resourceType": "Location", - "id": "1731029042285256000.8a4e6c7d-7f23-49a8-93b4-492994dc0f67", + "id": "1732562153804615000.37ac84fc-0891-401b-ac46-0d6883b59493", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4031,10 +4047,10 @@ } }, { - "fullUrl": "Organization/1731029042285778000.f0325b07-69bd-43a4-b608-75926ed76ef9", + "fullUrl": "Organization/1732562153806033000.7c00260f-d478-4f7a-bcf5-b4763fc10b76", "resource": { "resourceType": "Organization", - "id": "1731029042285778000.f0325b07-69bd-43a4-b608-75926ed76ef9", + "id": "1732562153806033000.7c00260f-d478-4f7a-bcf5-b4763fc10b76", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -4142,7 +4158,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042285256000.8a4e6c7d-7f23-49a8-93b4-492994dc0f67" + "reference": "Location/1732562153804615000.37ac84fc-0891-401b-ac46-0d6883b59493" } } ], @@ -4161,10 +4177,10 @@ } }, { - "fullUrl": "Location/1731029042286162000.32b8295e-1c7c-4137-a033-a19ea733c565", + "fullUrl": "Location/1732562153807102000.241bf963-35c5-453a-b51f-739b9941c637", "resource": { "resourceType": "Location", - "id": "1731029042286162000.32b8295e-1c7c-4137-a033-a19ea733c565", + "id": "1732562153807102000.241bf963-35c5-453a-b51f-739b9941c637", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4188,10 +4204,10 @@ } }, { - "fullUrl": "Organization/1731029042286633000.1d3d00af-d0be-4208-b248-cb16b26bcd0b", + "fullUrl": "Organization/1732562153808295000.5ffd5adf-aaf7-4e2f-bb55-4fb4fe4e71c1", "resource": { "resourceType": "Organization", - "id": "1731029042286633000.1d3d00af-d0be-4208-b248-cb16b26bcd0b", + "id": "1732562153808295000.5ffd5adf-aaf7-4e2f-bb55-4fb4fe4e71c1", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -4299,7 +4315,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042286162000.32b8295e-1c7c-4137-a033-a19ea733c565" + "reference": "Location/1732562153807102000.241bf963-35c5-453a-b51f-739b9941c637" } } ], @@ -4318,10 +4334,10 @@ } }, { - "fullUrl": "RelatedPerson/1731029042292411000.661fa483-f834-4f80-9850-7b88e6d5bf07", + "fullUrl": "RelatedPerson/1732562153824586000.9f4b56c7-f6b1-4b61-bec5-63cba9d7865c", "resource": { "resourceType": "RelatedPerson", - "id": "1731029042292411000.661fa483-f834-4f80-9850-7b88e6d5bf07", + "id": "1732562153824586000.9f4b56c7-f6b1-4b61-bec5-63cba9d7865c", "identifier": [ { "value": "maybe" @@ -4330,10 +4346,10 @@ } }, { - "fullUrl": "RelatedPerson/1731029042292650000.97d6703f-1989-480e-be9c-f0d017e0ef9e", + "fullUrl": "RelatedPerson/1732562153824978000.5c7cdd4c-1308-45a8-9a6f-f9da853f99a6", "resource": { "resourceType": "RelatedPerson", - "id": "1731029042292650000.97d6703f-1989-480e-be9c-f0d017e0ef9e", + "id": "1732562153824978000.5c7cdd4c-1308-45a8-9a6f-f9da853f99a6", "identifier": [ { "value": "maybe not" @@ -4342,10 +4358,10 @@ } }, { - "fullUrl": "Organization/1731029042296068000.218e21be-9d09-4b28-9860-d821b93ca3b2", + "fullUrl": "Organization/1732562153836395000.14028c7c-9147-459e-8c73-0d1a2cac74b2", "resource": { "resourceType": "Organization", - "id": "1731029042296068000.218e21be-9d09-4b28-9860-d821b93ca3b2", + "id": "1732562153836395000.14028c7c-9147-459e-8c73-0d1a2cac74b2", "identifier": [ { "extension": [ @@ -4378,17 +4394,17 @@ } }, { - "fullUrl": "Provenance/1731029042311258000.d22bb015-09b4-4420-ad85-3985d2838fae", + "fullUrl": "Provenance/1732562153859480000.b8c60619-c1a9-4f79-b5e6-94f4755ea073", "resource": { "resourceType": "Provenance", - "id": "1731029042311258000.d22bb015-09b4-4420-ad85-3985d2838fae", + "id": "1732562153859480000.b8c60619-c1a9-4f79-b5e6-94f4755ea073", "target": [ { - "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" + "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768" } ], "occurredDateTime": "2024-08-21T11:38:00Z", - "recorded": "2024-11-07T17:24:02Z", + "recorded": "2024-11-25T14:15:53Z", "activity": { "coding": [ { @@ -4408,17 +4424,17 @@ ] }, "who": { - "reference": "Organization/1731029042311028000.c8e18451-6def-4300-8585-9061dc6d7d98" + "reference": "Organization/1732562153859199000.ae77c9c5-4e55-4a4c-a9a6-1ce58e201c47" } } ] } }, { - "fullUrl": "Organization/1731029042311028000.c8e18451-6def-4300-8585-9061dc6d7d98", + "fullUrl": "Organization/1732562153859199000.ae77c9c5-4e55-4a4c-a9a6-1ce58e201c47", "resource": { "resourceType": "Organization", - "id": "1731029042311028000.c8e18451-6def-4300-8585-9061dc6d7d98", + "id": "1732562153859199000.ae77c9c5-4e55-4a4c-a9a6-1ce58e201c47", "identifier": [ { "extension": [ @@ -4451,10 +4467,10 @@ } }, { - "fullUrl": "Encounter/1731029042331483000.6ae6a93b-42d4-4a92-978f-005dfe836104", + "fullUrl": "Encounter/1732562153890198000.0ce58f24-e0de-4d23-aba5-12c6458c21cc", "resource": { "resourceType": "Encounter", - "id": "1731029042331483000.6ae6a93b-42d4-4a92-978f-005dfe836104", + "id": "1732562153890198000.0ce58f24-e0de-4d23-aba5-12c6458c21cc", "meta": { "security": [ { @@ -4793,13 +4809,13 @@ { "url": "PV2.23", "valueReference": { - "reference": "Organization/1731029042317379000.57926e6d-cb39-43b3-b333-92e2fc4e4d60" + "reference": "Organization/1732562153867456000.0263cd4a-57d6-4c91-9cf9-17f499d198e3" } }, { "url": "PV2.23", "valueReference": { - "reference": "Organization/1731029042318219000.dba7f4ef-0d77-4a6c-b829-e27e678abd92" + "reference": "Organization/1732562153868808000.30365f9b-338c-4d31-9546-c170cc2967f2" } }, { @@ -4930,11 +4946,11 @@ ] }, "subject": { - "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" + "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768" }, "episodeOfCare": [ { - "reference": "EpisodeOfCare/1731029042331847000.1c9c85d5-02ea-481d-8ce5-ca0310f1232f" + "reference": "EpisodeOfCare/1732562153890759000.b03d8a2b-dcdd-4bee-98f9-78c940f8e4a1" } ], "participant": [ @@ -4951,7 +4967,7 @@ } ], "individual": { - "reference": "Practitioner/1731029042321088000.86bea183-992c-47f8-8a90-a2882e6020b5" + "reference": "Practitioner/1732562153872648000.a25105b3-620e-410a-b2c5-b1110951e5fb" } }, { @@ -4967,7 +4983,7 @@ } ], "individual": { - "reference": "Practitioner/1731029042321600000.0bd1f945-58f3-407b-8f76-58fa7c24e2d5" + "reference": "Practitioner/1732562153873388000.6823dcca-4b41-43af-a9c9-31433998e6ad" } }, { @@ -4983,7 +4999,7 @@ } ], "individual": { - "reference": "Practitioner/1731029042322118000.1fd2385d-d3ba-448d-8043-ed9498e9147b" + "reference": "Practitioner/1732562153874062000.79bc647f-a899-400d-a12f-d2e340080575" } }, { @@ -4999,7 +5015,7 @@ } ], "individual": { - "reference": "Practitioner/1731029042322587000.cbcaafb8-c6dd-433e-a765-a7fef57754e3" + "reference": "Practitioner/1732562153877446000.caf5dd3e-21c1-44cc-b7e2-9474eeccfeea" } }, { @@ -5015,7 +5031,7 @@ } ], "individual": { - "reference": "Practitioner/1731029042324738000.6f9e8651-3dbf-4b26-83cc-493209901f1f" + "reference": "Practitioner/1732562153880675000.e4722423-2100-4af4-80b0-a83fddccb7a1" } }, { @@ -5031,7 +5047,7 @@ } ], "individual": { - "reference": "Practitioner/1731029042326851000.4ef46635-aadf-44c8-96c9-1002140f0c02" + "reference": "Practitioner/1732562153883521000.62e6b6df-73ec-488c-83a6-f8901e437614" } } ], @@ -5164,7 +5180,7 @@ } ], "destination": { - "reference": "Location/1731029042318728000.71c7d82b-a37b-40e0-8d41-7a5b4a4c853f" + "reference": "Location/1732562153869414000.00b21e8f-4d47-4679-9f12-61611622639a" }, "dischargeDisposition": { "coding": [ @@ -5194,7 +5210,7 @@ } ], "location": { - "reference": "Location/1731029042329136000.d59be87f-e677-4ffb-95b9-168e179c5929" + "reference": "Location/1732562153886729000.06f365ca-2a46-435b-9b63-2a4e4fbd9a02" }, "status": "active" }, @@ -5206,7 +5222,7 @@ } ], "location": { - "reference": "Location/1731029042329907000.6521e046-6cd3-4b61-bb3f-36abf644e146" + "reference": "Location/1732562153887852000.fa9d0f80-9e6e-4310-8d3c-ad183318ab17" }, "status": "completed" }, @@ -5222,7 +5238,7 @@ } ], "location": { - "reference": "Location/1731029042330143000.deda941e-7806-40ff-b7da-53dc1bac0424" + "reference": "Location/1732562153888228000.9f180f5a-2482-4474-8bec-04be2e758e3e" }, "status": "active" }, @@ -5234,7 +5250,7 @@ } ], "location": { - "reference": "Location/1731029042330364000.f47d2828-8a4f-482e-8903-3cc2c49e240f" + "reference": "Location/1732562153888624000.1cb4f13f-1497-4d29-bd56-c8b0ebdad51a" }, "status": "planned" }, @@ -5250,7 +5266,7 @@ } ], "location": { - "reference": "Location/1731029042330629000.059cde0e-7206-4d2c-8cc8-76af4aa8dc30" + "reference": "Location/1732562153888992000.bbe075b2-fff6-49f4-8196-874a116ef3f1" }, "status": "completed" }, @@ -5266,7 +5282,7 @@ } ], "location": { - "reference": "Location/1731029042331393000.1b0a0aef-0bb2-409a-b1b3-4e9a9f79868d" + "reference": "Location/1732562153890079000.fc9d997c-b83c-4059-8bf2-5a654a2c5f0a" }, "status": "planned" } @@ -5274,10 +5290,10 @@ } }, { - "fullUrl": "Location/1731029042316845000.b1bd2555-f637-4436-94f2-31de851dd740", + "fullUrl": "Location/1732562153866745000.5c951e01-ebdb-42d4-8aa2-dd9a5ab1583b", "resource": { "resourceType": "Location", - "id": "1731029042316845000.b1bd2555-f637-4436-94f2-31de851dd740", + "id": "1732562153866745000.5c951e01-ebdb-42d4-8aa2-dd9a5ab1583b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -5301,10 +5317,10 @@ } }, { - "fullUrl": "Organization/1731029042317379000.57926e6d-cb39-43b3-b333-92e2fc4e4d60", + "fullUrl": "Organization/1732562153867456000.0263cd4a-57d6-4c91-9cf9-17f499d198e3", "resource": { "resourceType": "Organization", - "id": "1731029042317379000.57926e6d-cb39-43b3-b333-92e2fc4e4d60", + "id": "1732562153867456000.0263cd4a-57d6-4c91-9cf9-17f499d198e3", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -5404,7 +5420,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042316845000.b1bd2555-f637-4436-94f2-31de851dd740" + "reference": "Location/1732562153866745000.5c951e01-ebdb-42d4-8aa2-dd9a5ab1583b" } } ], @@ -5423,10 +5439,10 @@ } }, { - "fullUrl": "Location/1731029042317733000.d410255c-e32c-4682-8c53-7bb49f03d289", + "fullUrl": "Location/1732562153867965000.03d2c1ec-186a-41f7-a1b8-c86f82e9cc04", "resource": { "resourceType": "Location", - "id": "1731029042317733000.d410255c-e32c-4682-8c53-7bb49f03d289", + "id": "1732562153867965000.03d2c1ec-186a-41f7-a1b8-c86f82e9cc04", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -5450,10 +5466,10 @@ } }, { - "fullUrl": "Organization/1731029042318219000.dba7f4ef-0d77-4a6c-b829-e27e678abd92", + "fullUrl": "Organization/1732562153868808000.30365f9b-338c-4d31-9546-c170cc2967f2", "resource": { "resourceType": "Organization", - "id": "1731029042318219000.dba7f4ef-0d77-4a6c-b829-e27e678abd92", + "id": "1732562153868808000.30365f9b-338c-4d31-9546-c170cc2967f2", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -5553,7 +5569,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042317733000.d410255c-e32c-4682-8c53-7bb49f03d289" + "reference": "Location/1732562153867965000.03d2c1ec-186a-41f7-a1b8-c86f82e9cc04" } } ], @@ -5572,10 +5588,10 @@ } }, { - "fullUrl": "Location/1731029042318728000.71c7d82b-a37b-40e0-8d41-7a5b4a4c853f", + "fullUrl": "Location/1732562153869414000.00b21e8f-4d47-4679-9f12-61611622639a", "resource": { "resourceType": "Location", - "id": "1731029042318728000.71c7d82b-a37b-40e0-8d41-7a5b4a4c853f", + "id": "1732562153869414000.00b21e8f-4d47-4679-9f12-61611622639a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date", @@ -5585,10 +5601,10 @@ } }, { - "fullUrl": "Practitioner/1731029042321088000.86bea183-992c-47f8-8a90-a2882e6020b5", + "fullUrl": "Practitioner/1732562153872648000.a25105b3-620e-410a-b2c5-b1110951e5fb", "resource": { "resourceType": "Practitioner", - "id": "1731029042321088000.86bea183-992c-47f8-8a90-a2882e6020b5", + "id": "1732562153872648000.a25105b3-620e-410a-b2c5-b1110951e5fb", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -5681,10 +5697,10 @@ } }, { - "fullUrl": "Practitioner/1731029042321600000.0bd1f945-58f3-407b-8f76-58fa7c24e2d5", + "fullUrl": "Practitioner/1732562153873388000.6823dcca-4b41-43af-a9c9-31433998e6ad", "resource": { "resourceType": "Practitioner", - "id": "1731029042321600000.0bd1f945-58f3-407b-8f76-58fa7c24e2d5", + "id": "1732562153873388000.6823dcca-4b41-43af-a9c9-31433998e6ad", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -5704,10 +5720,10 @@ } }, { - "fullUrl": "Practitioner/1731029042322118000.1fd2385d-d3ba-448d-8043-ed9498e9147b", + "fullUrl": "Practitioner/1732562153874062000.79bc647f-a899-400d-a12f-d2e340080575", "resource": { "resourceType": "Practitioner", - "id": "1731029042322118000.1fd2385d-d3ba-448d-8043-ed9498e9147b", + "id": "1732562153874062000.79bc647f-a899-400d-a12f-d2e340080575", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -5727,10 +5743,10 @@ } }, { - "fullUrl": "Practitioner/1731029042322587000.cbcaafb8-c6dd-433e-a765-a7fef57754e3", + "fullUrl": "Practitioner/1732562153877446000.caf5dd3e-21c1-44cc-b7e2-9474eeccfeea", "resource": { "resourceType": "Practitioner", - "id": "1731029042322587000.cbcaafb8-c6dd-433e-a765-a7fef57754e3", + "id": "1732562153877446000.caf5dd3e-21c1-44cc-b7e2-9474eeccfeea", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -5750,10 +5766,10 @@ } }, { - "fullUrl": "Practitioner/1731029042324738000.6f9e8651-3dbf-4b26-83cc-493209901f1f", + "fullUrl": "Practitioner/1732562153880675000.e4722423-2100-4af4-80b0-a83fddccb7a1", "resource": { "resourceType": "Practitioner", - "id": "1731029042324738000.6f9e8651-3dbf-4b26-83cc-493209901f1f", + "id": "1732562153880675000.e4722423-2100-4af4-80b0-a83fddccb7a1", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -5961,10 +5977,10 @@ } }, { - "fullUrl": "Practitioner/1731029042326851000.4ef46635-aadf-44c8-96c9-1002140f0c02", + "fullUrl": "Practitioner/1732562153883521000.62e6b6df-73ec-488c-83a6-f8901e437614", "resource": { "resourceType": "Practitioner", - "id": "1731029042326851000.4ef46635-aadf-44c8-96c9-1002140f0c02", + "id": "1732562153883521000.62e6b6df-73ec-488c-83a6-f8901e437614", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -6172,10 +6188,10 @@ } }, { - "fullUrl": "Organization/1731029042327268000.d27b16f8-707f-4a7a-a453-fa5ae0640d87", + "fullUrl": "Organization/1732562153884161000.15dce04f-dc04-44d7-896a-917af16bf459", "resource": { "resourceType": "Organization", - "id": "1731029042327268000.d27b16f8-707f-4a7a-a453-fa5ae0640d87", + "id": "1732562153884161000.15dce04f-dc04-44d7-896a-917af16bf459", "identifier": [ { "extension": [ @@ -6208,10 +6224,10 @@ } }, { - "fullUrl": "Location/1731029042328589000.972ca0a9-5fd1-4fc9-bf0f-7a6e5a0733a9", + "fullUrl": "Location/1732562153885994000.dd0d8694-e7ed-4bb5-af66-e436a73bedfb", "resource": { "resourceType": "Location", - "id": "1731029042328589000.972ca0a9-5fd1-4fc9-bf0f-7a6e5a0733a9", + "id": "1732562153885994000.dd0d8694-e7ed-4bb5-af66-e436a73bedfb", "identifier": [ { "extension": [ @@ -6256,10 +6272,10 @@ } }, { - "fullUrl": "Location/1731029042328669000.8fdf7293-0845-4db4-8425-88754a36de5a", + "fullUrl": "Location/1732562153886110000.1aaf4e47-811d-440a-968d-61edd700f853", "resource": { "resourceType": "Location", - "id": "1731029042328669000.8fdf7293-0845-4db4-8425-88754a36de5a", + "id": "1732562153886110000.1aaf4e47-811d-440a-968d-61edd700f853", "identifier": [ { "extension": [ @@ -6288,15 +6304,15 @@ ] }, "partOf": { - "reference": "Location/1731029042328589000.972ca0a9-5fd1-4fc9-bf0f-7a6e5a0733a9" + "reference": "Location/1732562153885994000.dd0d8694-e7ed-4bb5-af66-e436a73bedfb" } } }, { - "fullUrl": "Location/1731029042328768000.f827eaa8-19de-4595-a756-1ad8023c0a86", + "fullUrl": "Location/1732562153886214000.24fed3c3-c79c-416e-9d35-6a53a6d8f63a", "resource": { "resourceType": "Location", - "id": "1731029042328768000.f827eaa8-19de-4595-a756-1ad8023c0a86", + "id": "1732562153886214000.24fed3c3-c79c-416e-9d35-6a53a6d8f63a", "identifier": [ { "extension": [ @@ -6325,15 +6341,15 @@ ] }, "partOf": { - "reference": "Location/1731029042328669000.8fdf7293-0845-4db4-8425-88754a36de5a" + "reference": "Location/1732562153886110000.1aaf4e47-811d-440a-968d-61edd700f853" } } }, { - "fullUrl": "Location/1731029042328870000.7aa55881-4e74-4ca8-a055-5488cee1ed0f", + "fullUrl": "Location/1732562153886333000.b20e122f-eb55-4b61-b8e3-291490508eef", "resource": { "resourceType": "Location", - "id": "1731029042328870000.7aa55881-4e74-4ca8-a055-5488cee1ed0f", + "id": "1732562153886333000.b20e122f-eb55-4b61-b8e3-291490508eef", "identifier": [ { "extension": [ @@ -6383,15 +6399,15 @@ ] }, "partOf": { - "reference": "Location/1731029042328768000.f827eaa8-19de-4595-a756-1ad8023c0a86" + "reference": "Location/1732562153886214000.24fed3c3-c79c-416e-9d35-6a53a6d8f63a" } } }, { - "fullUrl": "Location/1731029042328963000.38730984-8c87-4e50-b141-bfb8aa2e11c2", + "fullUrl": "Location/1732562153886482000.5bf83c58-d9e7-4790-95d6-d4b30089c79a", "resource": { "resourceType": "Location", - "id": "1731029042328963000.38730984-8c87-4e50-b141-bfb8aa2e11c2", + "id": "1732562153886482000.5bf83c58-d9e7-4790-95d6-d4b30089c79a", "identifier": [ { "extension": [ @@ -6434,15 +6450,15 @@ ] }, "partOf": { - "reference": "Location/1731029042328870000.7aa55881-4e74-4ca8-a055-5488cee1ed0f" + "reference": "Location/1732562153886333000.b20e122f-eb55-4b61-b8e3-291490508eef" } } }, { - "fullUrl": "Location/1731029042329136000.d59be87f-e677-4ffb-95b9-168e179c5929", + "fullUrl": "Location/1732562153886729000.06f365ca-2a46-435b-9b63-2a4e4fbd9a02", "resource": { "resourceType": "Location", - "id": "1731029042329136000.d59be87f-e677-4ffb-95b9-168e179c5929", + "id": "1732562153886729000.06f365ca-2a46-435b-9b63-2a4e4fbd9a02", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", @@ -6494,7 +6510,7 @@ ], "value": "Comprehensive", "assigner": { - "reference": "Organization/1731029042327268000.d27b16f8-707f-4a7a-a453-fa5ae0640d87" + "reference": "Organization/1732562153884161000.15dce04f-dc04-44d7-896a-917af16bf459" } } ], @@ -6509,15 +6525,15 @@ ] }, "partOf": { - "reference": "Location/1731029042328963000.38730984-8c87-4e50-b141-bfb8aa2e11c2" + "reference": "Location/1732562153886482000.5bf83c58-d9e7-4790-95d6-d4b30089c79a" } } }, { - "fullUrl": "Organization/1731029042329521000.1b77c0d0-98fa-46dc-ab3c-dc90ad720cba", + "fullUrl": "Organization/1732562153887283000.8934d259-27ae-4343-b365-6763411d76f7", "resource": { "resourceType": "Organization", - "id": "1731029042329521000.1b77c0d0-98fa-46dc-ab3c-dc90ad720cba", + "id": "1732562153887283000.8934d259-27ae-4343-b365-6763411d76f7", "identifier": [ { "extension": [ @@ -6550,10 +6566,10 @@ } }, { - "fullUrl": "Location/1731029042329907000.6521e046-6cd3-4b61-bb3f-36abf644e146", + "fullUrl": "Location/1732562153887852000.fa9d0f80-9e6e-4310-8d3c-ad183318ab17", "resource": { "resourceType": "Location", - "id": "1731029042329907000.6521e046-6cd3-4b61-bb3f-36abf644e146", + "id": "1732562153887852000.fa9d0f80-9e6e-4310-8d3c-ad183318ab17", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", @@ -6613,7 +6629,7 @@ ], "value": "Entity ID", "assigner": { - "reference": "Organization/1731029042329521000.1b77c0d0-98fa-46dc-ab3c-dc90ad720cba" + "reference": "Organization/1732562153887283000.8934d259-27ae-4343-b365-6763411d76f7" } } ], @@ -6631,37 +6647,37 @@ } }, { - "fullUrl": "Location/1731029042330143000.deda941e-7806-40ff-b7da-53dc1bac0424", + "fullUrl": "Location/1732562153888228000.9f180f5a-2482-4474-8bec-04be2e758e3e", "resource": { "resourceType": "Location", - "id": "1731029042330143000.deda941e-7806-40ff-b7da-53dc1bac0424", + "id": "1732562153888228000.9f180f5a-2482-4474-8bec-04be2e758e3e", "description": "Its Temporary", "mode": "instance" } }, { - "fullUrl": "Location/1731029042330364000.f47d2828-8a4f-482e-8903-3cc2c49e240f", + "fullUrl": "Location/1732562153888624000.1cb4f13f-1497-4d29-bd56-c8b0ebdad51a", "resource": { "resourceType": "Location", - "id": "1731029042330364000.f47d2828-8a4f-482e-8903-3cc2c49e240f", + "id": "1732562153888624000.1cb4f13f-1497-4d29-bd56-c8b0ebdad51a", "description": "Pending Location", "mode": "instance" } }, { - "fullUrl": "Location/1731029042330629000.059cde0e-7206-4d2c-8cc8-76af4aa8dc30", + "fullUrl": "Location/1732562153888992000.bbe075b2-fff6-49f4-8196-874a116ef3f1", "resource": { "resourceType": "Location", - "id": "1731029042330629000.059cde0e-7206-4d2c-8cc8-76af4aa8dc30", + "id": "1732562153888992000.bbe075b2-fff6-49f4-8196-874a116ef3f1", "description": "Prior Location", "mode": "instance" } }, { - "fullUrl": "Organization/1731029042330973000.322dedc4-abdd-4886-8f07-c7539d8635f7", + "fullUrl": "Organization/1732562153889515000.6c01de3a-c2d3-4d5a-82bb-c2e46f28851d", "resource": { "resourceType": "Organization", - "id": "1731029042330973000.322dedc4-abdd-4886-8f07-c7539d8635f7", + "id": "1732562153889515000.6c01de3a-c2d3-4d5a-82bb-c2e46f28851d", "identifier": [ { "extension": [ @@ -6694,10 +6710,10 @@ } }, { - "fullUrl": "Location/1731029042331393000.1b0a0aef-0bb2-409a-b1b3-4e9a9f79868d", + "fullUrl": "Location/1732562153890079000.fc9d997c-b83c-4059-8bf2-5a654a2c5f0a", "resource": { "resourceType": "Location", - "id": "1731029042331393000.1b0a0aef-0bb2-409a-b1b3-4e9a9f79868d", + "id": "1732562153890079000.fc9d997c-b83c-4059-8bf2-5a654a2c5f0a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", @@ -6757,7 +6773,7 @@ ], "value": "Entity ID", "assigner": { - "reference": "Organization/1731029042330973000.322dedc4-abdd-4886-8f07-c7539d8635f7" + "reference": "Organization/1732562153889515000.6c01de3a-c2d3-4d5a-82bb-c2e46f28851d" } } ], @@ -6775,10 +6791,10 @@ } }, { - "fullUrl": "EpisodeOfCare/1731029042331847000.1c9c85d5-02ea-481d-8ce5-ca0310f1232f", + "fullUrl": "EpisodeOfCare/1732562153890759000.b03d8a2b-dcdd-4bee-98f9-78c940f8e4a1", "resource": { "resourceType": "EpisodeOfCare", - "id": "1731029042331847000.1c9c85d5-02ea-481d-8ce5-ca0310f1232f", + "id": "1732562153890759000.b03d8a2b-dcdd-4bee-98f9-78c940f8e4a1", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -6797,10 +6813,10 @@ } }, { - "fullUrl": "Observation/1731029042509217000.62819b92-2016-4e46-a275-e51fddda8685", + "fullUrl": "Observation/1732562154193977000.c207046a-6adc-4826-b659-18bb2d10b434", "resource": { "resourceType": "Observation", - "id": "1731029042509217000.62819b92-2016-4e46-a275-e51fddda8685", + "id": "1732562154193977000.c207046a-6adc-4826-b659-18bb2d10b434", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -6981,7 +6997,7 @@ { "url": "OBX.18", "valueReference": { - "reference": "Device/1731029042507173000.2a3e87ca-0da8-4722-b2eb-381bb60e03bf" + "reference": "Device/1732562154192288000.a666d253-d5b4-4634-a473-0e37625964d8" } }, { @@ -7052,10 +7068,10 @@ ] }, "subject": { - "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" + "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768" }, "encounter": { - "reference": "Encounter/1731029042331483000.6ae6a93b-42d4-4a92-978f-005dfe836104" + "reference": "Encounter/1732562153890198000.0ce58f24-e0de-4d23-aba5-12c6458c21cc" }, "effectiveDateTime": "2023-01-01T00:00:00Z", "_effectiveDateTime": { @@ -7068,13 +7084,13 @@ }, "performer": [ { - "reference": "Organization/1731029042509560000.7c7d07fa-8135-4f91-8f8a-964cd46aa264" + "reference": "Organization/1732562154194496000.9c180e64-0df7-4cbf-8a7b-446f5c5286dc" }, { - "reference": "PractitionerRole/1731029042509684000.e81163de-d00b-4aa9-b6f2-0358240f6108" + "reference": "PractitionerRole/1732562154194767000.4a6d8b98-95f8-40c6-b7e1-22688e9eb315" }, { - "reference": "PractitionerRole/1731029042510153000.13b0fc8f-7091-4c15-bb3b-0486c3a1ce5a" + "reference": "PractitionerRole/1732562154195572000.df713156-78d5-4435-b94a-b76d94c0cb16" } ], "valueCodeableConcept": { @@ -7176,7 +7192,7 @@ } ], "authorReference": { - "reference": "Practitioner/1731029042511716000.7b03a377-85af-48ee-98a1-98a6247d56cc" + "reference": "Practitioner/1732562154198115000.42384033-f45b-4520-8598-b6882c278cfc" }, "time": "2023-02-01", "_time": { @@ -7223,7 +7239,7 @@ ] }, "device": { - "reference": "Device/1731029042512703000.da124198-ccd1-42b6-b3e0-c100f8fcf8e5" + "reference": "Device/1732562154199483000.abef59ba-5c72-463a-9d07-e4d097fe64f6" }, "referenceRange": [ { @@ -7233,10 +7249,10 @@ } }, { - "fullUrl": "Device/1731029042507173000.2a3e87ca-0da8-4722-b2eb-381bb60e03bf", + "fullUrl": "Device/1732562154192288000.a666d253-d5b4-4634-a473-0e37625964d8", "resource": { "resourceType": "Device", - "id": "1731029042507173000.2a3e87ca-0da8-4722-b2eb-381bb60e03bf", + "id": "1732562154192288000.a666d253-d5b4-4634-a473-0e37625964d8", "identifier": [ { "extension": [ @@ -7264,10 +7280,10 @@ } }, { - "fullUrl": "Organization/1731029042509560000.7c7d07fa-8135-4f91-8f8a-964cd46aa264", + "fullUrl": "Organization/1732562154194496000.9c180e64-0df7-4cbf-8a7b-446f5c5286dc", "resource": { "resourceType": "Organization", - "id": "1731029042509560000.7c7d07fa-8135-4f91-8f8a-964cd46aa264", + "id": "1732562154194496000.9c180e64-0df7-4cbf-8a7b-446f5c5286dc", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", @@ -7305,10 +7321,10 @@ } }, { - "fullUrl": "Practitioner/1731029042510009000.f98f138f-5671-44ed-a022-d0eb862ca60c", + "fullUrl": "Practitioner/1732562154195315000.af10b0d9-880d-45aa-af24-7789dba68697", "resource": { "resourceType": "Practitioner", - "id": "1731029042510009000.f98f138f-5671-44ed-a022-d0eb862ca60c", + "id": "1732562154195315000.af10b0d9-880d-45aa-af24-7789dba68697", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -7336,12 +7352,12 @@ } }, { - "fullUrl": "PractitionerRole/1731029042509684000.e81163de-d00b-4aa9-b6f2-0358240f6108", + "fullUrl": "PractitionerRole/1732562154194767000.4a6d8b98-95f8-40c6-b7e1-22688e9eb315", "resource": { "resourceType": "PractitionerRole", - "id": "1731029042509684000.e81163de-d00b-4aa9-b6f2-0358240f6108", + "id": "1732562154194767000.4a6d8b98-95f8-40c6-b7e1-22688e9eb315", "practitioner": { - "reference": "Practitioner/1731029042510009000.f98f138f-5671-44ed-a022-d0eb862ca60c" + "reference": "Practitioner/1732562154195315000.af10b0d9-880d-45aa-af24-7789dba68697" }, "code": [ { @@ -7356,10 +7372,10 @@ } }, { - "fullUrl": "Practitioner/1731029042510466000.d6c46621-d63e-4ace-91b6-7575d3c5b887", + "fullUrl": "Practitioner/1732562154196091000.e18e2775-2053-4d55-ad5d-c4e8adac70aa", "resource": { "resourceType": "Practitioner", - "id": "1731029042510466000.d6c46621-d63e-4ace-91b6-7575d3c5b887", + "id": "1732562154196091000.e18e2775-2053-4d55-ad5d-c4e8adac70aa", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -7387,10 +7403,10 @@ } }, { - "fullUrl": "Organization/1731029042511006000.0e1a49dc-a6ba-4510-88f7-7e207f9a7b45", + "fullUrl": "Organization/1732562154196987000.67057813-14c3-4b1a-ad1c-0eeb24f9465e", "resource": { "resourceType": "Organization", - "id": "1731029042511006000.0e1a49dc-a6ba-4510-88f7-7e207f9a7b45", + "id": "1732562154196987000.67057813-14c3-4b1a-ad1c-0eeb24f9465e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -7464,15 +7480,15 @@ } }, { - "fullUrl": "PractitionerRole/1731029042510153000.13b0fc8f-7091-4c15-bb3b-0486c3a1ce5a", + "fullUrl": "PractitionerRole/1732562154195572000.df713156-78d5-4435-b94a-b76d94c0cb16", "resource": { "resourceType": "PractitionerRole", - "id": "1731029042510153000.13b0fc8f-7091-4c15-bb3b-0486c3a1ce5a", + "id": "1732562154195572000.df713156-78d5-4435-b94a-b76d94c0cb16", "practitioner": { - "reference": "Practitioner/1731029042510466000.d6c46621-d63e-4ace-91b6-7575d3c5b887" + "reference": "Practitioner/1732562154196091000.e18e2775-2053-4d55-ad5d-c4e8adac70aa" }, "organization": { - "reference": "Organization/1731029042511006000.0e1a49dc-a6ba-4510-88f7-7e207f9a7b45" + "reference": "Organization/1732562154196987000.67057813-14c3-4b1a-ad1c-0eeb24f9465e" }, "code": [ { @@ -7487,10 +7503,10 @@ } }, { - "fullUrl": "Practitioner/1731029042511716000.7b03a377-85af-48ee-98a1-98a6247d56cc", + "fullUrl": "Practitioner/1732562154198115000.42384033-f45b-4520-8598-b6882c278cfc", "resource": { "resourceType": "Practitioner", - "id": "1731029042511716000.7b03a377-85af-48ee-98a1-98a6247d56cc", + "id": "1732562154198115000.42384033-f45b-4520-8598-b6882c278cfc", "identifier": [ { "value": "Bob R.N.A." @@ -7499,10 +7515,10 @@ } }, { - "fullUrl": "Device/1731029042512703000.da124198-ccd1-42b6-b3e0-c100f8fcf8e5", + "fullUrl": "Device/1732562154199483000.abef59ba-5c72-463a-9d07-e4d097fe64f6", "resource": { "resourceType": "Device", - "id": "1731029042512703000.da124198-ccd1-42b6-b3e0-c100f8fcf8e5", + "id": "1732562154199483000.abef59ba-5c72-463a-9d07-e4d097fe64f6", "identifier": [ { "extension": [ @@ -7530,10 +7546,10 @@ } }, { - "fullUrl": "Observation/1731029042514598000.c8593529-7867-45af-8586-0c6a09b4b45e", + "fullUrl": "Observation/1732562154202682000.aa635033-0073-450d-aaf4-6f85d81b8307", "resource": { "resourceType": "Observation", - "id": "1731029042514598000.c8593529-7867-45af-8586-0c6a09b4b45e", + "id": "1732562154202682000.aa635033-0073-450d-aaf4-6f85d81b8307", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -7714,7 +7730,7 @@ { "url": "OBX.18", "valueReference": { - "reference": "Device/1731029042513924000.740dfbab-302c-45a8-91e5-e274d06cc3f3" + "reference": "Device/1732562154201604000.e939efa7-0325-429a-b3ec-d84a94a1e490" } }, { @@ -7776,22 +7792,6 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", "valueString": "LN" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding": { - "system": "SNOMEDCT", - "code": "6142004", - "display": "Influenza (disorder)" - } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code", - "valueCoding": { - "system": "SNOMEDCT", - "code": "6142004", - "display": "Influenza (disorder)" - } } ], "system": "http://loinc.org", @@ -7801,10 +7801,10 @@ ] }, "subject": { - "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" + "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768" }, "encounter": { - "reference": "Encounter/1731029042331483000.6ae6a93b-42d4-4a92-978f-005dfe836104" + "reference": "Encounter/1732562153890198000.0ce58f24-e0de-4d23-aba5-12c6458c21cc" }, "effectiveDateTime": "2023-01-01T00:00:00Z", "_effectiveDateTime": { @@ -7817,13 +7817,13 @@ }, "performer": [ { - "reference": "Organization/1731029042514917000.99085b5a-c4a7-4f80-bb84-dba529f7031c" + "reference": "Organization/1732562154203229000.2a00bea0-1be7-4987-9e2c-06e86ec60e7a" }, { - "reference": "PractitionerRole/1731029042515031000.5ae3ee26-552d-423f-a62b-cb8480a9dbbf" + "reference": "PractitionerRole/1732562154203425000.0864c4c8-5ac1-4a08-997a-29be2c85e66c" }, { - "reference": "PractitionerRole/1731029042515450000.277df620-686c-4ff8-b771-961b2811afc8" + "reference": "PractitionerRole/1732562154204311000.aaeaf454-854a-4de3-b3ea-e2e1b9a60be1" } ], "valueCodeableConcept": { @@ -7925,7 +7925,7 @@ } ], "authorReference": { - "reference": "Practitioner/1731029042516892000.5fdb9531-b2fe-44db-889a-12d633a8b5ee" + "reference": "Practitioner/1732562154207156000.325c915a-9ada-47bd-8a09-92c6918e3b23" }, "time": "2023-02-01", "_time": { @@ -7972,7 +7972,7 @@ ] }, "device": { - "reference": "Device/1731029042517591000.2a509bad-1960-461f-8ca5-4bd97dfcd7bf" + "reference": "Device/1732562154208233000.90243bc5-b199-4bd4-9b22-3c0b1f7a9eb7" }, "referenceRange": [ { @@ -7982,10 +7982,10 @@ } }, { - "fullUrl": "Device/1731029042513924000.740dfbab-302c-45a8-91e5-e274d06cc3f3", + "fullUrl": "Device/1732562154201604000.e939efa7-0325-429a-b3ec-d84a94a1e490", "resource": { "resourceType": "Device", - "id": "1731029042513924000.740dfbab-302c-45a8-91e5-e274d06cc3f3", + "id": "1732562154201604000.e939efa7-0325-429a-b3ec-d84a94a1e490", "identifier": [ { "extension": [ @@ -8013,10 +8013,10 @@ } }, { - "fullUrl": "Organization/1731029042514917000.99085b5a-c4a7-4f80-bb84-dba529f7031c", + "fullUrl": "Organization/1732562154203229000.2a00bea0-1be7-4987-9e2c-06e86ec60e7a", "resource": { "resourceType": "Organization", - "id": "1731029042514917000.99085b5a-c4a7-4f80-bb84-dba529f7031c", + "id": "1732562154203229000.2a00bea0-1be7-4987-9e2c-06e86ec60e7a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", @@ -8054,10 +8054,10 @@ } }, { - "fullUrl": "Practitioner/1731029042515302000.b79b047a-c88f-4830-b0ef-4e6f5acfb947", + "fullUrl": "Practitioner/1732562154203893000.719f915c-98f9-4236-b741-8c900e8bf644", "resource": { "resourceType": "Practitioner", - "id": "1731029042515302000.b79b047a-c88f-4830-b0ef-4e6f5acfb947", + "id": "1732562154203893000.719f915c-98f9-4236-b741-8c900e8bf644", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -8085,12 +8085,12 @@ } }, { - "fullUrl": "PractitionerRole/1731029042515031000.5ae3ee26-552d-423f-a62b-cb8480a9dbbf", + "fullUrl": "PractitionerRole/1732562154203425000.0864c4c8-5ac1-4a08-997a-29be2c85e66c", "resource": { "resourceType": "PractitionerRole", - "id": "1731029042515031000.5ae3ee26-552d-423f-a62b-cb8480a9dbbf", + "id": "1732562154203425000.0864c4c8-5ac1-4a08-997a-29be2c85e66c", "practitioner": { - "reference": "Practitioner/1731029042515302000.b79b047a-c88f-4830-b0ef-4e6f5acfb947" + "reference": "Practitioner/1732562154203893000.719f915c-98f9-4236-b741-8c900e8bf644" }, "code": [ { @@ -8105,10 +8105,10 @@ } }, { - "fullUrl": "Practitioner/1731029042515771000.5ca8401e-6ed3-4aeb-b197-7a125cb8d510", + "fullUrl": "Practitioner/1732562154204899000.263c7827-82b5-46fe-a4f7-c8ca077f311b", "resource": { "resourceType": "Practitioner", - "id": "1731029042515771000.5ca8401e-6ed3-4aeb-b197-7a125cb8d510", + "id": "1732562154204899000.263c7827-82b5-46fe-a4f7-c8ca077f311b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -8136,10 +8136,10 @@ } }, { - "fullUrl": "Organization/1731029042516268000.b1a908b0-2a73-4c88-bc19-a4396e9a66b5", + "fullUrl": "Organization/1732562154205866000.34048fa3-015a-49c9-b1d3-88e9f64ed289", "resource": { "resourceType": "Organization", - "id": "1731029042516268000.b1a908b0-2a73-4c88-bc19-a4396e9a66b5", + "id": "1732562154205866000.34048fa3-015a-49c9-b1d3-88e9f64ed289", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -8213,15 +8213,15 @@ } }, { - "fullUrl": "PractitionerRole/1731029042515450000.277df620-686c-4ff8-b771-961b2811afc8", + "fullUrl": "PractitionerRole/1732562154204311000.aaeaf454-854a-4de3-b3ea-e2e1b9a60be1", "resource": { "resourceType": "PractitionerRole", - "id": "1731029042515450000.277df620-686c-4ff8-b771-961b2811afc8", + "id": "1732562154204311000.aaeaf454-854a-4de3-b3ea-e2e1b9a60be1", "practitioner": { - "reference": "Practitioner/1731029042515771000.5ca8401e-6ed3-4aeb-b197-7a125cb8d510" + "reference": "Practitioner/1732562154204899000.263c7827-82b5-46fe-a4f7-c8ca077f311b" }, "organization": { - "reference": "Organization/1731029042516268000.b1a908b0-2a73-4c88-bc19-a4396e9a66b5" + "reference": "Organization/1732562154205866000.34048fa3-015a-49c9-b1d3-88e9f64ed289" }, "code": [ { @@ -8236,10 +8236,10 @@ } }, { - "fullUrl": "Practitioner/1731029042516892000.5fdb9531-b2fe-44db-889a-12d633a8b5ee", + "fullUrl": "Practitioner/1732562154207156000.325c915a-9ada-47bd-8a09-92c6918e3b23", "resource": { "resourceType": "Practitioner", - "id": "1731029042516892000.5fdb9531-b2fe-44db-889a-12d633a8b5ee", + "id": "1732562154207156000.325c915a-9ada-47bd-8a09-92c6918e3b23", "identifier": [ { "value": "Bob R.N.A." @@ -8248,10 +8248,10 @@ } }, { - "fullUrl": "Device/1731029042517591000.2a509bad-1960-461f-8ca5-4bd97dfcd7bf", + "fullUrl": "Device/1732562154208233000.90243bc5-b199-4bd4-9b22-3c0b1f7a9eb7", "resource": { "resourceType": "Device", - "id": "1731029042517591000.2a509bad-1960-461f-8ca5-4bd97dfcd7bf", + "id": "1732562154208233000.90243bc5-b199-4bd4-9b22-3c0b1f7a9eb7", "identifier": [ { "extension": [ @@ -8279,10 +8279,10 @@ } }, { - "fullUrl": "ServiceRequest/1731029042542077000.4dc1bbff-9f98-4119-acfd-865c22f07f30", + "fullUrl": "ServiceRequest/1732562154250806000.dd9cbc7c-fc51-481d-a11d-c930abf83f60", "resource": { "resourceType": "ServiceRequest", - "id": "1731029042542077000.4dc1bbff-9f98-4119-acfd-865c22f07f30", + "id": "1732562154250806000.dd9cbc7c-fc51-481d-a11d-c930abf83f60", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", @@ -8327,13 +8327,13 @@ { "url": "ORC.19", "valueReference": { - "reference": "Practitioner/1731029042525342000.150e5a31-c0ff-46d4-a6c4-b0e3e878e291" + "reference": "Practitioner/1732562154225791000.ae6f9906-e3b1-4a93-b6c6-d8278444d635" } }, { "url": "orc-21-ordering-facility-name", "valueReference": { - "reference": "Organization/1731029042527044000.bfa7a20e-da05-41a9-bad1-76fcec5abe1b" + "reference": "Organization/1732562154226525000.8d27cb9f-3454-4c66-824f-0dd6118fe641" } }, { @@ -8511,25 +8511,25 @@ { "url": "ORC.10", "valueReference": { - "reference": "Practitioner/1731029042528224000.226de79f-df33-46bb-a83d-87e75cdf4b9e" + "reference": "Practitioner/1732562154228856000.3e9b434f-f562-4f49-9eed-8deab719001a" } }, { "url": "ORC.11", "valueReference": { - "reference": "Practitioner/1731029042528539000.0cc82500-af2b-416c-a7d3-3ff96fd4c5e4" + "reference": "Practitioner/1732562154229548000.d7d4e869-66b8-4cd3-a898-79fa9eb5ac64" } }, { "url": "orc-12-ordering-provider", "valueReference": { - "reference": "Practitioner/1731029042528837000.1dc5284b-fc12-46b8-b850-90532cc012a9" + "reference": "Practitioner/1732562154230211000.de62daa9-831f-4e3a-988d-bb953b1d75d7" } }, { "url": "ORC.13", "valueReference": { - "reference": "Location/1731029042529379000.75bcbc72-ac41-4adb-bd62-5b50075ad8e8" + "reference": "Location/1732562154231251000.f0dbdb0c-a77c-42d4-bd6c-82e4bc21e9b4" } }, { @@ -8633,6 +8633,98 @@ "value": "Filler Identifier" } }, + { + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1732562154232733000.784d1aba-654d-41de-b921-04d5efa0e707" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "260" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "7595016" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "BP" + }, + { + "url": "XTN.7", + "valueString": "7595016" + }, + { + "url": "XTN.12", + "valueString": "+1 260 759 5016" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "pager", + "value": "+1 260 759 5016", + "use": "work" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "Internet" + }, + { + "url": "XTN.4", + "valueString": "order.callback@email.com" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" + } + ], + "system": "email", + "value": "order.callback@email.com", + "use": "work" + } + }, + { + "url": "OBR.18", + "valueString": "placer1" + }, + { + "url": "OBR.19", + "valueString": "placer2" + }, { "url": "OBR.20", "valueString": "filler1" @@ -8712,7 +8804,7 @@ { "url": "OBR.28", "valueReference": { - "reference": "Practitioner/1731029042530699000.d7f77636-969a-4c51-9188-b32affa94391" + "reference": "Practitioner/1732562154235327000.a2de90f4-5fe3-449a-b442-1422688f69bd" } }, { @@ -8767,13 +8859,7 @@ { "url": "OBR.33", "valueReference": { - "reference": "PractitionerRole/1731029042537733000.6b028e3d-fcd8-456a-8106-8ef2a984bacb" - } - }, - { - "url": "OBR.10", - "valueReference": { - "reference": "Practitioner/1731029042538572000.90dbb60c-9bb6-4ec0-aec2-341f36e90f04" + "reference": "PractitionerRole/1732562154243651000.0580e430-b3b0-4b7f-bdfb-979e88af580c" } }, { @@ -8984,6 +9070,12 @@ "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1" } }, + { + "url": "OBR.10", + "valueReference": { + "reference": "Practitioner/1732562154248192000.9f748ab3-d9d1-440c-85d0-286ba3af3144" + } + }, { "url": "OBR.11", "valueString": "G" @@ -9020,98 +9112,6 @@ } ] } - }, - { - "url": "OBR.16", - "valueReference": { - "reference": "Practitioner/1731029042540210000.f5efdbc1-b15c-4e43-9db3-089878040a8e" - } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint": { - "extension": [ - { - "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString": "1" - }, - { - "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString": "260" - }, - { - "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString": "7595016" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension": [ - { - "url": "XTN.2", - "valueString": "WPN" - }, - { - "url": "XTN.3", - "valueString": "BP" - }, - { - "url": "XTN.7", - "valueString": "7595016" - }, - { - "url": "XTN.12", - "valueString": "+1 260 759 5016" - } - ] - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "OBR.17" - } - ], - "system": "pager", - "value": "+1 260 759 5016", - "use": "work" - } - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint": { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension": [ - { - "url": "XTN.2", - "valueString": "WPN" - }, - { - "url": "XTN.3", - "valueString": "Internet" - }, - { - "url": "XTN.4", - "valueString": "order.callback@email.com" - } - ] - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "OBR.17" - } - ], - "system": "email", - "value": "order.callback@email.com", - "use": "work" - } - }, - { - "url": "OBR.18", - "valueString": "placer1" - }, - { - "url": "OBR.19", - "valueString": "placer2" } ] } @@ -9370,7 +9370,7 @@ } ], "subject": { - "reference": "Patient/1731029042299508000.1f95ce50-d413-4108-aa07-665724a5a896" + "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768" }, "occurrenceDateTime": "2022-02-02T10:22:00Z", "_occurrenceDateTime": { @@ -9410,7 +9410,7 @@ } } ], - "reference": "PractitionerRole/1731029042522064000.0b6e4396-559d-449f-8457-a4ad44884a34" + "reference": "PractitionerRole/1732562154213583000.c9736a07-2608-4bcd-9656-7f0f085d586e" }, "locationCode": [ { @@ -9464,19 +9464,19 @@ ], "supportingInfo": [ { - "reference": "Observation/1731029042509217000.62819b92-2016-4e46-a275-e51fddda8685" + "reference": "Observation/1732562154193977000.c207046a-6adc-4826-b659-18bb2d10b434" }, { - "reference": "Observation/1731029042514598000.c8593529-7867-45af-8586-0c6a09b4b45e" + "reference": "Observation/1732562154202682000.aa635033-0073-450d-aaf4-6f85d81b8307" } ] } }, { - "fullUrl": "Practitioner/1731029042522657000.080972e9-fe45-4c4a-8303-15adf38345e5", + "fullUrl": "Practitioner/1732562154214707000.55fe29b9-3526-4dd0-8afd-afcd464734b8", "resource": { "resourceType": "Practitioner", - "id": "1731029042522657000.080972e9-fe45-4c4a-8303-15adf38345e5", + "id": "1732562154214707000.55fe29b9-3526-4dd0-8afd-afcd464734b8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -9532,10 +9532,10 @@ } }, { - "fullUrl": "Location/1731029042522912000.df643ba6-84f0-4a74-bf99-c7f16b4a898d", + "fullUrl": "Location/1732562154215176000.7d2bdd0e-7a5f-4658-8892-51bfe64f9893", "resource": { "resourceType": "Location", - "id": "1731029042522912000.df643ba6-84f0-4a74-bf99-c7f16b4a898d", + "id": "1732562154215176000.7d2bdd0e-7a5f-4658-8892-51bfe64f9893", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -9559,10 +9559,10 @@ } }, { - "fullUrl": "Organization/1731029042523476000.b6af097c-7449-4c56-a417-0caf14cc1fda", + "fullUrl": "Organization/1732562154219040000.ab3d8b26-5b97-4c67-bd32-15c7749feb27", "resource": { "resourceType": "Organization", - "id": "1731029042523476000.b6af097c-7449-4c56-a417-0caf14cc1fda", + "id": "1732562154219040000.ab3d8b26-5b97-4c67-bd32-15c7749feb27", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", @@ -9601,7 +9601,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042522912000.df643ba6-84f0-4a74-bf99-c7f16b4a898d" + "reference": "Location/1732562154215176000.7d2bdd0e-7a5f-4658-8892-51bfe64f9893" } } ], @@ -9666,23 +9666,23 @@ } }, { - "fullUrl": "PractitionerRole/1731029042522064000.0b6e4396-559d-449f-8457-a4ad44884a34", + "fullUrl": "PractitionerRole/1732562154213583000.c9736a07-2608-4bcd-9656-7f0f085d586e", "resource": { "resourceType": "PractitionerRole", - "id": "1731029042522064000.0b6e4396-559d-449f-8457-a4ad44884a34", + "id": "1732562154213583000.c9736a07-2608-4bcd-9656-7f0f085d586e", "practitioner": { - "reference": "Practitioner/1731029042522657000.080972e9-fe45-4c4a-8303-15adf38345e5" + "reference": "Practitioner/1732562154214707000.55fe29b9-3526-4dd0-8afd-afcd464734b8" }, "organization": { - "reference": "Organization/1731029042523476000.b6af097c-7449-4c56-a417-0caf14cc1fda" + "reference": "Organization/1732562154219040000.ab3d8b26-5b97-4c67-bd32-15c7749feb27" } } }, { - "fullUrl": "Practitioner/1731029042525342000.150e5a31-c0ff-46d4-a6c4-b0e3e878e291", + "fullUrl": "Practitioner/1732562154225791000.ae6f9906-e3b1-4a93-b6c6-d8278444d635", "resource": { "resourceType": "Practitioner", - "id": "1731029042525342000.150e5a31-c0ff-46d4-a6c4-b0e3e878e291", + "id": "1732562154225791000.ae6f9906-e3b1-4a93-b6c6-d8278444d635", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -9709,10 +9709,10 @@ } }, { - "fullUrl": "Location/1731029042525561000.55a3f93f-3592-4945-b81d-5c8f584dbb62", + "fullUrl": "Location/1732562154226227000.9b5c0d44-1449-4c0c-b16c-d96bc24ba566", "resource": { "resourceType": "Location", - "id": "1731029042525561000.55a3f93f-3592-4945-b81d-5c8f584dbb62", + "id": "1732562154226227000.9b5c0d44-1449-4c0c-b16c-d96bc24ba566", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -9736,10 +9736,10 @@ } }, { - "fullUrl": "Organization/1731029042527044000.bfa7a20e-da05-41a9-bad1-76fcec5abe1b", + "fullUrl": "Organization/1732562154226525000.8d27cb9f-3454-4c66-824f-0dd6118fe641", "resource": { "resourceType": "Organization", - "id": "1731029042527044000.bfa7a20e-da05-41a9-bad1-76fcec5abe1b", + "id": "1732562154226525000.8d27cb9f-3454-4c66-824f-0dd6118fe641", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", @@ -9778,7 +9778,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1731029042525561000.55a3f93f-3592-4945-b81d-5c8f584dbb62" + "reference": "Location/1732562154226227000.9b5c0d44-1449-4c0c-b16c-d96bc24ba566" } } ], @@ -9797,10 +9797,10 @@ } }, { - "fullUrl": "Practitioner/1731029042528224000.226de79f-df33-46bb-a83d-87e75cdf4b9e", + "fullUrl": "Practitioner/1732562154228856000.3e9b434f-f562-4f49-9eed-8deab719001a", "resource": { "resourceType": "Practitioner", - "id": "1731029042528224000.226de79f-df33-46bb-a83d-87e75cdf4b9e", + "id": "1732562154228856000.3e9b434f-f562-4f49-9eed-8deab719001a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -9827,10 +9827,10 @@ } }, { - "fullUrl": "Practitioner/1731029042528539000.0cc82500-af2b-416c-a7d3-3ff96fd4c5e4", + "fullUrl": "Practitioner/1732562154229548000.d7d4e869-66b8-4cd3-a898-79fa9eb5ac64", "resource": { "resourceType": "Practitioner", - "id": "1731029042528539000.0cc82500-af2b-416c-a7d3-3ff96fd4c5e4", + "id": "1732562154229548000.d7d4e869-66b8-4cd3-a898-79fa9eb5ac64", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -9857,10 +9857,10 @@ } }, { - "fullUrl": "Practitioner/1731029042528837000.1dc5284b-fc12-46b8-b850-90532cc012a9", + "fullUrl": "Practitioner/1732562154230211000.de62daa9-831f-4e3a-988d-bb953b1d75d7", "resource": { "resourceType": "Practitioner", - "id": "1731029042528837000.1dc5284b-fc12-46b8-b850-90532cc012a9", + "id": "1732562154230211000.de62daa9-831f-4e3a-988d-bb953b1d75d7", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -9887,10 +9887,10 @@ } }, { - "fullUrl": "Location/1731029042529208000.e690adea-886e-49eb-bc2d-9aadf32e191f", + "fullUrl": "Location/1732562154230997000.1f3e2855-faa7-43e9-b6c5-2cc071db40e8", "resource": { "resourceType": "Location", - "id": "1731029042529208000.e690adea-886e-49eb-bc2d-9aadf32e191f", + "id": "1732562154230997000.1f3e2855-faa7-43e9-b6c5-2cc071db40e8", "identifier": [ { "extension": [ @@ -9942,10 +9942,10 @@ } }, { - "fullUrl": "Location/1731029042529379000.75bcbc72-ac41-4adb-bd62-5b50075ad8e8", + "fullUrl": "Location/1732562154231251000.f0dbdb0c-a77c-42d4-bd6c-82e4bc21e9b4", "resource": { "resourceType": "Location", - "id": "1731029042529379000.75bcbc72-ac41-4adb-bd62-5b50075ad8e8", + "id": "1732562154231251000.f0dbdb0c-a77c-42d4-bd6c-82e4bc21e9b4", "identifier": [ { "extension": [ @@ -9996,15 +9996,52 @@ ] }, "partOf": { - "reference": "Location/1731029042529208000.e690adea-886e-49eb-bc2d-9aadf32e191f" + "reference": "Location/1732562154230997000.1f3e2855-faa7-43e9-b6c5-2cc071db40e8" } } }, { - "fullUrl": "Practitioner/1731029042530699000.d7f77636-969a-4c51-9188-b32affa94391", + "fullUrl": "Practitioner/1732562154232733000.784d1aba-654d-41de-b921-04d5efa0e707", "resource": { "resourceType": "Practitioner", - "id": "1731029042530699000.d7f77636-969a-4c51-9188-b32affa94391", + "id": "1732562154232733000.784d1aba-654d-41de-b921-04d5efa0e707", + "identifier": [ + { + "value": "1" + } + ], + "name": [ + { + "family": "Ordering", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "Provider" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "JollyROGER" + } + ] + } + } + ] + } + }, + { + "fullUrl": "Practitioner/1732562154235327000.a2de90f4-5fe3-449a-b442-1422688f69bd", + "resource": { + "resourceType": "Practitioner", + "id": "1732562154235327000.a2de90f4-5fe3-449a-b442-1422688f69bd", "identifier": [ { "value": "1" @@ -10038,10 +10075,10 @@ } }, { - "fullUrl": "Practitioner/1731029042531298000.2c40837c-9a34-4ba8-80df-254b9cfc56ba", + "fullUrl": "Practitioner/1732562154236508000.235838ae-2ca2-4cbc-a6d0-c70b0d56a0d6", "resource": { "resourceType": "Practitioner", - "id": "1731029042531298000.2c40837c-9a34-4ba8-80df-254b9cfc56ba", + "id": "1732562154236508000.235838ae-2ca2-4cbc-a6d0-c70b0d56a0d6", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", @@ -10108,10 +10145,10 @@ } }, { - "fullUrl": "Location/1731029042531739000.ff593e46-fba9-4ab8-b081-14f110197901", + "fullUrl": "Location/1732562154237718000.bcc3e46e-35d5-49d9-9bc8-392bef817de8", "resource": { "resourceType": "Location", - "id": "1731029042531739000.ff593e46-fba9-4ab8-b081-14f110197901", + "id": "1732562154237718000.bcc3e46e-35d5-49d9-9bc8-392bef817de8", "identifier": [ { "extension": [ @@ -10158,10 +10195,10 @@ } }, { - "fullUrl": "Location/1731029042536429000.63204f0c-9090-4d6c-b357-8a741dc150e7", + "fullUrl": "Location/1732562154242310000.f00d36fc-fc8c-4eaa-b4a6-d6c558e042f8", "resource": { "resourceType": "Location", - "id": "1731029042536429000.63204f0c-9090-4d6c-b357-8a741dc150e7", + "id": "1732562154242310000.f00d36fc-fc8c-4eaa-b4a6-d6c558e042f8", "identifier": [ { "value": "Building 123" @@ -10180,10 +10217,10 @@ } }, { - "fullUrl": "Location/1731029042536823000.932a63be-8d92-41c9-a014-2c148ce90a7d", + "fullUrl": "Location/1732562154242719000.f859e4d1-1e25-4bd1-a800-1a5f46aa7566", "resource": { "resourceType": "Location", - "id": "1731029042536823000.932a63be-8d92-41c9-a014-2c148ce90a7d", + "id": "1732562154242719000.f859e4d1-1e25-4bd1-a800-1a5f46aa7566", "identifier": [ { "value": "Point of Care" @@ -10209,10 +10246,10 @@ } }, { - "fullUrl": "Location/1731029042537307000.c51fce2f-bfa1-4a89-bd3b-34d61e6f199c", + "fullUrl": "Location/1732562154243008000.9e0321eb-dc92-4827-adb2-82550515b7f1", "resource": { "resourceType": "Location", - "id": "1731029042537307000.c51fce2f-bfa1-4a89-bd3b-34d61e6f199c", + "id": "1732562154243008000.9e0321eb-dc92-4827-adb2-82550515b7f1", "identifier": [ { "value": "Floor A" @@ -10231,10 +10268,10 @@ } }, { - "fullUrl": "Location/1731029042537492000.be6c8864-6928-49ee-b594-c60c731fa7d6", + "fullUrl": "Location/1732562154243276000.87b2bd86-e633-4172-a925-4c3f9eba72cf", "resource": { "resourceType": "Location", - "id": "1731029042537492000.be6c8864-6928-49ee-b594-c60c731fa7d6", + "id": "1732562154243276000.87b2bd86-e633-4172-a925-4c3f9eba72cf", "identifier": [ { "value": "Room 101" @@ -10253,10 +10290,10 @@ } }, { - "fullUrl": "Location/1731029042537660000.246e80fe-663d-455a-bad0-cf4072c015d0", + "fullUrl": "Location/1732562154243551000.8505b8a8-e6d3-4ae7-8b24-8fa51ad4f471", "resource": { "resourceType": "Location", - "id": "1731029042537660000.246e80fe-663d-455a-bad0-cf4072c015d0", + "id": "1732562154243551000.8505b8a8-e6d3-4ae7-8b24-8fa51ad4f471", "identifier": [ { "value": "Bed A" @@ -10275,10 +10312,10 @@ } }, { - "fullUrl": "PractitionerRole/1731029042537733000.6b028e3d-fcd8-456a-8106-8ef2a984bacb", + "fullUrl": "PractitionerRole/1732562154243651000.0580e430-b3b0-4b7f-bdfb-979e88af580c", "resource": { "resourceType": "PractitionerRole", - "id": "1731029042537733000.6b028e3d-fcd8-456a-8106-8ef2a984bacb", + "id": "1732562154243651000.0580e430-b3b0-4b7f-bdfb-979e88af580c", "period": { "start": "2023-04-01T10:25:31-04:00", "_start": { @@ -10300,35 +10337,35 @@ } }, "practitioner": { - "reference": "Practitioner/1731029042531298000.2c40837c-9a34-4ba8-80df-254b9cfc56ba" + "reference": "Practitioner/1732562154236508000.235838ae-2ca2-4cbc-a6d0-c70b0d56a0d6" }, "location": [ { - "reference": "Location/1731029042531739000.ff593e46-fba9-4ab8-b081-14f110197901" + "reference": "Location/1732562154237718000.bcc3e46e-35d5-49d9-9bc8-392bef817de8" }, { - "reference": "Location/1731029042536429000.63204f0c-9090-4d6c-b357-8a741dc150e7" + "reference": "Location/1732562154242310000.f00d36fc-fc8c-4eaa-b4a6-d6c558e042f8" }, { - "reference": "Location/1731029042536823000.932a63be-8d92-41c9-a014-2c148ce90a7d" + "reference": "Location/1732562154242719000.f859e4d1-1e25-4bd1-a800-1a5f46aa7566" }, { - "reference": "Location/1731029042537307000.c51fce2f-bfa1-4a89-bd3b-34d61e6f199c" + "reference": "Location/1732562154243008000.9e0321eb-dc92-4827-adb2-82550515b7f1" }, { - "reference": "Location/1731029042537492000.be6c8864-6928-49ee-b594-c60c731fa7d6" + "reference": "Location/1732562154243276000.87b2bd86-e633-4172-a925-4c3f9eba72cf" }, { - "reference": "Location/1731029042537660000.246e80fe-663d-455a-bad0-cf4072c015d0" + "reference": "Location/1732562154243551000.8505b8a8-e6d3-4ae7-8b24-8fa51ad4f471" } ] } }, { - "fullUrl": "Practitioner/1731029042538572000.90dbb60c-9bb6-4ec0-aec2-341f36e90f04", + "fullUrl": "Practitioner/1732562154248192000.9f748ab3-d9d1-440c-85d0-286ba3af3144", "resource": { "resourceType": "Practitioner", - "id": "1731029042538572000.90dbb60c-9bb6-4ec0-aec2-341f36e90f04", + "id": "1732562154248192000.9f748ab3-d9d1-440c-85d0-286ba3af3144", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -10475,43 +10512,6 @@ } ] } - }, - { - "fullUrl": "Practitioner/1731029042540210000.f5efdbc1-b15c-4e43-9db3-089878040a8e", - "resource": { - "resourceType": "Practitioner", - "id": "1731029042540210000.f5efdbc1-b15c-4e43-9db3-089878040a8e", - "identifier": [ - { - "value": "1" - } - ], - "name": [ - { - "family": "Ordering", - "_family": { - "extension": [ - { - "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", - "valueString": "VAN" - }, - { - "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", - "valueString": "Provider" - }, - { - "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", - "valueString": "VAL" - }, - { - "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", - "valueString": "JollyROGER" - } - ] - } - } - ] - } } ] } \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir index 1165b38bc18..6b10084189d 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir @@ -1,572 +1,572 @@ { - "resourceType" : "Bundle", - "id" : "1716964507780778000.bfce9592-5305-4ffc-ace9-11053494ca39", - "meta" : { - "lastUpdated" : "2024-05-29T02:35:07.789-04:00" + "resourceType": "Bundle", + "id": "1732561494222502000.f0e4ed57-4d1c-4edd-bcfe-b4f3bab5184a", + "meta": { + "lastUpdated": "2024-11-25T14:04:54.232-05:00" }, - "identifier" : { - "system" : "https://reportstream.cdc.gov/prime-router", - "value" : "3015894743_04608717_11184" + "identifier": { + "system": "https://reportstream.cdc.gov/prime-router", + "value": "3015894743_04608717_11184" }, - "type" : "message", - "timestamp" : "2023-08-02T18:08:02.000-04:00", - "entry" : [ + "type": "message", + "timestamp": "2023-08-02T18:08:02.000-04:00", + "entry": [ { - "fullUrl" : "MessageHeader/8565cf64-832b-3438-bb11-99d9ac964bc1", - "resource" : { - "resourceType" : "MessageHeader", - "id" : "8565cf64-832b-3438-bb11-99d9ac964bc1", - "meta" : { - "tag" : [ + "fullUrl": "MessageHeader/1732561494321770000.2e1c8f84-c0fe-4d13-85e2-a631eb728851", + "resource": { + "resourceType": "MessageHeader", + "id": "1732561494321770000.2e1c8f84-c0fe-4d13-85e2-a631eb728851", + "meta": { + "tag": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0103", - "code" : "T" + "system": "http://terminology.hl7.org/CodeSystem/v2-0103", + "code": "T" } ] }, - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", - "valueString" : "^~\\\u0026#" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", + "valueString": "^~\\\u0026#" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension": [ { - "url" : "MSH.7", - "valueString" : "20230802180802-0400" + "url": "MSH.7", + "valueString": "20230802180802-0400" }, { - "url" : "MSH.15", - "valueString" : "NE" + "url": "MSH.15", + "valueString": "NE" }, { - "url" : "MSH.16", - "valueString" : "NE" + "url": "MSH.16", + "valueString": "NE" }, { - "url" : "MSH.21", - "valueIdentifier" : { - "extension" : [ + "url": "MSH.21", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "PHIN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "PHIN" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.9.11" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.9.11" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "PHLabReport-NoAck" + "value": "PHLabReport-NoAck" } } ] } ], - "eventCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "R01", - "display" : "ORU^R01^ORU_R01" + "eventCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v2-0003", + "code": "R01", + "display": "ORU^R01^ORU_R01" }, - "destination" : [ + "destination": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.10.1.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.10.1.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.5" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.5" } ], - "name" : "CDPH CA CALREDIE", - "endpoint" : "urn:oid:2.16.840.1.114222.4.3.3.10.1.1", - "receiver" : { - "reference" : "Organization/1716964507867093000.f8c6063b-33aa-4486-aa6f-473b46516d65" + "name": "CDPH CA CALREDIE", + "endpoint": "urn:oid:2.16.840.1.114222.4.3.3.10.1.1", + "receiver": { + "reference": "Organization/1732561494320521000.d77f1512-7b78-49ba-995f-481804f98630" } } ], - "sender" : { - "reference" : "Organization/1716964507841653000.18977e98-2082-47ae-bbf1-02d0ed5942b9" + "sender": { + "reference": "Organization/1732561494291346000.cecd1595-bcdb-4d11-8e3f-a1053b5a3891" }, - "source" : { - "extension" : [ + "source": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.3" } ], - "software" : "STARLIMS", - "version" : "ELIMS V11", - "endpoint" : "urn:oid:2.16.840.1.114222.4.3.3.2.1.2" + "software": "STARLIMS", + "version": "ELIMS V11", + "endpoint": "urn:oid:2.16.840.1.114222.4.3.3.2.1.2" } } }, { - "fullUrl" : "Organization/1716964507841653000.18977e98-2082-47ae-bbf1-02d0ed5942b9", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964507841653000.18977e98-2082-47ae-bbf1-02d0ed5942b9", - "identifier" : [ + "fullUrl": "Organization/1732561494291346000.cecd1595-bcdb-4d11-8e3f-a1053b5a3891", + "resource": { + "resourceType": "Organization", + "id": "1732561494291346000.cecd1595-bcdb-4d11-8e3f-a1053b5a3891", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "CDC Atlanta" + "value": "CDC Atlanta" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "CLIA" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "CLIA" } ] }, - "value" : "11D0668319" + "value": "11D0668319" } ], - "address" : [ + "address": [ { - "country" : "USA" + "country": "USA" } ] } }, { - "fullUrl" : "Organization/1716964507867093000.f8c6063b-33aa-4486-aa6f-473b46516d65", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964507867093000.f8c6063b-33aa-4486-aa6f-473b46516d65", - "extension" : [ + "fullUrl": "Organization/1732561494320521000.d77f1512-7b78-49ba-995f-481804f98630", + "resource": { + "resourceType": "Organization", + "id": "1732561494320521000.d77f1512-7b78-49ba-995f-481804f98630", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "MSH.6" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "MSH.6" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "CDPH_CID" + "value": "CDPH_CID" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.2.14104" + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.2.14104" } ] } }, { - "fullUrl" : "Provenance/1716964508402469000.47642269-e41c-4390-ba44-949ef99f8b4e", - "resource" : { - "resourceType" : "Provenance", - "id" : "1716964508402469000.47642269-e41c-4390-ba44-949ef99f8b4e", - "target" : [ + "fullUrl": "Provenance/1732561494909091000.a8fb88e8-7452-44df-8049-579955d44fd0", + "resource": { + "resourceType": "Provenance", + "id": "1732561494909091000.a8fb88e8-7452-44df-8049-579955d44fd0", + "target": [ { - "reference" : "MessageHeader/8565cf64-832b-3438-bb11-99d9ac964bc1" + "reference": "MessageHeader/1732561494321770000.2e1c8f84-c0fe-4d13-85e2-a631eb728851" }, { - "reference" : "DiagnosticReport/1716964508685898000.2532ff91-3e38-4eb7-91cf-a1012a26a17d" + "reference": "DiagnosticReport/1732561495265209000.f7974efd-664b-4edb-a591-2f256429718b" }, { - "reference" : "DiagnosticReport/1716964508687401000.825800b2-29b8-4cfe-b424-73e68e0dee38" + "reference": "DiagnosticReport/1732561495267151000.83ddc146-f4c0-4063-8c46-9e681d69c1c2" } ], - "recorded" : "2023-08-02T18:08:02-04:00", - "activity" : { - "coding" : [ + "recorded": "2023-08-02T18:08:02-04:00", + "activity": { + "coding": [ { - "display" : "ORU^R01^ORU_R01" + "display": "ORU^R01^ORU_R01" } ] }, - "agent" : [ + "agent": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "author" + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "author" } ] }, - "who" : { - "reference" : "Organization/1716964508401723000.0f908776-dc49-4b1a-b3c3-a613fbe52218" + "who": { + "reference": "Organization/1732561494908179000.2d625b19-31a5-4f09-a891-2d744f59bb66" } } ], - "entity" : [ + "entity": [ { - "role" : "source", - "what" : { - "reference" : "Device/1716964508407050000.3eb837ac-e47c-4205-b924-174ab3cfe213" + "role": "source", + "what": { + "reference": "Device/1732561494915438000.258e5b9a-7885-41de-9064-936700d5d4d4" } } ] } }, { - "fullUrl" : "Organization/1716964508401723000.0f908776-dc49-4b1a-b3c3-a613fbe52218", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508401723000.0f908776-dc49-4b1a-b3c3-a613fbe52218", - "identifier" : [ + "fullUrl": "Organization/1732561494908179000.2d625b19-31a5-4f09-a891-2d744f59bb66", + "resource": { + "resourceType": "Organization", + "id": "1732561494908179000.2d625b19-31a5-4f09-a891-2d744f59bb66", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "CDC Atlanta" + "value": "CDC Atlanta" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "CLIA" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "CLIA" } ] }, - "value" : "11D0668319" + "value": "11D0668319" } ] } }, { - "fullUrl" : "Organization/1716964508406808000.912ee71f-1c70-40c5-b0fd-d3233ab7ab84", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508406808000.912ee71f-1c70-40c5-b0fd-d3233ab7ab84", - "extension" : [ + "fullUrl": "Organization/1732561494915019000.e965d8d9-89bf-4afe-b009-9a263aca00f1", + "resource": { + "resourceType": "Organization", + "id": "1732561494915019000.e965d8d9-89bf-4afe-b009-9a263aca00f1", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "CDC CLIA" + "url": "XON.10", + "valueString": "CDC CLIA" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CDC" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CDC" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "CDC CLIA" + "value": "CDC CLIA" } ], - "name" : "CDC" + "name": "CDC" } }, { - "fullUrl" : "Device/1716964508407050000.3eb837ac-e47c-4205-b924-174ab3cfe213", - "resource" : { - "resourceType" : "Device", - "id" : "1716964508407050000.3eb837ac-e47c-4205-b924-174ab3cfe213", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", - "valueReference" : { - "reference" : "Organization/1716964508406808000.912ee71f-1c70-40c5-b0fd-d3233ab7ab84" + "fullUrl": "Device/1732561494915438000.258e5b9a-7885-41de-9064-936700d5d4d4", + "resource": { + "resourceType": "Device", + "id": "1732561494915438000.258e5b9a-7885-41de-9064-936700d5d4d4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", + "valueReference": { + "reference": "Organization/1732561494915019000.e965d8d9-89bf-4afe-b009-9a263aca00f1" } } ], - "manufacturer" : "CDC", - "deviceName" : [ + "manufacturer": "CDC", + "deviceName": [ { - "name" : "STARLIMS", - "type" : "manufacturer-name" + "name": "STARLIMS", + "type": "manufacturer-name" } ], - "modelNumber" : "Binary ID unknown", - "version" : [ + "modelNumber": "Binary ID unknown", + "version": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date", - "valueDateTime" : "2023-08-02T18:08:02-04:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date", + "valueDateTime": "2023-08-02T18:08:02-04:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230802180802-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230802180802-0400" } ] } } ], - "value" : "ELIMS V11" + "value": "ELIMS V11" } ], - "note" : [ + "note": [ { - "text" : "test" + "text": "test" } ] } }, { - "fullUrl" : "Provenance/1716964508413845000.64588739-af10-4517-adf7-2da281c47b75", - "resource" : { - "resourceType" : "Provenance", - "id" : "1716964508413845000.64588739-af10-4517-adf7-2da281c47b75", - "recorded" : "2024-05-29T02:35:08Z", - "policy" : [ + "fullUrl": "Provenance/1732561494924696000.481d05f9-1bc2-4377-be74-160014d943cb", + "resource": { + "resourceType": "Provenance", + "id": "1732561494924696000.481d05f9-1bc2-4377-be74-160014d943cb", + "recorded": "2024-11-25T14:04:54Z", + "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], - "activity" : { - "coding" : [ + "activity": { + "coding": [ { - "code" : "v2-FHIR transformation" + "code": "v2-FHIR transformation" } ] }, - "agent" : [ + "agent": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "assembler" + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" } ] }, - "who" : { - "reference" : "Organization/1716964508413516000.3ae5db58-59bd-46de-be6a-8c577719601f" + "who": { + "reference": "Organization/1732561494924204000.5a82be4e-aa66-4eb2-abc0-ac51c73fb736" } } ] } }, { - "fullUrl" : "Organization/1716964508413516000.3ae5db58-59bd-46de-be6a-8c577719601f", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508413516000.3ae5db58-59bd-46de-be6a-8c577719601f", - "identifier" : [ + "fullUrl": "Organization/1732561494924204000.5a82be4e-aa66-4eb2-abc0-ac51c73fb736", + "resource": { + "resourceType": "Organization", + "id": "1732561494924204000.5a82be4e-aa66-4eb2-abc0-ac51c73fb736", + "identifier": [ { - "value" : "CDC PRIME - Atlanta" + "value": "CDC PRIME - Atlanta" }, { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.237821" + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" } ] } }, { - "fullUrl" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90", - "resource" : { - "resourceType" : "Patient", - "id" : "1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90", - "extension" : [ + "fullUrl": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850", + "resource": { + "resourceType": "Patient", + "id": "1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", - "valueAnnotation" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", + "valueAnnotation": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ { - "url" : "NTE.2", - "valueId" : "L" + "url": "NTE.2", + "valueId": "L" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Accession level coment." + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Accession level coment." }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.12.364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.12.364" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" + "version": "2.5.1", + "code": "RE", + "display": "Remark" } ] } } ], - "text" : "Accession level coment." + "text": "Accession level coment." } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", - "valueAnnotation" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes", + "valueAnnotation": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ { - "url" : "NTE.2", - "valueId" : "L" + "url": "NTE.2", + "valueId": "L" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "SPHL Submitter: CDPH, Viral and Rickettsial Disease Laboratory, Submitter ID: SPHL-000048, Address: 850 Marina Bay Parkway Rm. E-361 Richmond, California 94804 United States, Email: VRDL.Mail@cdph.ca.gov, Submitter Patient ID: PID123, Submitter Alt Patient ID: AltPID1234, Submitter Specimen ID: Specimen123, Submitter Alt Specimen ID: AltSP1234" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "SPHL Submitter: CDPH, Viral and Rickettsial Disease Laboratory, Submitter ID: SPHL-000048, Address: 850 Marina Bay Parkway Rm. E-361 Richmond, California 94804 United States, Email: VRDL.Mail@cdph.ca.gov, Submitter Patient ID: PID123, Submitter Alt Patient ID: AltPID1234, Submitter Specimen ID: Specimen123, Submitter Alt Specimen ID: AltSP1234" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.12.364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.12.364" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" + "version": "2.5.1", + "code": "RE", + "display": "Remark" } ] } } ], - "text" : "SPHL Submitter: CDPH, Viral and Rickettsial Disease Laboratory, Submitter ID: SPHL-000048, Address: 850 Marina Bay Parkway Rm. E-361 Richmond, California 94804 United States, Email: VRDL.Mail@cdph.ca.gov, Submitter Patient ID: PID123, Submitter Alt Patient ID: AltPID1234, Submitter Specimen ID: Specimen123, Submitter Alt Specimen ID: AltSP1234" + "text": "SPHL Submitter: CDPH, Viral and Rickettsial Disease Laboratory, Submitter ID: SPHL-000048, Address: 850 Marina Bay Parkway Rm. E-361 Richmond, California 94804 United States, Email: VRDL.Mail@cdph.ca.gov, Submitter Patient ID: PID123, Submitter Alt Patient ID: AltPID1234, Submitter Specimen ID: Specimen123, Submitter Alt Specimen ID: AltSP1234" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient", + "extension": [ { - "url" : "PID.8", - "valueCodeableConcept" : { - "coding" : [ + "url": "PID.8", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "F" + "code": "F" } ] } @@ -574,3236 +574,3236 @@ ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/studentStatus", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/studentStatus", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70231" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Full-time student" + "version": "2.5.1", + "code": "F", + "display": "Full-time student" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70231" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" } ], - "version" : "2.5.1", - "code" : "N", - "display" : "Not a student" + "version": "2.5.1", + "code": "N", + "display": "Not a student" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70231" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" } ], - "version" : "4", - "code" : "N", - "display" : "Not a student" + "version": "4", + "code": "N", + "display": "Not a student" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-disability", - "valueCodeableConcept" : { - "extension" : [ + "url": "http://hl7.org/fhir/StructureDefinition/patient-disability", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70295" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" } ], - "version" : "2.5.1", - "code" : "T", - "display" : "TEST" + "version": "2.5.1", + "code": "T", + "display": "TEST" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70295" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" } ], - "version" : "2.5.1", - "code" : "D", - "display" : "Debug" + "version": "2.5.1", + "code": "D", + "display": "Debug" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70295" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" } ], - "version" : "4", - "code" : "P", - "display" : "Prod" + "version": "4", + "code": "P", + "display": "Prod" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/livingWill", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/livingWill", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70315" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Yes, patient has a living will but it is not on file" + "version": "2.5.1", + "code": "F", + "display": "Yes, patient has a living will but it is not on file" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70315" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" } ], - "version" : "2.5.1", - "code" : "U", - "display" : "Unknown" + "version": "2.5.1", + "code": "U", + "display": "Unknown" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70315" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" } ], - "version" : "4", - "code" : "I", - "display" : "No, patient does not have a living will but information was provided" + "version": "4", + "code": "I", + "display": "No, patient does not have a living will but information was provided" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-congregation", - "valueString" : "1st Ordering Facility" + "url": "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString": "1st Ordering Facility" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-congregation", - "valueString" : "2nd Ordering Facility" + "url": "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString": "2nd Ordering Facility" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic", + "extension": [ { - "url" : "PD1.1", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.1", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" } ], - "version" : "2.5.1", - "code" : "C", - "display" : "Small Children Dependent" + "version": "2.5.1", + "code": "C", + "display": "Small Children Dependent" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" } ], - "version" : "2.5.1", - "code" : "M", - "display" : "Medical Supervision Required" + "version": "2.5.1", + "code": "M", + "display": "Medical Supervision Required" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" } ], - "version" : "4", - "code" : "M", - "display" : "Medical Supervision Required" + "version": "4", + "code": "M", + "display": "Medical Supervision Required" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.1", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.1", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" } ], - "version" : "2.5.1", - "code" : "O", - "display" : "Other" + "version": "2.5.1", + "code": "O", + "display": "Other" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" } ], - "version" : "2.5.1", - "code" : "M", - "display" : "Medical Supervision Required" + "version": "2.5.1", + "code": "M", + "display": "Medical Supervision Required" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" } ], - "version" : "4", - "code" : "U", - "display" : "Unknown" + "version": "4", + "code": "U", + "display": "Unknown" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.2", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.2", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70220" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" } ], - "version" : "2.5.1", - "code" : "A", - "display" : "Alone" + "version": "2.5.1", + "code": "A", + "display": "Alone" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70220" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Family" + "version": "2.5.1", + "code": "F", + "display": "Family" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70220" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" } ], - "version" : "4", - "code" : "F", - "display" : "Family" + "version": "4", + "code": "F", + "display": "Family" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.16", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.16", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70441" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" } ], - "version" : "2.5.1", - "code" : "A", - "display" : "Active" + "version": "2.5.1", + "code": "A", + "display": "Active" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70441" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" } ], - "version" : "2.5.1", - "code" : "O", - "display" : "Other" + "version": "2.5.1", + "code": "O", + "display": "Other" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70441" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" } ], - "version" : "4", - "code" : "I", - "display" : "Inactive" + "version": "4", + "code": "I", + "display": "Inactive" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.17", - "valueString" : "20230501102531-0400" + "url": "PD1.17", + "valueString": "20230501102531-0400" }, { - "url" : "PD1.18", - "valueString" : "20230501102531-0400" + "url": "PD1.18", + "valueString": "20230501102531-0400" }, { - "url" : "PD1.19", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.19", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70140" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" } ], - "version" : "2.5.1", - "code" : "AUSA", - "display" : "Australian Army" + "version": "2.5.1", + "code": "AUSA", + "display": "Australian Army" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70140" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" } ], - "version" : "2.5.1", - "code" : "AUSN", - "display" : "Australian Navy" + "version": "2.5.1", + "code": "AUSN", + "display": "Australian Navy" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70140" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" } ], - "version" : "4", - "code" : "AUSFA", - "display" : "Australian Air Force" + "version": "4", + "code": "AUSFA", + "display": "Australian Air Force" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.20", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.20", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70141" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" } ], - "version" : "2.5.1", - "code" : "E1... E9", - "display" : "Enlisted" + "version": "2.5.1", + "code": "E1... E9", + "display": "Enlisted" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70141" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" } ], - "version" : "2.5.1", - "code" : "W1 ... W4", - "display" : "Warrent Officers" + "version": "2.5.1", + "code": "W1 ... W4", + "display": "Warrent Officers" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70141" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" } ], - "version" : "4", - "code" : "O1 ... O9", - "display" : "Officers" + "version": "4", + "code": "O1 ... O9", + "display": "Officers" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.21", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.21", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70142" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" } ], - "version" : "2.5.1", - "code" : "ACT", - "display" : "Active duty" + "version": "2.5.1", + "code": "ACT", + "display": "Active duty" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70142" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" } ], - "version" : "2.5.1", - "code" : "RET", - "display" : "Retired" + "version": "2.5.1", + "code": "RET", + "display": "Retired" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70142" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" } ], - "version" : "4", - "code" : "DEC", - "display" : "Deceased" + "version": "4", + "code": "DEC", + "display": "Deceased" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.22", - "valueString" : "20230501102531-0400" + "url": "PD1.22", + "valueString": "20230501102531-0400" }, { - "url" : "PD1.8", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.8", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70316" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Yes, patient is a documented donor, but documentation is not on file" + "version": "2.5.1", + "code": "F", + "display": "Yes, patient is a documented donor, but documentation is not on file" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70316" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" } ], - "version" : "2.5.1", - "code" : "U", - "display" : "Unknown" + "version": "2.5.1", + "code": "U", + "display": "Unknown" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70316" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" } ], - "version" : "4", - "code" : "I", - "display" : "No, patient is not a documented donor, but information was provided" + "version": "4", + "code": "I", + "display": "No, patient is not a documented donor, but information was provided" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.9", - "valueString" : "N" + "url": "PD1.9", + "valueString": "N" }, { - "url" : "PD1.10", - "valueIdentifier" : { - "extension" : [ + "url": "PD1.10", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1716964508431476000.30d5977c-0a2c-4de4-ad86-f21b7f754923" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1732561494948870000.5cbe53b9-772a-4877-855e-e7f96f7980e3" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ { - "url" : "CX.5", - "valueString" : "MR" + "url": "CX.5", + "valueString": "MR" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PD1.10" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PD1.10" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "code" : "MR" + "code": "MR" } ] }, - "system" : "NIST MPI", - "_system" : { - "extension" : [ + "system": "NIST MPI", + "_system": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NIST MPI" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NIST MPI" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.3.72.5.30.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.3.72.5.30.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] }, - "value" : "18547545" + "value": "18547545" } }, { - "url" : "PD1.10", - "valueIdentifier" : { - "extension" : [ + "url": "PD1.10", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1716964508432441000.8401c1df-34f1-43f4-bdbb-9f4d2d693ae3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1732561494950116000.fdf10cda-67a7-4100-ad43-cf0409a12d34" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ { - "url" : "CX.5", - "valueString" : "SS" + "url": "CX.5", + "valueString": "SS" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PD1.10" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PD1.10" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "code" : "SS" + "code": "SS" } ] }, - "system" : "SSN", - "_system" : { - "extension" : [ + "system": "SSN", + "_system": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SSN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SSN" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] }, - "value" : "111111111" + "value": "111111111" } }, { - "url" : "PD1.11", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.11", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70215" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Family only" + "version": "2.5.1", + "code": "F", + "display": "Family only" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70215" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" } ], - "version" : "2.5.1", - "code" : "U", - "display" : "Unknown" + "version": "2.5.1", + "code": "U", + "display": "Unknown" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70215" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" } ], - "version" : "4", - "code" : "N", - "display" : "No Publicity" + "version": "4", + "code": "N", + "display": "No Publicity" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.12", - "valueString" : "N" + "url": "PD1.12", + "valueString": "N" }, { - "url" : "PD1.13", - "valueString" : "20230501102531-0400" + "url": "PD1.13", + "valueString": "20230501102531-0400" }, { - "url" : "PD1.14", - "valueReference" : { - "reference" : "Organization/1716964508434855000.9b935134-8142-4cf7-b361-841ac9f4d406" + "url": "PD1.14", + "valueReference": { + "reference": "Organization/1732561494953497000.950fd58f-eba9-4694-bbb2-637838a31fc3" } }, { - "url" : "PD1.14", - "valueReference" : { - "reference" : "Organization/1716964508436402000.9deca9dd-41c9-47aa-8a51-c695e8665dd9" + "url": "PD1.14", + "valueReference": { + "reference": "Organization/1732561494955263000.ca4e6d8c-92fa-4755-8135-9fd128e82a46" } }, { - "url" : "PD1.15", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.15", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" } ], - "version" : "2.5.1", - "code" : "DNR", - "display" : "Do not resuscitate" + "version": "2.5.1", + "code": "DNR", + "display": "Do not resuscitate" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" } ], - "version" : "2.5.1", - "code" : "N", - "display" : "No directive" + "version": "2.5.1", + "code": "N", + "display": "No directive" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" } ], - "version" : "4", - "code" : "N", - "display" : "No directive" + "version": "4", + "code": "N", + "display": "No directive" } ], - "text" : "TEST" + "text": "TEST" } }, { - "url" : "PD1.15", - "valueCodeableConcept" : { - "extension" : [ + "url": "PD1.15", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" } ], - "version" : "2.5.1", - "code" : "DNR", - "display" : "Do not resuscitate" + "version": "2.5.1", + "code": "DNR", + "display": "Do not resuscitate" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" } ], - "version" : "2.5.1", - "code" : "N", - "display" : "No directive" + "version": "2.5.1", + "code": "N", + "display": "No directive" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" } ], - "version" : "4", - "code" : "N", - "display" : "No directive" + "version": "4", + "code": "N", + "display": "No directive" } ], - "text" : "TEST" + "text": "TEST" } } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ { - "url" : "CX.5", - "valueString" : "PI" + "url": "CX.5", + "valueString": "PI" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "code" : "PI" + "code": "PI" } ] }, - "system" : "STARLIMS.CDC.Stag", - "_system" : { - "extension" : [ + "system": "STARLIMS.CDC.Stag", + "_system": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] }, - "value" : "test" + "value": "test" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ { - "url" : "CX.5", - "valueString" : "PI" + "url": "CX.5", + "valueString": "PI" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PID.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PID.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "code" : "PI" + "code": "PI" } ] }, - "system" : "SPHL-000048", - "_system" : { - "extension" : [ + "system": "SPHL-000048", + "_system": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] }, - "value" : "PID123" + "value": "PID123" } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ { - "url" : "XPN.2", - "valueString" : "HL7" + "url": "XPN.2", + "valueString": "HL7" }, { - "url" : "XPN.3", - "valueString" : "MI" + "url": "XPN.3", + "valueString": "MI" }, { - "url" : "XPN.7", - "valueString" : "L" + "url": "XPN.7", + "valueString": "L" } ] } ], - "use" : "official", - "family" : "Mega", - "given" : [ + "use": "official", + "family": "Mega", + "given": [ "HL7", "MI" ] } ], - "gender" : "female", - "_birthDate" : { - "extension" : [ + "gender": "female", + "_birthDate": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "0000" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "0000" } ] }, - "address" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "XAD.7", - "valueCode" : "H" + "url": "XAD.7", + "valueCode": "H" } ] } ], - "use" : "home", - "country" : "USA" + "use": "home", + "country": "USA" } ], - "contact" : [ + "contact": [ { - "extension" : [ + "extension": [ { - "url" : "https://hl7.org/fhir/StructureDefinition/relationship", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70131" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70131" } ], - "code" : "N", - "display" : "Next-of-Kin" + "code": "N", + "display": "Next-of-Kin" } ] } }, { - "url" : "https://hl7.org/fhir/StructureDefinition/relationship", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://hl7.org/fhir/StructureDefinition/relationship", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70131" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70131" } ], - "code" : "N", - "display" : "Next-of-Kin" + "code": "N", + "display": "Next-of-Kin" } ] } } ], - "relationship" : [ + "relationship": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70131" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70131" } ], - "code" : "N", - "display" : "Next-of-Kin" + "code": "N", + "display": "Next-of-Kin" } ] } ], - "name" : { - "extension" : [ + "name": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ { - "url" : "XPN.2", - "valueString" : "Leia" + "url": "XPN.2", + "valueString": "Leia" } ] } ], - "family" : "Organa", - "given" : [ + "family": "Organa", + "given": [ "Leia" ] }, - "telecom" : [ + "telecom": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "31" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "31" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "201" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "201" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "234567" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "234567" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.3", - "valueString" : "PH" + "url": "XTN.3", + "valueString": "PH" }, { - "url" : "XTN.7", - "valueString" : "234567" + "url": "XTN.7", + "valueString": "234567" }, { - "url" : "XTN.12", - "valueString" : "+31201234567" + "url": "XTN.12", + "valueString": "+31201234567" } ] } ], - "system" : "phone", - "value" : "+31201234567" + "system": "phone", + "value": "+31201234567" }, { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "31" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "31" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "201" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "201" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "234567" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "234567" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.3", - "valueString" : "PH" + "url": "XTN.3", + "valueString": "PH" }, { - "url" : "XTN.7", - "valueString" : "234567" + "url": "XTN.7", + "valueString": "234567" }, { - "url" : "XTN.12", - "valueString" : "+31201234567" + "url": "XTN.12", + "valueString": "+31201234567" } ] } ], - "system" : "phone", - "value" : "+31201234567" + "system": "phone", + "value": "+31201234567" } ] } ], - "generalPractitioner" : [ + "generalPractitioner": [ { - "reference" : "Organization/1716964508421531000.4f4e04d0-2dd7-4c9b-89ea-78e5f9f2100e" + "reference": "Organization/1732561494934903000.9463edae-4098-4c4c-b290-07d1b7e15999" }, { - "reference" : "Organization/1716964508423689000.a8461c1b-6961-4946-8a36-07ac3c3edcd8" + "reference": "Organization/1732561494937469000.27684b41-9694-4621-a8c5-ab560f28e28b" } ] } }, { - "fullUrl" : "Location/1716964508420302000.6468a55c-02d7-4101-8c9a-2a3cbab80ff3", - "resource" : { - "resourceType" : "Location", - "id" : "1716964508420302000.6468a55c-02d7-4101-8c9a-2a3cbab80ff3", - "extension" : [ + "fullUrl": "Location/1732561494933334000.3848bd28-492b-4899-a3ad-d0d036a711b5", + "resource": { + "resourceType": "Location", + "id": "1732561494933334000.3848bd28-492b-4899-a3ad-d0d036a711b5", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "identifier": [ { - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ + "name": "Hospital A", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Organization/1716964508421531000.4f4e04d0-2dd7-4c9b-89ea-78e5f9f2100e", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508421531000.4f4e04d0-2dd7-4c9b-89ea-78e5f9f2100e", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561494934903000.9463edae-4098-4c4c-b290-07d1b7e15999", + "resource": { + "resourceType": "Organization", + "id": "1732561494934903000.9463edae-4098-4c4c-b290-07d1b7e15999", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" } ], - "text" : "OriginalText" + "text": "OriginalText" } } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.3", - "valueString" : "123" + "url": "XON.3", + "valueString": "123" }, { - "url" : "XON.10", - "valueString" : "OrgIdentifier" + "url": "XON.10", + "valueString": "OrgIdentifier" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1716964508420302000.6468a55c-02d7-4101-8c9a-2a3cbab80ff3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732561494933334000.3848bd28-492b-4899-a3ad-d0d036a711b5" } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" } ] }, - "value" : "OrgIdentifier" + "value": "OrgIdentifier" } ], - "name" : "Ordering Facility" + "name": "Ordering Facility" } }, { - "fullUrl" : "Location/1716964508422602000.ba39e247-8003-4248-be30-dc6c71caa958", - "resource" : { - "resourceType" : "Location", - "id" : "1716964508422602000.ba39e247-8003-4248-be30-dc6c71caa958", - "extension" : [ + "fullUrl": "Location/1732561494935948000.72dc3547-b3cf-4fd3-9864-18267d10b7bf", + "resource": { + "resourceType": "Location", + "id": "1732561494935948000.72dc3547-b3cf-4fd3-9864-18267d10b7bf", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "identifier": [ { - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ + "name": "Hospital A", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Organization/1716964508423689000.a8461c1b-6961-4946-8a36-07ac3c3edcd8", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508423689000.a8461c1b-6961-4946-8a36-07ac3c3edcd8", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561494937469000.27684b41-9694-4621-a8c5-ab560f28e28b", + "resource": { + "resourceType": "Organization", + "id": "1732561494937469000.27684b41-9694-4621-a8c5-ab560f28e28b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" } ], - "text" : "OriginalText" + "text": "OriginalText" } } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.3", - "valueString" : "123" + "url": "XON.3", + "valueString": "123" }, { - "url" : "XON.10", - "valueString" : "OrgIdentifier" + "url": "XON.10", + "valueString": "OrgIdentifier" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1716964508422602000.ba39e247-8003-4248-be30-dc6c71caa958" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732561494935948000.72dc3547-b3cf-4fd3-9864-18267d10b7bf" } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" } ] }, - "value" : "OrgIdentifier" + "value": "OrgIdentifier" } ], - "name" : "Ordering Facility" + "name": "Ordering Facility" } }, { - "fullUrl" : "Organization/1716964508431476000.30d5977c-0a2c-4de4-ad86-f21b7f754923", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508431476000.30d5977c-0a2c-4de4-ad86-f21b7f754923", - "identifier" : [ + "fullUrl": "Organization/1732561494948870000.5cbe53b9-772a-4877-855e-e7f96f7980e3", + "resource": { + "resourceType": "Organization", + "id": "1732561494948870000.5cbe53b9-772a-4877-855e-e7f96f7980e3", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "University H" + "value": "University H" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.113883.3.0" + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.0" } ] } }, { - "fullUrl" : "Organization/1716964508432441000.8401c1df-34f1-43f4-bdbb-9f4d2d693ae3", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508432441000.8401c1df-34f1-43f4-bdbb-9f4d2d693ae3", - "identifier" : [ + "fullUrl": "Organization/1732561494950116000.fdf10cda-67a7-4100-ad43-cf0409a12d34", + "resource": { + "resourceType": "Organization", + "id": "1732561494950116000.fdf10cda-67a7-4100-ad43-cf0409a12d34", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "SSA" + "value": "SSA" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" } ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.113883.3.184" + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.184" } ] } }, { - "fullUrl" : "Location/1716964508434094000.40fa5007-4b3d-4498-83e4-0c72c2002e95", - "resource" : { - "resourceType" : "Location", - "id" : "1716964508434094000.40fa5007-4b3d-4498-83e4-0c72c2002e95", - "extension" : [ + "fullUrl": "Location/1732561494951963000.32a5533b-cc3a-411f-a0ea-c6c9e07bb91b", + "resource": { + "resourceType": "Location", + "id": "1732561494951963000.32a5533b-cc3a-411f-a0ea-c6c9e07bb91b", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "identifier": [ { - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ + "name": "Hospital A", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Organization/1716964508434855000.9b935134-8142-4cf7-b361-841ac9f4d406", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508434855000.9b935134-8142-4cf7-b361-841ac9f4d406", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561494953497000.950fd58f-eba9-4694-bbb2-637838a31fc3", + "resource": { + "resourceType": "Organization", + "id": "1732561494953497000.950fd58f-eba9-4694-bbb2-637838a31fc3", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" } ], - "text" : "OriginalText" + "text": "OriginalText" } } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.3", - "valueString" : "123" + "url": "XON.3", + "valueString": "123" }, { - "url" : "XON.10", - "valueString" : "1st OrgIdentifier" + "url": "XON.10", + "valueString": "1st OrgIdentifier" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1716964508434094000.40fa5007-4b3d-4498-83e4-0c72c2002e95" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732561494951963000.32a5533b-cc3a-411f-a0ea-c6c9e07bb91b" } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" } ] }, - "value" : "1st OrgIdentifier" + "value": "1st OrgIdentifier" } ], - "name" : "1st Ordering Facility" + "name": "1st Ordering Facility" } }, { - "fullUrl" : "Location/1716964508435618000.b1b6ac05-f8e0-4d73-89c6-351d176affd7", - "resource" : { - "resourceType" : "Location", - "id" : "1716964508435618000.b1b6ac05-f8e0-4d73-89c6-351d176affd7", - "extension" : [ + "fullUrl": "Location/1732561494954270000.a4cb489d-0b2e-4761-887a-f1bbf3745245", + "resource": { + "resourceType": "Location", + "id": "1732561494954270000.a4cb489d-0b2e-4761-887a-f1bbf3745245", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ], - "identifier" : [ + "identifier": [ { - "value" : "2.16.840.1.113883.9.11" + "value": "2.16.840.1.113883.9.11" } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ + "name": "Hospital A", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "Organization/1716964508436402000.9deca9dd-41c9-47aa-8a51-c695e8665dd9", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508436402000.9deca9dd-41c9-47aa-8a51-c695e8665dd9", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561494955263000.ca4e6d8c-92fa-4755-8135-9fd128e82a46", + "resource": { + "resourceType": "Organization", + "id": "1732561494955263000.ca4e6d8c-92fa-4755-8135-9fd128e82a46", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" } ], - "text" : "OriginalText" + "text": "OriginalText" } } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.3", - "valueString" : "123" + "url": "XON.3", + "valueString": "123" }, { - "url" : "XON.10", - "valueString" : "2nd OrgIdentifier" + "url": "XON.10", + "valueString": "2nd OrgIdentifier" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1716964508435618000.b1b6ac05-f8e0-4d73-89c6-351d176affd7" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1732561494954270000.a4cb489d-0b2e-4761-887a-f1bbf3745245" } } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" } ] }, - "value" : "2nd OrgIdentifier" + "value": "2nd OrgIdentifier" } ], - "name" : "2nd Ordering Facility" + "name": "2nd Ordering Facility" } }, { - "fullUrl" : "Provenance/1716964508455247000.1fd44214-6fb9-4430-ae7f-36ef299676d8", - "resource" : { - "resourceType" : "Provenance", - "id" : "1716964508455247000.1fd44214-6fb9-4430-ae7f-36ef299676d8", - "target" : [ + "fullUrl": "Provenance/1732561494978140000.543eb08c-009a-45af-bd6a-6bbe2e96eade", + "resource": { + "resourceType": "Provenance", + "id": "1732561494978140000.543eb08c-009a-45af-bd6a-6bbe2e96eade", + "target": [ { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" } ], - "recorded" : "2024-05-29T02:35:08Z", - "activity" : { - "coding" : [ + "recorded": "2024-11-25T14:04:54Z", + "activity": { + "coding": [ { - "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", - "code" : "UPDATE" + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" } ] } } }, { - "fullUrl" : "RelatedPerson/1716964508456886000.a9540572-c8a4-45d1-8021-ca342745f69b", - "resource" : { - "resourceType" : "RelatedPerson", - "id" : "1716964508456886000.a9540572-c8a4-45d1-8021-ca342745f69b", - "extension" : [ + "fullUrl": "RelatedPerson/1732561494980222000.9bd69413-6d6f-4ab7-8d39-add9a416b2ce", + "resource": { + "resourceType": "RelatedPerson", + "id": "1732561494980222000.9bd69413-6d6f-4ab7-8d39-add9a416b2ce", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "NK1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "NK1" } ], - "patient" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "patient": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "relationship" : [ + "relationship": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70131" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70131" } ], - "code" : "N", - "display" : "Next-of-Kin" + "code": "N", + "display": "Next-of-Kin" } ] } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ { - "url" : "XPN.2", - "valueString" : "Leia" + "url": "XPN.2", + "valueString": "Leia" } ] } ], - "family" : "Organa", - "given" : [ + "family": "Organa", + "given": [ "Leia" ] } ], - "telecom" : [ + "telecom": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "31" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "31" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "201" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "201" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "234567" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "234567" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.3", - "valueString" : "PH" + "url": "XTN.3", + "valueString": "PH" }, { - "url" : "XTN.7", - "valueString" : "234567" + "url": "XTN.7", + "valueString": "234567" }, { - "url" : "XTN.12", - "valueString" : "+31201234567" + "url": "XTN.12", + "valueString": "+31201234567" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.5" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.5" } ], - "system" : "phone", - "value" : "+31201234567" + "system": "phone", + "value": "+31201234567" } ] } }, { - "fullUrl" : "RelatedPerson/1716964508458038000.a6855d9f-cd0b-47bb-aee6-05b7a4850307", - "resource" : { - "resourceType" : "RelatedPerson", - "id" : "1716964508458038000.a6855d9f-cd0b-47bb-aee6-05b7a4850307", - "extension" : [ + "fullUrl": "RelatedPerson/1732561494982048000.0cc61f45-259a-444d-86de-d94a3bfad75e", + "resource": { + "resourceType": "RelatedPerson", + "id": "1732561494982048000.0cc61f45-259a-444d-86de-d94a3bfad75e", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "NK1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "NK1" } ], - "patient" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "patient": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "relationship" : [ + "relationship": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.3" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70131" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70131" } ], - "code" : "N", - "display" : "Next-of-Kin" + "code": "N", + "display": "Next-of-Kin" } ] } ], - "name" : [ + "name": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name", + "extension": [ { - "url" : "XPN.2", - "valueString" : "Liz" + "url": "XPN.2", + "valueString": "Liz" } ] } ], - "family" : "Navarro", - "given" : [ + "family": "Navarro", + "given": [ "Liz" ] } ], - "telecom" : [ + "telecom": [ { - "extension" : [ + "extension": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString" : "31" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "31" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString" : "201" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "201" }, { - "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString" : "234567" + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "234567" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.3", - "valueString" : "PH" + "url": "XTN.3", + "valueString": "PH" }, { - "url" : "XTN.7", - "valueString" : "234567" + "url": "XTN.7", + "valueString": "234567" }, { - "url" : "XTN.12", - "valueString" : "+31201234567" + "url": "XTN.12", + "valueString": "+31201234567" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "NK1.5" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "NK1.5" } ], - "system" : "phone", - "value" : "+31201234567" + "system": "phone", + "value": "+31201234567" } ] } }, { - "fullUrl" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b", - "resource" : { - "resourceType" : "Encounter", - "id" : "1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b", - "meta" : { - "security" : [ + "fullUrl": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93", + "resource": { + "resourceType": "Encounter", + "id": "1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93", + "meta": { + "security": [ { - "code" : "true" + "code": "true" } ] }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "episodeOfCare" : [ + "episodeOfCare": [ { - "reference" : "EpisodeOfCare/1716964508460958000.96884718-17db-4575-97ff-6e1e940fd512" + "reference": "EpisodeOfCare/1732561494986152000.262f30bd-f1c6-452a-8655-a71ed6362d62" } ], - "length" : { - "value" : 4, - "unit" : "days", - "system" : "http://unitsofmeasure.org/", - "code" : "d" + "length": { + "value": 4, + "unit": "days", + "system": "http://unitsofmeasure.org/", + "code": "d" }, - "location" : [ + "location": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.6" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.6" } ], - "location" : { - "reference" : "Location/1716964508460696000.cb518cc1-447d-489c-87ae-5697f17ec870" + "location": { + "reference": "Location/1732561494985750000.5ce51de6-90e9-4b7d-8bf3-1890a43773eb" }, - "status" : "completed" + "status": "completed" } ] } }, { - "fullUrl" : "Organization/1716964508460424000.83af2bf0-c0c5-4232-8327-7fc2871026f0", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508460424000.83af2bf0-c0c5-4232-8327-7fc2871026f0", - "identifier" : [ + "fullUrl": "Organization/1732561494985299000.8cfa1c1f-1e09-41b9-b458-fe27bb20e9db", + "resource": { + "resourceType": "Organization", + "id": "1732561494985299000.8cfa1c1f-1e09-41b9-b458-fe27bb20e9db", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "EI.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "EI.2" } ], - "value" : "NAME" + "value": "NAME" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "EI.3,EI.4" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "EI.3,EI.4" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "UNI" + "value": "UNI" } ] } }, { - "fullUrl" : "Location/1716964508460696000.cb518cc1-447d-489c-87ae-5697f17ec870", - "resource" : { - "resourceType" : "Location", - "id" : "1716964508460696000.cb518cc1-447d-489c-87ae-5697f17ec870", - "identifier" : [ + "fullUrl": "Location/1732561494985750000.5ce51de6-90e9-4b7d-8bf3-1890a43773eb", + "resource": { + "resourceType": "Location", + "id": "1732561494985750000.5ce51de6-90e9-4b7d-8bf3-1890a43773eb", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" } ], - "value" : "Hospital A" + "value": "Hospital A" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "ISO" + "code": "ISO" } ] }, - "value" : "2.4.4.4" + "value": "2.4.4.4" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", - "valueString" : "default" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type", + "valueString": "default" } ], - "value" : "Entity ID", - "assigner" : { - "reference" : "Organization/1716964508460424000.83af2bf0-c0c5-4232-8327-7fc2871026f0" + "value": "Entity ID", + "assigner": { + "reference": "Organization/1732561494985299000.8cfa1c1f-1e09-41b9-b458-fe27bb20e9db" } } ], - "mode" : "instance", - "physicalType" : { - "coding" : [ + "mode": "instance", + "physicalType": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" } ] } } }, { - "fullUrl" : "EpisodeOfCare/1716964508460958000.96884718-17db-4575-97ff-6e1e940fd512", - "resource" : { - "resourceType" : "EpisodeOfCare", - "id" : "1716964508460958000.96884718-17db-4575-97ff-6e1e940fd512", - "extension" : [ + "fullUrl": "EpisodeOfCare/1732561494986152000.262f30bd-f1c6-452a-8655-a71ed6362d62", + "resource": { + "resourceType": "EpisodeOfCare", + "id": "1732561494986152000.262f30bd-f1c6-452a-8655-a71ed6362d62", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PV1.54" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PV1.54" } ] } }, { - "fullUrl" : "Observation/1716964508631514000.19f961d0-ec5b-4cc8-95ac-7b16d5da2d1f", - "resource" : { - "resourceType" : "Observation", - "id" : "1716964508631514000.19f961d0-ec5b-4cc8-95ac-7b16d5da2d1f", - "extension" : [ + "fullUrl": "Observation/1732561495195748000.dd13e5cf-34f2-48f2-9401-55ecf414c6eb", + "resource": { + "resourceType": "Observation", + "id": "1732561495195748000.dd13e5cf-34f2-48f2-9401-55ecf414c6eb", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "OBX.11", + "valueString": "F" }, { - "url" : "OBX.17", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBX.17", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" } ], - "text" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" + "text": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" } } ] } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "80383-3", - "display" : "Flu B" + "system": "http://loinc.org", + "code": "80383-3", + "display": "Flu B" } ] }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "encounter" : { - "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b" + "encounter": { + "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93" }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716964508631993000.ebf1036e-3148-41a1-83a1-f39bd5b619c4" + "reference": "Organization/1732561495196528000.0e1ebc61-379f-405c-bb3f-c72c8286ab34" }, { - "reference" : "Organization/1716964508633221000.beeaced3-a497-4d69-942e-cd0847fb051a" + "reference": "Organization/1732561495198058000.67d30dac-7919-466e-be90-26a187040fa9" } ], - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "code" : "260415000", - "display" : "Not detected" + "system": "http://snomed.info/sct", + "code": "260415000", + "display": "Not detected" } ] }, - "interpretation" : [ + "interpretation": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" } ], - "version" : "2.7", - "code" : "N", - "display" : "Normal" + "version": "2.7", + "code": "N", + "display": "Normal" } ] } ], - "method" : { - "coding" : [ + "method": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" } ], - "text" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" + "text": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" } } }, { - "fullUrl" : "Organization/1716964508631993000.ebf1036e-3148-41a1-83a1-f39bd5b619c4", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508631993000.ebf1036e-3148-41a1-83a1-f39bd5b619c4", - "extension" : [ + "fullUrl": "Organization/1732561495196528000.0e1ebc61-379f-405c-bb3f-c72c8286ab34", + "resource": { + "resourceType": "Organization", + "id": "1732561495196528000.0e1ebc61-379f-405c-bb3f-c72c8286ab34", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "CLIA" } ], - "code" : "11D1111111", - "display" : "CSV uploads" + "code": "11D1111111", + "display": "CSV uploads" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" } ], - "identifier" : [ + "identifier": [ { - "system" : "CLIA", - "value" : "11D1111111" + "system": "CLIA", + "value": "11D1111111" } ], - "name" : "CSV uploads" + "name": "CSV uploads" } }, { - "fullUrl" : "Organization/1716964508633221000.beeaced3-a497-4d69-942e-cd0847fb051a", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508633221000.beeaced3-a497-4d69-942e-cd0847fb051a", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561495198058000.67d30dac-7919-466e-be90-26a187040fa9", + "resource": { + "resourceType": "Organization", + "id": "1732561495198058000.67d30dac-7919-466e-be90-26a187040fa9", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "11D1111111" + "url": "XON.10", + "valueString": "11D1111111" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.25" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.25" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CLIA" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.7" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.7" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "11D1111111" + "value": "11D1111111" } ], - "name" : "CSV uploads-11D1111111", - "address" : [ + "name": "CSV uploads-11D1111111", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "123 Main St" + "url": "SAD.1", + "valueString": "123 Main St" } ] } ] } ], - "line" : [ + "line": [ "123 Main St" ], - "state" : "CA", - "postalCode" : "94553", - "country" : "USA" + "state": "CA", + "postalCode": "94553", + "country": "USA" } ] } }, { - "fullUrl" : "Observation/1716964508635829000.e4a4423f-0207-4819-806b-cb71f7b50135", - "resource" : { - "resourceType" : "Observation", - "id" : "1716964508635829000.e4a4423f-0207-4819-806b-cb71f7b50135", - "extension" : [ + "fullUrl": "Observation/1732561495201232000.cabdc58f-4c37-4a9a-8bd8-b01acd306e21", + "resource": { + "resourceType": "Observation", + "id": "1732561495201232000.cabdc58f-4c37-4a9a-8bd8-b01acd306e21", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "OBX.11", + "valueString": "F" }, { - "url" : "OBX.17", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBX.17", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" } ], - "text" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" + "text": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" } } ] } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "code" : "80382-5", - "display" : "Flu A" + "system": "http://loinc.org", + "code": "80382-5", + "display": "Flu A" } ] }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "encounter" : { - "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b" + "encounter": { + "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93" }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716964508636218000.3d71002a-36da-4415-b409-018b6428b8b1" + "reference": "Organization/1732561495201675000.cc44f588-cffd-4aa9-93de-b75d763ebfef" }, { - "reference" : "Organization/1716964508637324000.ff755a89-0a55-41f7-89f3-6439917531d8" + "reference": "Organization/1732561495203033000.f1660950-6ae9-49a6-98d0-0cf58b609fb1" } ], - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "code" : "260373001", - "display" : "Detected" + "system": "http://snomed.info/sct", + "code": "260373001", + "display": "Detected" } ] }, - "interpretation" : [ + "interpretation": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70078" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70078" } ], - "version" : "2.7", - "code" : "A", - "display" : "Abnormal" + "version": "2.7", + "code": "A", + "display": "Abnormal" } ] } ], - "method" : { - "coding" : [ + "method": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" + "display": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" } ], - "text" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" + "text": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*" } } }, { - "fullUrl" : "Organization/1716964508636218000.3d71002a-36da-4415-b409-018b6428b8b1", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508636218000.3d71002a-36da-4415-b409-018b6428b8b1", - "extension" : [ + "fullUrl": "Organization/1732561495201675000.cc44f588-cffd-4aa9-93de-b75d763ebfef", + "resource": { + "resourceType": "Organization", + "id": "1732561495201675000.cc44f588-cffd-4aa9-93de-b75d763ebfef", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "CLIA" } ], - "code" : "11D1111111", - "display" : "CSV uploads" + "code": "11D1111111", + "display": "CSV uploads" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" } ], - "identifier" : [ + "identifier": [ { - "system" : "CLIA", - "value" : "11D1111111" + "system": "CLIA", + "value": "11D1111111" } ], - "name" : "CSV uploads" + "name": "CSV uploads" } }, { - "fullUrl" : "Organization/1716964508637324000.ff755a89-0a55-41f7-89f3-6439917531d8", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508637324000.ff755a89-0a55-41f7-89f3-6439917531d8", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561495203033000.f1660950-6ae9-49a6-98d0-0cf58b609fb1", + "resource": { + "resourceType": "Organization", + "id": "1732561495203033000.f1660950-6ae9-49a6-98d0-0cf58b609fb1", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "11D1111111" + "url": "XON.10", + "valueString": "11D1111111" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.25" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.25" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CLIA" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.7" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.7" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "11D1111111" + "value": "11D1111111" } ], - "name" : "CSV uploads-11D1111111", - "address" : [ + "name": "CSV uploads-11D1111111", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "123 Main St" + "url": "SAD.1", + "valueString": "123 Main St" } ] } ] } ], - "line" : [ + "line": [ "123 Main St" ], - "state" : "CA", - "postalCode" : "94553", - "country" : "USA" + "state": "CA", + "postalCode": "94553", + "country": "USA" } ] } }, { - "fullUrl" : "Observation/1716964508639525000.f3377425-a394-409f-baef-4a8f3ee84b4e", - "resource" : { - "resourceType" : "Observation", - "id" : "1716964508639525000.f3377425-a394-409f-baef-4a8f3ee84b4e", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", - "valueString" : "ZZYGNAUM-1" + "fullUrl": "Observation/1732561495205699000.fa28fd1c-60ba-4d5e-ad57-775d47225391", + "resource": { + "resourceType": "Observation", + "id": "1732561495205699000.fa28fd1c-60ba-4d5e-ad57-775d47225391", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", + "valueString": "ZZYGNAUM-1" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2023-07-27T18:30:17-04:00", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2023-07-27T18:30:17-04:00", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230727183017-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230727183017-0400" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "CWE" + "url": "OBX.2", + "valueId": "CWE" }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "OBX.11", + "valueString": "F" } ] } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "100383-9", - "display" : "MVPX DNA Spec Ql NAA+probe" + "system": "http://loinc.org", + "version": "2.74", + "code": "100383-9", + "display": "MVPX DNA Spec Ql NAA+probe" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "v_unknown", - "code" : "3900", - "display" : "Monkeypox generic" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "v_unknown", + "code": "3900", + "display": "Monkeypox generic" } ], - "text" : "Monkeypox generic" + "text": "Monkeypox generic" }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "encounter" : { - "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b" + "encounter": { + "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93" }, - "effectiveDateTime" : "2023-07-24T15:24:00Z", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-07-24T15:24:00Z", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716964508640057000.32865fbe-c542-4fb9-b7e7-4677c34709f6" + "reference": "Organization/1732561495206183000.e11012d4-8e59-43c0-8e60-f49c34053b03" }, { - "reference" : "PractitionerRole/1716964508640316000.a30ce1c7-ca7a-4a2d-bcb9-e3e49da15c01" + "reference": "PractitionerRole/1732561495206465000.18e4c576-11b1-437d-b882-89f3e7079b9e" }, { - "reference" : "Organization/1716964508642118000.53c3cabc-195c-446b-9c4a-5e5efbbecb3c" + "reference": "Organization/1732561495208894000.ca39680e-ae79-4357-9057-b516a5cbaf82" } ], - "valueCodeableConcept" : { - "coding" : [ + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012018", - "code" : "10828004", - "display" : "Positive" + "system": "http://snomed.info/sct", + "version": "09012018", + "code": "10828004", + "display": "Positive" } ], - "text" : "Positive" + "text": "Positive" }, - "note" : [ + "note": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ { - "url" : "NTE.2", - "valueId" : "L" + "url": "NTE.2", + "valueId": "L" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Run level Comment" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Run level Comment" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.12.364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.12.364" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" + "version": "2.5.1", + "code": "RE", + "display": "Remark" } ] } } ], - "text" : "Run level Comment" + "text": "Run level Comment" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ { - "url" : "NTE.2", - "valueId" : "L" + "url": "NTE.2", + "valueId": "L" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Result level Comment." + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Result level Comment." }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.12.364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.12.364" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" + "version": "2.5.1", + "code": "RE", + "display": "Remark" } ] } } ], - "text" : "Result level Comment." + "text": "Result level Comment." } ] } }, { - "fullUrl" : "Organization/1716964508640057000.32865fbe-c542-4fb9-b7e7-4677c34709f6", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508640057000.32865fbe-c542-4fb9-b7e7-4677c34709f6", - "extension" : [ + "fullUrl": "Organization/1732561495206183000.e11012d4-8e59-43c0-8e60-f49c34053b03", + "resource": { + "resourceType": "Organization", + "id": "1732561495206183000.e11012d4-8e59-43c0-8e60-f49c34053b03", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "CLIA" } ], - "code" : "11D0668319", - "display" : "Centers for Disease Control and Prevention" + "code": "11D0668319", + "display": "Centers for Disease Control and Prevention" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "47", - "display" : "Poxvirus Laboratory/Poxvirus and Rabies Branch" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "47", + "display": "Poxvirus Laboratory/Poxvirus and Rabies Branch" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" } ], - "identifier" : [ + "identifier": [ { - "system" : "CLIA", - "value" : "11D0668319" + "system": "CLIA", + "value": "11D0668319" } ], - "name" : "Centers for Disease Control and Prevention" + "name": "Centers for Disease Control and Prevention" } }, { - "fullUrl" : "Practitioner/1716964508640783000.25e8523f-2de1-408f-a0e2-53ff17b2f8b5", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716964508640783000.25e8523f-2de1-408f-a0e2-53ff17b2f8b5", - "extension" : [ + "fullUrl": "Practitioner/1732561495207374000.107f3424-80ca-43b9-a2c7-253b5a1a67bd", + "resource": { + "resourceType": "Practitioner", + "id": "1732561495207374000.107f3424-80ca-43b9-a2c7-253b5a1a67bd", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ { - "url" : "XCN.3", - "valueString" : "Christopher" + "url": "XCN.3", + "valueString": "Christopher" } ] } ], - "identifier" : [ + "identifier": [ { - "value" : "NXQ0@cdc.gov" + "value": "NXQ0@cdc.gov" } ], - "name" : [ + "name": [ { - "family" : "Anderson", - "given" : [ + "family": "Anderson", + "given": [ "Christopher" ] } @@ -3811,19 +3811,19 @@ } }, { - "fullUrl" : "PractitionerRole/1716964508640316000.a30ce1c7-ca7a-4a2d-bcb9-e3e49da15c01", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716964508640316000.a30ce1c7-ca7a-4a2d-bcb9-e3e49da15c01", - "practitioner" : { - "reference" : "Practitioner/1716964508640783000.25e8523f-2de1-408f-a0e2-53ff17b2f8b5" + "fullUrl": "PractitionerRole/1732561495206465000.18e4c576-11b1-437d-b882-89f3e7079b9e", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732561495206465000.18e4c576-11b1-437d-b882-89f3e7079b9e", + "practitioner": { + "reference": "Practitioner/1732561495207374000.107f3424-80ca-43b9-a2c7-253b5a1a67bd" }, - "code" : [ + "code": [ { - "coding" : [ + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/practitioner-role", - "code" : "responsibleObserver" + "system": "http://terminology.hl7.org/CodeSystem/practitioner-role", + "code": "responsibleObserver" } ] } @@ -3831,140 +3831,140 @@ } }, { - "fullUrl" : "Organization/1716964508642118000.53c3cabc-195c-446b-9c4a-5e5efbbecb3c", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508642118000.53c3cabc-195c-446b-9c4a-5e5efbbecb3c", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561495208894000.ca39680e-ae79-4357-9057-b516a5cbaf82", + "resource": { + "resourceType": "Organization", + "id": "1732561495208894000.ca39680e-ae79-4357-9057-b516a5cbaf82", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "11D0668319" + "url": "XON.10", + "valueString": "11D0668319" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.25" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.25" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CLIA" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.7" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.7" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "11D0668319" + "value": "11D0668319" } ], - "name" : "Centers for Disease Control and Prevention", - "address" : [ + "name": "Centers for Disease Control and Prevention", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1600 Clifton Rd" + "url": "SAD.1", + "valueString": "1600 Clifton Rd" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ + "use": "work", + "line": [ "1600 Clifton Rd" ], - "city" : "Atlanta", - "state" : "GA", - "postalCode" : "30329", - "country" : "USA" + "city": "Atlanta", + "state": "GA", + "postalCode": "30329", + "country": "USA" } ] } }, { - "fullUrl" : "Specimen/1716964508647637000.6eadc376-dc88-400f-9d9b-bb526ac9163e", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716964508647637000.6eadc376-dc88-400f-9d9b-bb526ac9163e", - "extension" : [ + "fullUrl": "Specimen/1732561495214950000.983ffe77-d5f0-440e-aef2-85e4cc7eadb7", + "resource": { + "resourceType": "Specimen", + "id": "1732561495214950000.983ffe77-d5f0-440e-aef2-85e4cc7eadb7", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" } ], - "collection" : { - "collectedDateTime" : "2023-07-24T15:24:00Z", - "_collectedDateTime" : { - "extension" : [ + "collection": { + "collectedDateTime": "2023-07-24T15:24:00Z", + "_collectedDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] } @@ -3972,23 +3972,23 @@ } }, { - "fullUrl" : "Specimen/1716964508648050000.2f07d10d-dfab-4ff2-a196-a26744010625", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716964508648050000.2f07d10d-dfab-4ff2-a196-a26744010625", - "extension" : [ + "fullUrl": "Specimen/1732561495215922000.48cbec21-c45e-434c-98ef-56ac980cd579", + "resource": { + "resourceType": "Specimen", + "id": "1732561495215922000.48cbec21-c45e-434c-98ef-56ac980cd579", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" } ], - "collection" : { - "collectedDateTime" : "2023-07-24T15:24:00Z", - "_collectedDateTime" : { - "extension" : [ + "collection": { + "collectedDateTime": "2023-07-24T15:24:00Z", + "_collectedDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] } @@ -3996,2970 +3996,2970 @@ } }, { - "fullUrl" : "Specimen/1716964508651702000.25599d2e-5340-4b50-9816-134c52fa0863", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716964508651702000.25599d2e-5340-4b50-9816-134c52fa0863", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" + "fullUrl": "Specimen/1732561495221509000.7c264a72-7ed9-400f-9708-e57e02eef961", + "resource": { + "resourceType": "Specimen", + "id": "1732561495221509000.7c264a72-7ed9-400f-9708-e57e02eef961", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "SPM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", + "extension": [ { - "url" : "SPM.5", - "valueCodeableConcept" : { - "coding" : [ + "url": "SPM.5", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "255251009", - "display" : "Acute phase" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "255251009", + "display": "Acute phase" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "A", - "display" : "Acute" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "A", + "display": "Acute" } ], - "text" : "Acute" + "text": "Acute" } }, { - "url" : "SPM.6", - "valueCodeableConcept" : { - "coding" : [ + "url": "SPM.6", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "69519002", - "display" : "Ethylenediaminetetraacetic acid" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "69519002", + "display": "Ethylenediaminetetraacetic acid" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "EDT", - "display" : "Ethylenediaminetetraacetic acid (EDTA)" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "EDT", + "display": "Ethylenediaminetetraacetic acid (EDTA)" } ], - "text" : "Ethylenediaminetetraacetic acid (EDTA)" + "text": "Ethylenediaminetetraacetic acid (EDTA)" } } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "3015894743" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "3015894743" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.1" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "Specimen123" + "value": "Specimen123" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "Specimen123" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "Specimen123" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.2" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } ] }, - "value" : "3015894743" + "value": "3015894743" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "0912017", - "code" : "119297000", - "display" : "Blood specimen" + "system": "http://snomed.info/sct", + "version": "0912017", + "code": "119297000", + "display": "Blood specimen" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "BLD", - "display" : "Blood" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "BLD", + "display": "Blood" } ], - "text" : "Blood" + "text": "Blood" }, - "receivedTime" : "2023-07-27T17:52:20Z", - "_receivedTime" : { - "extension" : [ + "receivedTime": "2023-07-27T17:52:20Z", + "_receivedTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230727175220" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230727175220" } ] }, - "collection" : { - "extension" : [ + "collection": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "7771000", - "display" : "Left" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "7771000", + "display": "Left" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "LFT", - "display" : "Left" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "LFT", + "display": "Left" } ], - "text" : "Left" + "text": "Left" } } ], - "collectedDateTime" : "2023-07-24T15:24:00Z", - "_collectedDateTime" : { - "extension" : [ + "collectedDateTime": "2023-07-24T15:24:00Z", + "_collectedDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] }, - "method" : { - "coding" : [ + "method": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "62931000284108", - "display" : "Vacuum" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "62931000284108", + "display": "Vacuum" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "VC", - "display" : "Vacuum" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "VC", + "display": "Vacuum" } ], - "text" : "Vacuum" + "text": "Vacuum" }, - "bodySite" : { - "coding" : [ + "bodySite": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "53120007", - "display" : "Arm" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "53120007", + "display": "Arm" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "ARM", - "display" : "Arm" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "ARM", + "display": "Arm" } ], - "text" : "Arm" + "text": "Arm" } }, - "container" : [ + "container": [ { - "additiveCodeableConcept" : { - "coding" : [ + "additiveCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "69519002", - "display" : "Ethylenediaminetetraacetic acid" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "69519002", + "display": "Ethylenediaminetetraacetic acid" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "EDT", - "display" : "Ethylenediaminetetraacetic acid (EDTA)" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "EDT", + "display": "Ethylenediaminetetraacetic acid (EDTA)" } ], - "text" : "Ethylenediaminetetraacetic acid (EDTA)" + "text": "Ethylenediaminetetraacetic acid (EDTA)" } } ], - "condition" : [ + "condition": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "59102007", - "display" : "Ice pack" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "59102007", + "display": "Ice pack" } ], - "text" : "Cold (Ice Pack)" + "text": "Cold (Ice Pack)" } ], - "note" : [ + "note": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "SPM.14" } ], - "text" : ", Elution" + "text": ", Elution" } ] } }, { - "fullUrl" : "Specimen/1716964508654907000.54a3e767-9a07-4fc3-ba4c-abf9d580a5bb", - "resource" : { - "resourceType" : "Specimen", - "id" : "1716964508654907000.54a3e767-9a07-4fc3-ba4c-abf9d580a5bb", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "SPM" + "fullUrl": "Specimen/1732561495225426000.98b00d14-b67b-4efd-84dc-184085a9981f", + "resource": { + "resourceType": "Specimen", + "id": "1732561495225426000.98b00d14-b67b-4efd-84dc-184085a9981f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "SPM" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen", + "extension": [ { - "url" : "SPM.5", - "valueCodeableConcept" : { - "coding" : [ + "url": "SPM.5", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "255251009", - "display" : "Acute phase" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "255251009", + "display": "Acute phase" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "A", - "display" : "Acute" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "A", + "display": "Acute" } ], - "text" : "Acute" + "text": "Acute" } }, { - "url" : "SPM.6", - "valueCodeableConcept" : { - "coding" : [ + "url": "SPM.6", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "69519002", - "display" : "Ethylenediaminetetraacetic acid" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "69519002", + "display": "Ethylenediaminetetraacetic acid" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "EDT", - "display" : "Ethylenediaminetetraacetic acid (EDTA)" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "EDT", + "display": "Ethylenediaminetetraacetic acid (EDTA)" } ], - "text" : "Ethylenediaminetetraacetic acid (EDTA)" + "text": "Ethylenediaminetetraacetic acid (EDTA)" } } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "3015894743" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "3015894743" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.1" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PGN" } ] }, - "value" : "Specimen123" + "value": "Specimen123" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", - "valueString" : "Specimen123" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier", + "valueString": "Specimen123" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", - "valueString" : "SPM.2.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component", + "valueString": "SPM.2.2" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FGN" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FGN" } ] }, - "value" : "3015894743" + "value": "3015894743" } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "0912017", - "code" : "119297000", - "display" : "Blood specimen" + "system": "http://snomed.info/sct", + "version": "0912017", + "code": "119297000", + "display": "Blood specimen" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "BLD", - "display" : "Blood" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "BLD", + "display": "Blood" } ], - "text" : "Blood" + "text": "Blood" }, - "receivedTime" : "2023-07-27T17:52:20Z", - "_receivedTime" : { - "extension" : [ + "receivedTime": "2023-07-27T17:52:20Z", + "_receivedTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230727175220" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230727175220" } ] }, - "collection" : { - "extension" : [ + "collection": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "7771000", - "display" : "Left" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "7771000", + "display": "Left" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "LFT", - "display" : "Left" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "LFT", + "display": "Left" } ], - "text" : "Left" + "text": "Left" } } ], - "collectedDateTime" : "2023-07-24T15:24:00Z", - "_collectedDateTime" : { - "extension" : [ + "collectedDateTime": "2023-07-24T15:24:00Z", + "_collectedDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] }, - "method" : { - "coding" : [ + "method": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "62931000284108", - "display" : "Vacuum" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "62931000284108", + "display": "Vacuum" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "VC", - "display" : "Vacuum" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "VC", + "display": "Vacuum" } ], - "text" : "Vacuum" + "text": "Vacuum" }, - "bodySite" : { - "coding" : [ + "bodySite": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "53120007", - "display" : "Arm" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "53120007", + "display": "Arm" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "ARM", - "display" : "Arm" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "ARM", + "display": "Arm" } ], - "text" : "Arm" + "text": "Arm" } }, - "container" : [ + "container": [ { - "additiveCodeableConcept" : { - "coding" : [ + "additiveCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "69519002", - "display" : "Ethylenediaminetetraacetic acid" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "69519002", + "display": "Ethylenediaminetetraacetic acid" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "Adobe_Code", - "code" : "EDT", - "display" : "Ethylenediaminetetraacetic acid (EDTA)" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "Adobe_Code", + "code": "EDT", + "display": "Ethylenediaminetetraacetic acid (EDTA)" } ], - "text" : "Ethylenediaminetetraacetic acid (EDTA)" + "text": "Ethylenediaminetetraacetic acid (EDTA)" } } ], - "condition" : [ + "condition": [ { - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "SCT" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "SCT" } ], - "system" : "http://snomed.info/sct", - "version" : "09012017", - "code" : "59102007", - "display" : "Ice pack" + "system": "http://snomed.info/sct", + "version": "09012017", + "code": "59102007", + "display": "Ice pack" } ], - "text" : "Cold (Ice Pack)" + "text": "Cold (Ice Pack)" } ], - "note" : [ + "note": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "SPM.14" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "SPM.14" } ], - "text" : ", Elution" + "text": ", Elution" } ] } }, { - "fullUrl" : "Observation/1716964508657874000.d98eff5e-789c-46d4-912d-d79b99a279e3", - "resource" : { - "resourceType" : "Observation", - "id" : "1716964508657874000.d98eff5e-789c-46d4-912d-d79b99a279e3", - "extension" : [ + "fullUrl": "Observation/1732561495228478000.39417ef7-1947-422a-a54e-4e10e700e3b3", + "resource": { + "resourceType": "Observation", + "id": "1732561495228478000.39417ef7-1947-422a-a54e-4e10e700e3b3", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2023-07-27T18:30:17Z", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2023-07-27T18:30:17Z", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230727183017" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230727183017" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", + "extension": [ { - "url" : "SN.2", - "valueString" : "28" + "url": "SN.2", + "valueString": "28" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "SN" + "url": "OBX.2", + "valueId": "SN" }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" } ], - "system" : "http://unitsofmeasure.org", - "version" : "2.1", - "code" : "a", - "display" : "Year" + "system": "http://unitsofmeasure.org", + "version": "2.1", + "code": "a", + "display": "Year" } ] } }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "OBX.11", + "valueString": "F" } ] } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.61", - "code" : "21612-7", - "display" : "Reported Patient Age!!!" + "system": "http://loinc.org", + "version": "2.61", + "code": "21612-7", + "display": "Reported Patient Age!!!" } ] }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "focus" : [ + "focus": [ { - "reference" : "Specimen/1716964508651702000.25599d2e-5340-4b50-9816-134c52fa0863" + "reference": "Specimen/1732561495221509000.7c264a72-7ed9-400f-9708-e57e02eef961" } ], - "encounter" : { - "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b" + "encounter": { + "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93" }, - "effectiveDateTime" : "2023-07-24T15:24:00Z", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-07-24T15:24:00Z", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716964508658339000.31fcb669-3493-4fde-9822-7fb431d0cf3b" + "reference": "Organization/1732561495228915000.4ddc88c5-ca99-4d63-8658-28982d1e0a6d" }, { - "reference" : "Organization/1716964508659756000.c20e1744-8b0c-494c-8600-adb86a5030aa" + "reference": "Organization/1732561495230257000.d3376e68-a110-4922-ae4c-0f2695feee71" } ] } }, { - "fullUrl" : "Organization/1716964508658339000.31fcb669-3493-4fde-9822-7fb431d0cf3b", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508658339000.31fcb669-3493-4fde-9822-7fb431d0cf3b", - "extension" : [ + "fullUrl": "Organization/1732561495228915000.4ddc88c5-ca99-4d63-8658-28982d1e0a6d", + "resource": { + "resourceType": "Organization", + "id": "1732561495228915000.4ddc88c5-ca99-4d63-8658-28982d1e0a6d", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "CLIA" } ], - "code" : "11D0668319", - "display" : "Centers for Disease Control and Prevention" + "code": "11D0668319", + "display": "Centers for Disease Control and Prevention" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" } ], - "identifier" : [ + "identifier": [ { - "system" : "CLIA", - "value" : "11D0668319" + "system": "CLIA", + "value": "11D0668319" } ], - "name" : "Centers for Disease Control and Prevention" + "name": "Centers for Disease Control and Prevention" } }, { - "fullUrl" : "Organization/1716964508659756000.c20e1744-8b0c-494c-8600-adb86a5030aa", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508659756000.c20e1744-8b0c-494c-8600-adb86a5030aa", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561495230257000.d3376e68-a110-4922-ae4c-0f2695feee71", + "resource": { + "resourceType": "Organization", + "id": "1732561495230257000.d3376e68-a110-4922-ae4c-0f2695feee71", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "11D0668319" + "url": "XON.10", + "valueString": "11D0668319" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.25" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.25" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CLIA" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.7" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.7" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "11D0668319" + "value": "11D0668319" } ], - "name" : "Centers for Disease Control and Prevention", - "address" : [ + "name": "Centers for Disease Control and Prevention", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1600 Clifton Road" + "url": "SAD.1", + "valueString": "1600 Clifton Road" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ + "use": "work", + "line": [ "1600 Clifton Road" ], - "city" : "Atlanta", - "state" : "GA", - "postalCode" : "30329", - "country" : "USA" + "city": "Atlanta", + "state": "GA", + "postalCode": "30329", + "country": "USA" } ] } }, { - "fullUrl" : "Observation/1716964508661898000.d0cf510f-22cb-4e80-a098-e1e29beeaf99", - "resource" : { - "resourceType" : "Observation", - "id" : "1716964508661898000.d0cf510f-22cb-4e80-a098-e1e29beeaf99", - "extension" : [ + "fullUrl": "Observation/1732561495232441000.435f08c3-52ed-4088-973d-af0d6802be7f", + "resource": { + "resourceType": "Observation", + "id": "1732561495232441000.435f08c3-52ed-4088-973d-af0d6802be7f", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", - "valueDateTime" : "2023-07-27T18:30:17Z", - "_valueDateTime" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time", + "valueDateTime": "2023-07-27T18:30:17Z", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "20230727183017" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230727183017" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn", + "extension": [ { - "url" : "SN.2", - "valueString" : "28" + "url": "SN.2", + "valueString": "28" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation", + "extension": [ { - "url" : "OBX.2", - "valueId" : "SN" + "url": "OBX.2", + "valueId": "SN" }, { - "url" : "OBX.6", - "valueCodeableConcept" : { - "coding" : [ + "url": "OBX.6", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "UCUM" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "UCUM" } ], - "system" : "http://unitsofmeasure.org", - "version" : "2.1", - "code" : "a", - "display" : "Year" + "system": "http://unitsofmeasure.org", + "version": "2.1", + "code": "a", + "display": "Year" } ] } }, { - "url" : "OBX.11", - "valueString" : "F" + "url": "OBX.11", + "valueString": "F" } ] } ], - "status" : "final", - "code" : { - "coding" : [ + "status": "final", + "code": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.61", - "code" : "21612-7", - "display" : "Reported Patient Age???" + "system": "http://loinc.org", + "version": "2.61", + "code": "21612-7", + "display": "Reported Patient Age???" } ] }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "focus" : [ + "focus": [ { - "reference" : "Specimen/1716964508654907000.54a3e767-9a07-4fc3-ba4c-abf9d580a5bb" + "reference": "Specimen/1732561495225426000.98b00d14-b67b-4efd-84dc-184085a9981f" } ], - "encounter" : { - "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b" + "encounter": { + "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93" }, - "effectiveDateTime" : "2023-07-24T15:24:00Z", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-07-24T15:24:00Z", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] }, - "performer" : [ + "performer": [ { - "reference" : "Organization/1716964508662344000.631a44f0-8c23-4dc8-82c2-3fb5658927a1" + "reference": "Organization/1732561495232873000.a9fff423-2971-471f-b076-727d3ecc100c" }, { - "reference" : "Organization/1716964508663638000.2b679a76-9f0d-48d6-b5d3-075e5712b000" + "reference": "Organization/1732561495234107000.b7c09af0-dc41-4a7a-9aa4-27e399e895ac" } ] } }, { - "fullUrl" : "Organization/1716964508662344000.631a44f0-8c23-4dc8-82c2-3fb5658927a1", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508662344000.631a44f0-8c23-4dc8-82c2-3fb5658927a1", - "extension" : [ + "fullUrl": "Organization/1732561495232873000.a9fff423-2971-471f-b076-727d3ecc100c", + "resource": { + "resourceType": "Organization", + "id": "1732561495232873000.a9fff423-2971-471f-b076-727d3ecc100c", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", - "valueCodeableConcept" : { - "coding" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", + "valueCodeableConcept": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "CLIA" } ], - "code" : "11D0668319", - "display" : "Centers for Disease Control and Prevention" + "code": "11D0668319", + "display": "Centers for Disease Control and Prevention" } ] } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.15" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.15" } ], - "identifier" : [ + "identifier": [ { - "system" : "CLIA", - "value" : "11D0668319" + "system": "CLIA", + "value": "11D0668319" } ], - "name" : "Centers for Disease Control and Prevention" + "name": "Centers for Disease Control and Prevention" } }, { - "fullUrl" : "Organization/1716964508663638000.2b679a76-9f0d-48d6-b5d3-075e5712b000", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508663638000.2b679a76-9f0d-48d6-b5d3-075e5712b000", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561495234107000.b7c09af0-dc41-4a7a-9aa4-27e399e895ac", + "resource": { + "resourceType": "Organization", + "id": "1732561495234107000.b7c09af0-dc41-4a7a-9aa4-27e399e895ac", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "L" + "code": "L" } ] } } ], - "code" : "L" + "code": "L" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "11D0668319" + "url": "XON.10", + "valueString": "11D0668319" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBX.25" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBX.25" } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "CLIA" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "CLIA" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.7" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.7" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "11D0668319" + "value": "11D0668319" } ], - "name" : "Centers for Disease Control and Prevention", - "address" : [ + "name": "Centers for Disease Control and Prevention", + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "1600 Clifton Road" + "url": "SAD.1", + "valueString": "1600 Clifton Road" } ] }, { - "url" : "XAD.7", - "valueCode" : "B" + "url": "XAD.7", + "valueCode": "B" } ] } ], - "use" : "work", - "line" : [ + "use": "work", + "line": [ "1600 Clifton Road" ], - "city" : "Atlanta", - "state" : "GA", - "postalCode" : "30329", - "country" : "USA" + "city": "Atlanta", + "state": "GA", + "postalCode": "30329", + "country": "USA" } ] } }, { - "fullUrl" : "ServiceRequest/1716964508676312000.d16e1225-9ac2-4ad0-8ebe-15604f5ba258", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1716964508676312000.d16e1225-9ac2-4ad0-8ebe-15604f5ba258", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueCode" : "RE" + "fullUrl": "ServiceRequest/1732561495249322000.843ab69f-30f0-4c15-ad07-fb607dacba88", + "resource": { + "resourceType": "ServiceRequest", + "id": "1732561495249322000.843ab69f-30f0-4c15-ad07-fb607dacba88", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueCode": "RE" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", - "valueString" : "20230725" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", + "valueString": "20230725" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order", + "extension": [ { - "url" : "orc-21-ordering-facility-name", - "valueReference" : { - "reference" : "Organization/1716964508672313000.52c353f6-f465-4713-927f-1adbee0436ae" + "url": "orc-21-ordering-facility-name", + "valueReference": { + "reference": "Organization/1732561495243518000.2c117b29-8773-42e0-a0b6-d4ac6c623a46" } }, { - "url" : "orc-22-ordering-facility-address", - "valueAddress" : { - "extension" : [ + "url": "orc-22-ordering-facility-address", + "valueAddress": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "850 Marina Bay Parkway" + "url": "SAD.1", + "valueString": "850 Marina Bay Parkway" } ] }, { - "url" : "XAD.2", - "valueString" : "Rm. E-361" + "url": "XAD.2", + "valueString": "Rm. E-361" }, { - "url" : "XAD.7", - "valueCode" : "M" + "url": "XAD.7", + "valueCode": "M" } ] } ], - "type" : "postal", - "line" : [ + "type": "postal", + "line": [ "850 Marina Bay Parkway", "Rm. E-361" ], - "city" : "Richmond", - "state" : "CA", - "postalCode" : "94804", - "country" : "USA" + "city": "Richmond", + "state": "CA", + "postalCode": "94804", + "country": "USA" } }, { - "url" : "orc-24-ordering-provider-address", - "valueAddress" : { - "extension" : [ + "url": "orc-24-ordering-provider-address", + "valueAddress": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "11475 C Avenue" + "url": "SAD.1", + "valueString": "11475 C Avenue" } ] }, { - "url" : "XAD.7", - "valueCode" : "M" + "url": "XAD.7", + "valueCode": "M" } ] } ], - "type" : "postal", - "line" : [ + "type": "postal", + "line": [ "11475 C Avenue" ], - "city" : "Auburn", - "state" : "CA", - "postalCode" : "95603", - "country" : "USA" + "city": "Auburn", + "state": "CA", + "postalCode": "95603", + "country": "USA" } }, { - "url" : "orc-12-ordering-provider", - "valueReference" : { - "reference" : "Practitioner/1716964508673966000.9a6e776f-bb15-4095-a90d-6370506d69e0" + "url": "orc-12-ordering-provider", + "valueReference": { + "reference": "Practitioner/1732561495245581000.aea73b44-a9b0-40f0-8422-5361e59333b0" } } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ { - "url" : "OBR.2", - "valueIdentifier" : { - "extension" : [ + "url": "OBR.2", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "Specimen123" + "value": "Specimen123" } }, { - "url" : "OBR.3", - "valueIdentifier" : { - "extension" : [ + "url": "OBR.3", + "valueIdentifier": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "value" : "3015894743_04608717" + "value": "3015894743_04608717" } }, { - "url" : "OBR.22", - "valueString" : "202308021808-0400" - }, - { - "url" : "OBR.25", - "valueId" : "F" - }, - { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1716964508675184000.0c77c8ea-9ac9-4e91-8456-a42f0aee7900" + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1732561495246974000.6ed9d709-bb8d-48fa-aa5a-f16f1bb7845e" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "NET" + "url": "XTN.2", + "valueString": "NET" }, { - "url" : "XTN.3", - "valueString" : "Internet" + "url": "XTN.3", + "valueString": "Internet" }, { - "url" : "XTN.4", - "valueString" : "MWaKabon@placer.ca.gov" + "url": "XTN.4", + "valueString": "MWaKabon@placer.ca.gov" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" } ], - "system" : "email", - "value" : "MWaKabon@placer.ca.gov" + "system": "email", + "value": "MWaKabon@placer.ca.gov" } }, { - "url" : "OBR.7", - "valueDateTime" : "2023-07-24T15:24:00Z", - "_valueDateTime" : { - "extension" : [ + "url": "OBR.7", + "valueDateTime": "2023-07-24T15:24:00Z", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] } + }, + { + "url": "OBR.22", + "valueString": "202308021808-0400" + }, + { + "url": "OBR.25", + "valueId": "F" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Specimen123" + "value": "Specimen123" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.3" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "3015894743_04608717" + "value": "3015894743_04608717" } ], - "status" : "unknown", - "code" : { - "extension" : [ + "status": "unknown", + "code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.6.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.6.1" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "68991-9", - "display" : "Epidemiologically Important Information" + "system": "http://loinc.org", + "version": "2.74", + "code": "68991-9", + "display": "Epidemiologically Important Information" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "CDC-10515", - "display" : "Poxvirus Molecular Detection" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "CDC-10515", + "display": "Poxvirus Molecular Detection" } ] }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "requester" : { - "extension" : [ + "requester": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "NET" + "url": "XTN.2", + "valueString": "NET" }, { - "url" : "XTN.3", - "valueString" : "Internet" + "url": "XTN.3", + "valueString": "Internet" }, { - "url" : "XTN.4", - "valueString" : "MWaKabon@placer.ca.gov" + "url": "XTN.4", + "valueString": "MWaKabon@placer.ca.gov" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.14" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.14" } ], - "system" : "email", - "value" : "MWaKabon@placer.ca.gov" + "system": "email", + "value": "MWaKabon@placer.ca.gov" } } ], - "reference" : "PractitionerRole/1716964508666355000.2385875b-0e09-46cb-97c6-e12e133fb492" + "reference": "PractitionerRole/1732561495236905000.12164d53-32ed-48b8-9a7e-679a45a049bb" } } }, { - "fullUrl" : "Practitioner/1716964508667965000.d2be6436-7d78-4b46-b59f-3327595c1db1", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716964508667965000.d2be6436-7d78-4b46-b59f-3327595c1db1", - "extension" : [ + "fullUrl": "Practitioner/1732561495238490000.3fce0604-d1e4-49cb-95d1-d4c36af63de9", + "resource": { + "resourceType": "Practitioner", + "id": "1732561495238490000.3fce0604-d1e4-49cb-95d1-d4c36af63de9", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.12" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.12" } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "XX" + "code": "XX" } ] }, - "system" : "STARLIMS.CDC.Stag", - "value" : "SPHL-000098" + "system": "STARLIMS.CDC.Stag", + "value": "SPHL-000098" } ], - "name" : [ + "name": [ { - "family" : "CA-Placer County Public Health Laboratory" + "family": "CA-Placer County Public Health Laboratory" } ], - "address" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "11475 C Avenue" + "url": "SAD.1", + "valueString": "11475 C Avenue" } ] }, { - "url" : "XAD.7", - "valueCode" : "M" + "url": "XAD.7", + "valueCode": "M" } ] } ], - "type" : "postal", - "line" : [ + "type": "postal", + "line": [ "11475 C Avenue" ], - "city" : "Auburn", - "state" : "CA", - "postalCode" : "95603", - "country" : "USA" + "city": "Auburn", + "state": "CA", + "postalCode": "95603", + "country": "USA" } ] } }, { - "fullUrl" : "Organization/1716964508669674000.aec18007-634c-4583-b63a-80bba15c4fd1", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508669674000.aec18007-634c-4583-b63a-80bba15c4fd1", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561495240185000.e099b83c-b2f6-4baf-9142-aab9ca4efb9b", + "resource": { + "resourceType": "Organization", + "id": "1732561495240185000.e099b83c-b2f6-4baf-9142-aab9ca4efb9b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "D" + "code": "D" } ] } } ], - "code" : "D" + "code": "D" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "SPHL-000048" + "url": "XON.10", + "valueString": "SPHL-000048" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "SPHL-000048" + "value": "SPHL-000048" } ], - "name" : "CDPH, Viral and Rickettsial Disease Laboratory", - "telecom" : [ + "name": "CDPH, Viral and Rickettsial Disease Laboratory", + "telecom": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "WPN" + "url": "XTN.2", + "valueString": "WPN" }, { - "url" : "XTN.3", - "valueString" : "Internet" + "url": "XTN.3", + "valueString": "Internet" }, { - "url" : "XTN.4", - "valueString" : "VRDL.Mail@cdph.ca.gov" + "url": "XTN.4", + "valueString": "VRDL.Mail@cdph.ca.gov" } ] } ], - "system" : "email", - "value" : "VRDL.Mail@cdph.ca.gov", - "use" : "work" + "system": "email", + "value": "VRDL.Mail@cdph.ca.gov", + "use": "work" } ], - "address" : [ + "address": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ { - "url" : "SAD.1", - "valueString" : "850 Marina Bay Parkway" + "url": "SAD.1", + "valueString": "850 Marina Bay Parkway" } ] }, { - "url" : "XAD.2", - "valueString" : "Rm. E-361" + "url": "XAD.2", + "valueString": "Rm. E-361" }, { - "url" : "XAD.7", - "valueCode" : "M" + "url": "XAD.7", + "valueCode": "M" } ] } ], - "type" : "postal", - "line" : [ + "type": "postal", + "line": [ "850 Marina Bay Parkway", "Rm. E-361" ], - "city" : "Richmond", - "state" : "CA", - "postalCode" : "94804", - "country" : "USA" + "city": "Richmond", + "state": "CA", + "postalCode": "94804", + "country": "USA" } ] } }, { - "fullUrl" : "PractitionerRole/1716964508666355000.2385875b-0e09-46cb-97c6-e12e133fb492", - "resource" : { - "resourceType" : "PractitionerRole", - "id" : "1716964508666355000.2385875b-0e09-46cb-97c6-e12e133fb492", - "practitioner" : { - "reference" : "Practitioner/1716964508667965000.d2be6436-7d78-4b46-b59f-3327595c1db1" + "fullUrl": "PractitionerRole/1732561495236905000.12164d53-32ed-48b8-9a7e-679a45a049bb", + "resource": { + "resourceType": "PractitionerRole", + "id": "1732561495236905000.12164d53-32ed-48b8-9a7e-679a45a049bb", + "practitioner": { + "reference": "Practitioner/1732561495238490000.3fce0604-d1e4-49cb-95d1-d4c36af63de9" }, - "organization" : { - "reference" : "Organization/1716964508669674000.aec18007-634c-4583-b63a-80bba15c4fd1" + "organization": { + "reference": "Organization/1732561495240185000.e099b83c-b2f6-4baf-9142-aab9ca4efb9b" } } }, { - "fullUrl" : "Organization/1716964508672313000.52c353f6-f465-4713-927f-1adbee0436ae", - "resource" : { - "resourceType" : "Organization", - "id" : "1716964508672313000.52c353f6-f465-4713-927f-1adbee0436ae", - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ - { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ + "fullUrl": "Organization/1732561495243518000.2c117b29-8773-42e0-a0b6-d4ac6c623a46", + "resource": { + "resourceType": "Organization", + "id": "1732561495243518000.2c117b29-8773-42e0-a0b6-d4ac6c623a46", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" } ], - "code" : "D" + "code": "D" } ] } } ], - "code" : "D" + "code": "D" } }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ { - "url" : "XON.10", - "valueString" : "SPHL-000048" + "url": "XON.10", + "valueString": "SPHL-000048" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "XX" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "XX" } ] }, - "value" : "SPHL-000048" + "value": "SPHL-000048" } ], - "name" : "CDPH, Viral and Rickettsial Disease Laboratory" + "name": "CDPH, Viral and Rickettsial Disease Laboratory" } }, { - "fullUrl" : "Practitioner/1716964508673966000.9a6e776f-bb15-4095-a90d-6370506d69e0", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716964508673966000.9a6e776f-bb15-4095-a90d-6370506d69e0", - "extension" : [ + "fullUrl": "Practitioner/1732561495245581000.aea73b44-a9b0-40f0-8422-5361e59333b0", + "resource": { + "resourceType": "Practitioner", + "id": "1732561495245581000.aea73b44-a9b0-40f0-8422-5361e59333b0", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "XX" + "code": "XX" } ] }, - "system" : "STARLIMS.CDC.Stag", - "value" : "SPHL-000098" + "system": "STARLIMS.CDC.Stag", + "value": "SPHL-000098" } ], - "name" : [ + "name": [ { - "family" : "CA-Placer County Public Health Laboratory" + "family": "CA-Placer County Public Health Laboratory" } ] } }, { - "fullUrl" : "Practitioner/1716964508675184000.0c77c8ea-9ac9-4e91-8456-a42f0aee7900", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716964508675184000.0c77c8ea-9ac9-4e91-8456-a42f0aee7900", - "extension" : [ + "fullUrl": "Practitioner/1732561495246974000.6ed9d709-bb8d-48fa-aa5a-f16f1bb7845e", + "resource": { + "resourceType": "Practitioner", + "id": "1732561495246974000.6ed9d709-bb8d-48fa-aa5a-f16f1bb7845e", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "XX" + "code": "XX" } ] }, - "system" : "STARLIMS.CDC.Stag", - "value" : "SPHL-000098" + "system": "STARLIMS.CDC.Stag", + "value": "SPHL-000098" } ], - "name" : [ + "name": [ { - "family" : "CA-Placer County Public Health Laboratory" + "family": "CA-Placer County Public Health Laboratory" } ] } }, { - "fullUrl" : "ServiceRequest/1716964508681483000.259e4587-899e-4f60-afc0-3868f59ca8ef", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1716964508681483000.259e4587-899e-4f60-afc0-3868f59ca8ef", - "extension" : [ + "fullUrl": "ServiceRequest/1732561495255966000.fea904a3-f77c-4d64-9aac-739d29de2d7c", + "resource": { + "resourceType": "ServiceRequest", + "id": "1732561495255966000.fea904a3-f77c-4d64-9aac-739d29de2d7c", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ { - "url" : "OBR.16", - "valueReference" : { - "reference" : "Practitioner/1731693452435563000.a1c0b0dd-bd8a-4229-a55c-a3f6f0cea9ec" + "url": "OBR.16", + "valueReference": { + "reference": "Practitioner/1732561495254656000.e2224fed-b43b-4b9e-a088-10f70bd75b2a" } }, { - "url" : "OBR.22", - "valueString" : "202308021726-0400" - }, - { - "url" : "OBR.25", - "valueId" : "F" - }, - { - "url" : "OBR.7", - "valueDateTime" : "2023-07-24T15:24:00Z", - "_valueDateTime" : { - "extension" : [ + "url": "OBR.7", + "valueDateTime": "2023-07-24T15:24:00Z", + "_valueDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] } + }, + { + "url": "OBR.22", + "valueString": "202308021726-0400" + }, + { + "url": "OBR.25", + "valueId": "F" } ] } ], - "identifier" : [ + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Specimen123" + "value": "Specimen123" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.3" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.3" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "47_3015894743_04608717_1233" + "value": "47_3015894743_04608717_1233" } ], - "status" : "unknown", - "code" : { - "extension" : [ + "status": "unknown", + "code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.6.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.6.1" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "100383-9", - "display" : "MVPX DNA Spec Ql NAA+probe" + "system": "http://loinc.org", + "version": "2.74", + "code": "100383-9", + "display": "MVPX DNA Spec Ql NAA+probe" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "CDC-10515", - "display" : "Poxvirus Molecular Detection" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "CDC-10515", + "display": "Poxvirus Molecular Detection" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "v unknown", - "code" : "1233", - "display" : "Monkeypox generic" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "v unknown", + "code": "1233", + "display": "Monkeypox generic" } ] }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "requester" : { - "extension" : [ + "requester": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", - "valueContactPoint" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number", + "valueContactPoint": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ { - "url" : "XTN.2", - "valueString" : "NET" + "url": "XTN.2", + "valueString": "NET" }, { - "url" : "XTN.3", - "valueString" : "Internet" + "url": "XTN.3", + "valueString": "Internet" }, { - "url" : "XTN.4", - "valueString" : "MWaKabon@placer.ca.gov" + "url": "XTN.4", + "valueString": "MWaKabon@placer.ca.gov" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.17" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.17" } ], - "system" : "email", - "value" : "MWaKabon@placer.ca.gov" + "system": "email", + "value": "MWaKabon@placer.ca.gov" } } ], - "reference" : "Practitioner/1716964508677389000.19978f84-1c31-4924-b5fb-0efe9bf28f28" + "reference": "Practitioner/1732561495250676000.4bb10a64-5a5e-4902-b080-e57ad1d6a9ce" }, - "note" : [ + "note": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ { - "url" : "NTE.2", - "valueId" : "L" + "url": "NTE.2", + "valueId": "L" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Accession level coment." + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Accession level coment." }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.12.364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.12.364" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" + "version": "2.5.1", + "code": "RE", + "display": "Remark" } ] } } ], - "text" : "Accession level coment." + "text": "Accession level coment." }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation", + "extension": [ { - "url" : "NTE.2", - "valueId" : "L" + "url": "NTE.2", + "valueId": "L" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", - "valueId" : "Test level comment." + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment", + "valueId": "Test level comment." }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", - "valueCodeableConcept" : { - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type", + "valueCodeableConcept": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.12.364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.12.364" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70364" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70364" } ], - "version" : "2.5.1", - "code" : "RE", - "display" : "Remark" + "version": "2.5.1", + "code": "RE", + "display": "Remark" } ] } } ], - "text" : "Test level comment." + "text": "Test level comment." } ] } }, { - "fullUrl" : "Practitioner/1716964508677389000.19978f84-1c31-4924-b5fb-0efe9bf28f28", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1716964508677389000.19978f84-1c31-4924-b5fb-0efe9bf28f28", - "extension" : [ + "fullUrl": "Practitioner/1732561495250676000.4bb10a64-5a5e-4902-b080-e57ad1d6a9ce", + "resource": { + "resourceType": "Practitioner", + "id": "1732561495250676000.4bb10a64-5a5e-4902-b080-e57ad1d6a9ce", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.16" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.16" } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "XX" + "code": "XX" } ] }, - "system" : "STARLIMS.CDC.Stag", - "value" : "SPHL-000098" + "system": "STARLIMS.CDC.Stag", + "value": "SPHL-000098" } ], - "name" : [ + "name": [ { - "family" : "CA-Placer County Public Health Laboratory" + "family": "CA-Placer County Public Health Laboratory" } ] } }, { - "fullUrl" : "Practitioner/1731693452435563000.a1c0b0dd-bd8a-4229-a55c-a3f6f0cea9ec", - "resource" : { - "resourceType" : "Practitioner", - "id" : "1731693452435563000.a1c0b0dd-bd8a-4229-a55c-a3f6f0cea9ec", - "extension" : [ + "fullUrl": "Practitioner/1732561495254656000.e2224fed-b43b-4b9e-a088-10f70bd75b2a", + "resource": { + "resourceType": "Practitioner", + "id": "1732561495254656000.e2224fed-b43b-4b9e-a088-10f70bd75b2a", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "identifier" : [ + "identifier": [ { - "type" : { - "coding" : [ + "type": { + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", - "valueBoolean" : true + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } ], - "code" : "XX" + "code": "XX" } ] }, - "system" : "STARLIMS.CDC.Stag", - "value" : "SPHL-000098" + "system": "STARLIMS.CDC.Stag", + "value": "SPHL-000098" } ], - "name" : [ + "name": [ { - "family" : "CA-Placer County Public Health Laboratory" + "family": "CA-Placer County Public Health Laboratory" } ] } }, { - "fullUrl" : "DiagnosticReport/1716964508685898000.2532ff91-3e38-4eb7-91cf-a1012a26a17d", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1716964508685898000.2532ff91-3e38-4eb7-91cf-a1012a26a17d", - "identifier" : [ + "fullUrl": "DiagnosticReport/1732561495265209000.f7974efd-664b-4edb-a591-2f256429718b", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1732561495265209000.f7974efd-664b-4edb-a591-2f256429718b", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "ORC.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "ORC.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Specimen123" + "value": "Specimen123" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "3015894743_04608717" + "value": "3015894743_04608717" } ], - "basedOn" : [ + "basedOn": [ { - "reference" : "ServiceRequest/1716964508676312000.d16e1225-9ac2-4ad0-8ebe-15604f5ba258" + "reference": "ServiceRequest/1732561495249322000.843ab69f-30f0-4c15-ad07-fb607dacba88" } ], - "status" : "final", - "code" : { - "extension" : [ + "status": "final", + "code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.6.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.6.1" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "68991-9", - "display" : "Epidemiologically Important Information" + "system": "http://loinc.org", + "version": "2.74", + "code": "68991-9", + "display": "Epidemiologically Important Information" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "CDC-10515", - "display" : "Poxvirus Molecular Detection" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "CDC-10515", + "display": "Poxvirus Molecular Detection" } ] }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "encounter" : { - "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b" + "encounter": { + "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93" }, - "effectiveDateTime" : "2023-07-24T15:24:00Z", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-07-24T15:24:00Z", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] }, - "issued" : "2023-08-02T18:08:00-04:00", - "_issued" : { - "extension" : [ + "issued": "2023-08-02T18:08:00-04:00", + "_issued": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202308021808-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202308021808-0400" } ] }, - "specimen" : [ + "specimen": [ { - "reference" : "Specimen/1716964508651702000.25599d2e-5340-4b50-9816-134c52fa0863" + "reference": "Specimen/1732561495221509000.7c264a72-7ed9-400f-9708-e57e02eef961" }, { - "reference" : "Specimen/1716964508647637000.6eadc376-dc88-400f-9d9b-bb526ac9163e" + "reference": "Specimen/1732561495214950000.983ffe77-d5f0-440e-aef2-85e4cc7eadb7" } ], - "result" : [ + "result": [ { - "reference" : "Observation/1716964508631514000.19f961d0-ec5b-4cc8-95ac-7b16d5da2d1f" + "reference": "Observation/1732561495195748000.dd13e5cf-34f2-48f2-9401-55ecf414c6eb" }, { - "reference" : "Observation/1716964508635829000.e4a4423f-0207-4819-806b-cb71f7b50135" + "reference": "Observation/1732561495201232000.cabdc58f-4c37-4a9a-8bd8-b01acd306e21" } ] } }, { - "fullUrl" : "DiagnosticReport/1716964508687401000.825800b2-29b8-4cfe-b424-73e68e0dee38", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1716964508687401000.825800b2-29b8-4cfe-b424-73e68e0dee38", - "identifier" : [ + "fullUrl": "DiagnosticReport/1732561495267151000.83ddc146-f4c0-4063-8c46-9e681d69c1c2", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1732561495267151000.83ddc146-f4c0-4063-8c46-9e681d69c1c2", + "identifier": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "OBR.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "OBR.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SPHL-000048" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SPHL-000048" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.1.10765" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.1.10765" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "PLAC" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PLAC" } ] }, - "value" : "Specimen123" + "value": "Specimen123" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "STARLIMS.CDC.Stag" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "STARLIMS.CDC.Stag" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.114222.4.3.3.2.1.2" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.114222.4.3.3.2.1.2" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } ] } ], - "type" : { - "coding" : [ + "type": { + "coding": [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "FILL" + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "FILL" } ] }, - "value" : "47_3015894743_04608717_1233" + "value": "47_3015894743_04608717_1233" } ], - "basedOn" : [ + "basedOn": [ { - "reference" : "ServiceRequest/1716964508681483000.259e4587-899e-4f60-afc0-3868f59ca8ef" + "reference": "ServiceRequest/1732561495255966000.fea904a3-f77c-4d64-9aac-739d29de2d7c" } ], - "status" : "final", - "code" : { - "extension" : [ + "status": "final", + "code": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:2.16.840.1.113883.6.1" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:2.16.840.1.113883.6.1" } ], - "coding" : [ + "coding": [ { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" } ], - "system" : "http://loinc.org", - "version" : "2.74", - "code" : "100383-9", - "display" : "MVPX DNA Spec Ql NAA+probe" + "system": "http://loinc.org", + "version": "2.74", + "code": "100383-9", + "display": "MVPX DNA Spec Ql NAA+probe" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "code" : "CDC-10515", - "display" : "Poxvirus Molecular Detection" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "code": "CDC-10515", + "display": "Poxvirus Molecular Detection" }, { - "extension" : [ + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "L" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "L" } ], - "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", - "version" : "v unknown", - "code" : "1233", - "display" : "Monkeypox generic" + "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL", + "version": "v unknown", + "code": "1233", + "display": "Monkeypox generic" } ] }, - "subject" : { - "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90" + "subject": { + "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850" }, - "encounter" : { - "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b" + "encounter": { + "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93" }, - "effectiveDateTime" : "2023-07-24T15:24:00Z", - "_effectiveDateTime" : { - "extension" : [ + "effectiveDateTime": "2023-07-24T15:24:00Z", + "_effectiveDateTime": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202307241524" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202307241524" } ] }, - "issued" : "2023-08-02T17:26:00-04:00", - "_issued" : { - "extension" : [ + "issued": "2023-08-02T17:26:00-04:00", + "_issued": { + "extension": [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", - "valueString" : "202308021726-0400" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "202308021726-0400" } ] }, - "specimen" : [ + "specimen": [ { - "reference" : "Specimen/1716964508654907000.54a3e767-9a07-4fc3-ba4c-abf9d580a5bb" + "reference": "Specimen/1732561495225426000.98b00d14-b67b-4efd-84dc-184085a9981f" }, { - "reference" : "Specimen/1716964508648050000.2f07d10d-dfab-4ff2-a196-a26744010625" + "reference": "Specimen/1732561495215922000.48cbec21-c45e-434c-98ef-56ac980cd579" } ], - "result" : [ + "result": [ { - "reference" : "Observation/1716964508639525000.f3377425-a394-409f-baef-4a8f3ee84b4e" + "reference": "Observation/1732561495205699000.fa28fd1c-60ba-4d5e-ad57-775d47225391" } ] } diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir index 9face385051..620021e0678 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir @@ -1,8 +1,8 @@ { "resourceType": "Bundle", - "id": "1730472943760164000.93058d43-c801-4f2e-be97-1f963a832ee6", + "id": "1732560742822524000.5efbd8f2-d8b5-416b-9faa-a5661e38f51c", "meta": { - "lastUpdated": "2024-11-01T10:55:43.769-04:00" + "lastUpdated": "2024-11-25T13:52:22.833-05:00" }, "identifier": { "system": "https://reportstream.cdc.gov/prime-router", @@ -12,10 +12,10 @@ "timestamp": "2023-05-01T10:25:31.000-04:00", "entry": [ { - "fullUrl": "MessageHeader/1730472943819762000.e6a8c790-102d-40a3-9231-f7e7b9648557", + "fullUrl": "MessageHeader/1732560742890886000.ef35c7f0-34de-4a27-89f6-03eecc430081", "resource": { "resourceType": "MessageHeader", - "id": "1730472943819762000.e6a8c790-102d-40a3-9231-f7e7b9648557", + "id": "1732560742890886000.ef35c7f0-34de-4a27-89f6-03eecc430081", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", @@ -39,16 +39,16 @@ } }, { - "fullUrl": "Provenance/1730472944394971000.5d555f95-9d7f-4a0c-b041-f564fdd0b4d7", + "fullUrl": "Provenance/1732560743515231000.8981c5b0-027e-4f52-bcf8-62d3a9b99bc1", "resource": { "resourceType": "Provenance", - "id": "1730472944394971000.5d555f95-9d7f-4a0c-b041-f564fdd0b4d7", + "id": "1732560743515231000.8981c5b0-027e-4f52-bcf8-62d3a9b99bc1", "target": [ { - "reference": "MessageHeader/1730472943819762000.e6a8c790-102d-40a3-9231-f7e7b9648557" + "reference": "MessageHeader/1732560742890886000.ef35c7f0-34de-4a27-89f6-03eecc430081" }, { - "reference": "DiagnosticReport/1730472944623333000.e3cf4cde-5f8d-4742-b7af-aa31a60ead71" + "reference": "DiagnosticReport/1732560743741216000.13eba1ae-b7b2-4bbc-a33c-55d771ef087a" } ], "recorded": "2023-05-01T10:25:31-04:00", @@ -62,11 +62,11 @@ } }, { - "fullUrl": "Provenance/1730472944402985000.15c40042-0ce1-438b-9551-3316b8861029", + "fullUrl": "Provenance/1732560743523485000.b32ebd9b-8450-437b-9169-84a228043301", "resource": { "resourceType": "Provenance", - "id": "1730472944402985000.15c40042-0ce1-438b-9551-3316b8861029", - "recorded": "2024-11-01T10:55:44Z", + "id": "1732560743523485000.b32ebd9b-8450-437b-9169-84a228043301", + "recorded": "2024-11-25T13:52:23Z", "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], @@ -88,17 +88,17 @@ ] }, "who": { - "reference": "Organization/1730472944401935000.b0df3132-31d0-4eed-bdd4-4178ef2f0cdf" + "reference": "Organization/1732560743522824000.64702af2-b09f-451c-9292-e266d14e1be8" } } ] } }, { - "fullUrl": "Organization/1730472944401935000.b0df3132-31d0-4eed-bdd4-4178ef2f0cdf", + "fullUrl": "Organization/1732560743522824000.64702af2-b09f-451c-9292-e266d14e1be8", "resource": { "resourceType": "Organization", - "id": "1730472944401935000.b0df3132-31d0-4eed-bdd4-4178ef2f0cdf", + "id": "1732560743522824000.64702af2-b09f-451c-9292-e266d14e1be8", "identifier": [ { "value": "CDC PRIME - Atlanta" @@ -118,23 +118,23 @@ } }, { - "fullUrl": "Patient/1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee", + "fullUrl": "Patient/1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483", "resource": { "resourceType": "Patient", - "id": "1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee" + "id": "1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483" } }, { - "fullUrl": "Provenance/1730472944420086000.6fc98a26-fdf6-4f72-958b-96303299d886", + "fullUrl": "Provenance/1732560743539334000.f7b6b6c9-16af-4d9f-8e5f-0741fb633b17", "resource": { "resourceType": "Provenance", - "id": "1730472944420086000.6fc98a26-fdf6-4f72-958b-96303299d886", + "id": "1732560743539334000.f7b6b6c9-16af-4d9f-8e5f-0741fb633b17", "target": [ { - "reference": "Patient/1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee" + "reference": "Patient/1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483" } ], - "recorded": "2024-11-01T10:55:44Z", + "recorded": "2024-11-25T13:52:23Z", "activity": { "coding": [ { @@ -146,23 +146,289 @@ } }, { - "fullUrl": "Specimen/1730472944421674000.125bf158-5767-464f-b0f8-5eff0dbe18e5", + "fullUrl": "Specimen/1732560743540925000.10238703-4ecb-45cb-b967-1e23092e294c", "resource": { "resourceType": "Specimen", - "id": "1730472944421674000.125bf158-5767-464f-b0f8-5eff0dbe18e5", + "id": "1732560743540925000.10238703-4ecb-45cb-b967-1e23092e294c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", "valueString": "OBR" } + ], + "collection": { + "collector": { + "reference": "Practitioner/1732560743550242000.2295143c-f607-4059-84dd-c9f18b1fcbbd" + } + } + } + }, + { + "fullUrl": "Organization/1732560743542163000.6d0edeff-8007-42b7-967e-bb2f917390a3", + "resource": { + "resourceType": "Organization", + "id": "1732560743542163000.6d0edeff-8007-42b7-967e-bb2f917390a3", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "Namespace" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "value": "AssigningOrganization" + } + ] + } + }, + { + "fullUrl": "Practitioner/1732560743550242000.2295143c-f607-4059-84dd-c9f18b1fcbbd", + "resource": { + "resourceType": "Practitioner", + "id": "1732560743550242000.2295143c-f607-4059-84dd-c9f18b1fcbbd", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Namespace" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type", + "valueCode": "AssigningOrganization" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "LUDWIG" + }, + { + "url": "XCN.4", + "valueString": "B" + }, + { + "url": "XCN.21", + "valueString": "PHD" + }, + { + "url": "XCN.22", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignJ" + } + ] + } + }, + { + "url": "XCN.23", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "AssignA" + } + ] + } + }, + { + "url": "XCN.5", + "valueString": "2ND" + }, + { + "url": "XCN.7", + "valueString": "MD" + }, + { + "url": "XCN.8", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "SRC" + } + ] + } + }, + { + "url": "XCN.10", + "valueString": "B" + }, + { + "url": "XCN.15", + "valueString": "A" + }, + { + "url": "XCN.16", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "NameContext" + } + ] + } + }, + { + "url": "XCN.17", + "extension": [ + { + "url": "XCN.17.2", + "valueString": "20230501102531-0400" + }, + { + "url": "XCN.17.1", + "valueString": "20220501102531-0400" + } + ] + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "A" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "NPI" + } + ], + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "DL" + } + ] + }, + "value": "123", + "assigner": { + "reference": "Organization/1732560743542163000.6d0edeff-8007-42b7-967e-bb2f917390a3" + } + } + ], + "name": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order", + "valueCode": "G" + } + ], + "use": "official", + "family": "BEETHOVEN", + "_family": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix", + "valueString": "VAN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", + "valueString": "BEETHOVEN" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix", + "valueString": "VAL" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name", + "valueString": "ROGER" + } + ] + }, + "given": [ + "LUDWIG", + "B" + ], + "prefix": [ + "DR" + ], + "suffix": [ + "2ND", + "MD", + "PHD" + ], + "period": { + "start": "2022-05-01T10:25:31-04:00", + "_start": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20220501102531-0400" + } + ] + }, + "end": "2023-05-01T10:25:31-04:00", + "_end": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time", + "valueString": "20230501102531-0400" + } + ] + } + } + } ] } }, { - "fullUrl": "ServiceRequest/1730472944618292000.903c2b0a-7cd5-49ba-b904-8227374490a2", + "fullUrl": "ServiceRequest/1732560743737627000.a9cb2369-47d9-4e9d-8ed5-46c70afc863c", "resource": { "resourceType": "ServiceRequest", - "id": "1730472944618292000.903c2b0a-7cd5-49ba-b904-8227374490a2", + "id": "1732560743737627000.a9cb2369-47d9-4e9d-8ed5-46c70afc863c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", @@ -174,7 +440,7 @@ { "url": "OBR.10", "valueReference": { - "reference": "Practitioner/1730472944616587000.75ae160b-e860-45e3-aecc-3e8e710f418c" + "reference": "Practitioner/1732560743736153000.d6dd118a-0d94-445a-8648-007996af4f8b" } } ] @@ -207,15 +473,15 @@ ] }, "subject": { - "reference": "Patient/1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee" + "reference": "Patient/1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483" } } }, { - "fullUrl": "Organization/1730472944608179000.2d5b7fca-1027-4199-b1c6-a811c8cae677", + "fullUrl": "Organization/1732560743732145000.8e565e61-b509-4559-8c91-97232c194d27", "resource": { "resourceType": "Organization", - "id": "1730472944608179000.2d5b7fca-1027-4199-b1c6-a811c8cae677", + "id": "1732560743732145000.8e565e61-b509-4559-8c91-97232c194d27", "identifier": [ { "extension": [ @@ -246,10 +512,10 @@ } }, { - "fullUrl": "Practitioner/1730472944616587000.75ae160b-e860-45e3-aecc-3e8e710f418c", + "fullUrl": "Practitioner/1732560743736153000.d6dd118a-0d94-445a-8648-007996af4f8b", "resource": { "resourceType": "Practitioner", - "id": "1730472944616587000.75ae160b-e860-45e3-aecc-3e8e710f418c", + "id": "1732560743736153000.d6dd118a-0d94-445a-8648-007996af4f8b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -402,7 +668,7 @@ }, "value": "123", "assigner": { - "reference": "Organization/1730472944608179000.2d5b7fca-1027-4199-b1c6-a811c8cae677" + "reference": "Organization/1732560743732145000.8e565e61-b509-4559-8c91-97232c194d27" } } ], @@ -473,13 +739,13 @@ } }, { - "fullUrl": "DiagnosticReport/1730472944623333000.e3cf4cde-5f8d-4742-b7af-aa31a60ead71", + "fullUrl": "DiagnosticReport/1732560743741216000.13eba1ae-b7b2-4bbc-a33c-55d771ef087a", "resource": { "resourceType": "DiagnosticReport", - "id": "1730472944623333000.e3cf4cde-5f8d-4742-b7af-aa31a60ead71", + "id": "1732560743741216000.13eba1ae-b7b2-4bbc-a33c-55d771ef087a", "basedOn": [ { - "reference": "ServiceRequest/1730472944618292000.903c2b0a-7cd5-49ba-b904-8227374490a2" + "reference": "ServiceRequest/1732560743737627000.a9cb2369-47d9-4e9d-8ed5-46c70afc863c" } ], "status": "final", @@ -509,11 +775,11 @@ ] }, "subject": { - "reference": "Patient/1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee" + "reference": "Patient/1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483" }, "specimen": [ { - "reference": "Specimen/1730472944421674000.125bf158-5767-464f-b0f8-5eff0dbe18e5" + "reference": "Specimen/1732560743540925000.10238703-4ecb-45cb-b967-1e23092e294c" } ] } From 2c45e5f28ca18fe1cf087d09b5087988adcc56e8 Mon Sep 17 00:00:00 2001 From: etanb Date: Mon, 2 Dec 2024 16:32:53 -0800 Subject: [PATCH 22/34] reset pagination upon filtering --- frontend-react/src/components/Table/TableFilters.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend-react/src/components/Table/TableFilters.tsx b/frontend-react/src/components/Table/TableFilters.tsx index 226d21ca952..e918228fad4 100644 --- a/frontend-react/src/components/Table/TableFilters.tsx +++ b/frontend-react/src/components/Table/TableFilters.tsx @@ -15,6 +15,7 @@ import { RangeSettingsActionType, } from "../../hooks/filters/UseDateRange/UseDateRange"; import { FilterManager } from "../../hooks/filters/UseFilterManager/UseFilterManager"; +import { PageSettingsActionType } from "../../hooks/filters/UsePages/UsePages"; import { FeatureName } from "../../utils/FeatureName"; import { appInsights } from "../../utils/TelemetryService/TelemetryService"; @@ -101,6 +102,13 @@ function TableFilters({ type: RangeSettingsActionType.RESET, payload: { from, to }, }); + + // Reset results to first page upon applying filters + filterManager.updatePage({ + type: PageSettingsActionType.SET_PAGE, + payload: { page: 1 }, + }); + cursorManager?.update({ type: CursorActionType.RESET, payload: filterManager.sortSettings.order === "DESC" ? to : from, From 494cdf5840a656bfa9f03fc42910578c0115fb8c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:11:23 -0600 Subject: [PATCH 23/34] Bump the css group in /frontend-react with 2 updates (#16564) Bumps the css group in /frontend-react with 2 updates: [postcss](https://github.com/postcss/postcss) and [sass](https://github.com/sass/dart-sass). Updates `postcss` from 8.4.47 to 8.4.49 - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss/compare/8.4.47...8.4.49) Updates `sass` from 1.80.3 to 1.81.0 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.80.3...1.81.0) --- updated-dependencies: - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch dependency-group: css - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-minor dependency-group: css ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend-react/package.json | 4 ++-- frontend-react/yarn.lock | 40 +++++++++++++++++++++++++------------ 2 files changed, 29 insertions(+), 15 deletions(-) diff --git a/frontend-react/package.json b/frontend-react/package.json index 70b824c3f22..319f3bfc1e3 100644 --- a/frontend-react/package.json +++ b/frontend-react/package.json @@ -177,13 +177,13 @@ "npm-run-all": "^4.1.5", "otpauth": "^9.3.4", "patch-package": "^8.0.0", - "postcss": "^8.4.47", + "postcss": "^8.4.49", "prettier": "^3.3.3", "react-error-boundary": "^4.1.2", "remark-frontmatter": "^5.0.0", "remark-mdx-frontmatter": "^5.0.0", "remark-mdx-toc": "^0.3.1", - "sass": "^1.80.3", + "sass": "^1.81.0", "storybook": "^8.3.6", "storybook-addon-remix-react-router": "^3.0.1", "ts-node": "^10.9.2", diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock index 5f5f23f5c2e..bd6d50833cd 100644 --- a/frontend-react/yarn.lock +++ b/frontend-react/yarn.lock @@ -7304,10 +7304,10 @@ __metadata: languageName: node linkType: hard -"immutable@npm:^4.0.0": - version: 4.1.0 - resolution: "immutable@npm:4.1.0" - checksum: b9bc1f14fb18eb382d48339c064b24a1f97ae4cf43102e0906c0a6e186a27afcd18b55ca4a0b63c98eefb58143e2b5ebc7755a5fb4da4a7ad84b7a6096ac5b13 +"immutable@npm:^5.0.2": + version: 5.0.3 + resolution: "immutable@npm:5.0.3" + checksum: b2fcfc75aff29634babfcf6afb102111d7bc3858bfc55c17c5ad5eedf11085fe8b72d59fac883c6cfe9b2ec6e72cc184dec88782d5375ab17dc4eb25e3a665ed languageName: node linkType: hard @@ -9931,7 +9931,7 @@ __metadata: languageName: node linkType: hard -"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1, picocolors@npm:^1.1.0": +"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1, picocolors@npm:^1.1.0, picocolors@npm:^1.1.1": version: 1.1.1 resolution: "picocolors@npm:1.1.1" checksum: e1cf46bf84886c79055fdfa9dcb3e4711ad259949e3565154b004b260cd356c5d54b31a1437ce9782624bf766272fe6b0154f5f0c744fb7af5d454d2b60db045 @@ -10044,7 +10044,7 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.3.11, postcss@npm:^8.4.43, postcss@npm:^8.4.47": +"postcss@npm:^8.3.11, postcss@npm:^8.4.43": version: 8.4.47 resolution: "postcss@npm:8.4.47" dependencies: @@ -10055,6 +10055,17 @@ __metadata: languageName: node linkType: hard +"postcss@npm:^8.4.49": + version: 8.4.49 + resolution: "postcss@npm:8.4.49" + dependencies: + nanoid: ^3.3.7 + picocolors: ^1.1.1 + source-map-js: ^1.2.1 + checksum: eb5d6cbdca24f50399aafa5d2bea489e4caee4c563ea1edd5a2485bc5f84e9ceef3febf170272bc83a99c31d23a316ad179213e853f34c2a7a8ffa534559d63a + languageName: node + linkType: hard + "prelude-ls@npm:^1.2.1": version: 1.2.1 resolution: "prelude-ls@npm:1.2.1" @@ -10406,7 +10417,7 @@ __metadata: otpauth: ^9.3.4 p-limit: ^6.1.0 patch-package: ^8.0.0 - postcss: ^8.4.47 + postcss: ^8.4.49 prettier: ^3.3.3 react: ^18.3.1 react-dom: ^18.3.1 @@ -10427,7 +10438,7 @@ __metadata: remark-mdx-toc: ^0.3.1 rest-hooks: ^6.1.7 sanitize-html: ^2.13.1 - sass: ^1.80.3 + sass: ^1.81.0 storybook: ^8.3.6 storybook-addon-remix-react-router: ^3.0.1 ts-node: ^10.9.2 @@ -11159,17 +11170,20 @@ __metadata: languageName: node linkType: hard -"sass@npm:^1.80.3": - version: 1.80.3 - resolution: "sass@npm:1.80.3" +"sass@npm:^1.81.0": + version: 1.81.0 + resolution: "sass@npm:1.81.0" dependencies: "@parcel/watcher": ^2.4.1 chokidar: ^4.0.0 - immutable: ^4.0.0 + immutable: ^5.0.2 source-map-js: ">=0.6.2 <2.0.0" + dependenciesMeta: + "@parcel/watcher": + optional: true bin: sass: sass.js - checksum: 37b24b7fad92bc82e645f7dfb7f2a38d2c828ea1ee1d98688d8687daad2fb4cc55620df4497e1a536c40fd4f6b3e36cf5326f0c6c0a622bcff8f204cb0616d5f + checksum: 93db5b342c3b0449af2b08123ed4c0793643bd3a30f78e4e0686a1aa991ad640e0d9bc8da09aa5d7ff313bbd317b3be9c827cca60fb33b07d9f4b14b001eccfe languageName: node linkType: hard From 7ea7c45dd63cedaba7b5f3e8e16e539916dc5f59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 17:23:59 +0000 Subject: [PATCH 24/34] Bump the e2e-testing group across 1 directory with 3 updates (#16636) Bumps the e2e-testing group with 3 updates in the /frontend-react directory: [@playwright/test](https://github.com/microsoft/playwright), [eslint-plugin-playwright](https://github.com/playwright-community/eslint-plugin-playwright) and [otpauth](https://github.com/hectorm/otpauth). Updates `@playwright/test` from 1.48.1 to 1.49.0 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.48.1...v1.49.0) Updates `eslint-plugin-playwright` from 2.0.0 to 2.1.0 - [Release notes](https://github.com/playwright-community/eslint-plugin-playwright/releases) - [Changelog](https://github.com/playwright-community/eslint-plugin-playwright/blob/main/CHANGELOG.md) - [Commits](https://github.com/playwright-community/eslint-plugin-playwright/compare/v2.0.0...v2.1.0) Updates `otpauth` from 9.3.4 to 9.3.5 - [Release notes](https://github.com/hectorm/otpauth/releases) - [Commits](https://github.com/hectorm/otpauth/compare/v9.3.4...v9.3.5) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: e2e-testing - dependency-name: eslint-plugin-playwright dependency-type: direct:development update-type: version-update:semver-minor dependency-group: e2e-testing - dependency-name: otpauth dependency-type: direct:development update-type: version-update:semver-patch dependency-group: e2e-testing ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend-react/package.json | 6 ++--- frontend-react/yarn.lock | 50 ++++++++++++++++++------------------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/frontend-react/package.json b/frontend-react/package.json index 319f3bfc1e3..d0b8d9b6623 100644 --- a/frontend-react/package.json +++ b/frontend-react/package.json @@ -113,7 +113,7 @@ "@eslint/js": "^9.13.0", "@mdx-js/react": "^3.1.0", "@mdx-js/rollup": "^3.1.0", - "@playwright/test": "^1.48.1", + "@playwright/test": "^1.49.0", "@rest-hooks/test": "^7.3.1", "@storybook/addon-a11y": "^8.3.6", "@storybook/addon-actions": "^8.3.6", @@ -160,7 +160,7 @@ "eslint-plugin-import": "^2.31.0", "eslint-plugin-jest-dom": "^5.4.0", "eslint-plugin-jsx-a11y": "^6.10.2", - "eslint-plugin-playwright": "^2.0.0", + "eslint-plugin-playwright": "^2.1.0", "eslint-plugin-react": "^7.37.2", "eslint-plugin-react-hooks": "^5.0.0", "eslint-plugin-react-refresh": "^0.4.14", @@ -175,7 +175,7 @@ "msw": "^2.4.11", "msw-storybook-addon": "^2.0.3", "npm-run-all": "^4.1.5", - "otpauth": "^9.3.4", + "otpauth": "^9.3.5", "patch-package": "^8.0.0", "postcss": "^8.4.49", "prettier": "^3.3.3", diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock index bd6d50833cd..151a0fd3705 100644 --- a/frontend-react/yarn.lock +++ b/frontend-react/yarn.lock @@ -1476,14 +1476,14 @@ __metadata: languageName: node linkType: hard -"@playwright/test@npm:^1.48.1": - version: 1.48.1 - resolution: "@playwright/test@npm:1.48.1" +"@playwright/test@npm:^1.49.0": + version: 1.49.0 + resolution: "@playwright/test@npm:1.49.0" dependencies: - playwright: 1.48.1 + playwright: 1.49.0 bin: playwright: cli.js - checksum: 3f3f32dadeea9da4b9f835ba41d6bfabbd4c8d322bbba059250cb7bbdf2ae8fd32d547f64cef0bda492dff32128b4d4d802422525995570ebb57e62605c0557f + checksum: f8477aa61d59fd22c6161c48221ab246340dc37bbe2804e1a7d1be8cbd0fd861747fcb7ca559f4bc7328226ff2c90ccb7efa588a7d7d7829f3e57902b28fe39a languageName: node linkType: hard @@ -5783,14 +5783,14 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-playwright@npm:^2.0.0": - version: 2.0.0 - resolution: "eslint-plugin-playwright@npm:2.0.0" +"eslint-plugin-playwright@npm:^2.1.0": + version: 2.1.0 + resolution: "eslint-plugin-playwright@npm:2.1.0" dependencies: globals: ^13.23.0 peerDependencies: eslint: ">=8.40.0" - checksum: 3621107bafe84801a09f664cb0744772ebfd0c235ad2cab7110b80122d1448088a08f6ad6727b5f2658a525bc0be0bde5b97e9a399de4edb5e90fd8600cef476 + checksum: 0d4034219da22e0611124bd8377cd30b5cc9d561ff58b6c8f17e934d494578cdf9587f6db9c68f8755ade4629d28cdf63f7f48753eba8be369ef824fbf6f8f9e languageName: node linkType: hard @@ -9595,12 +9595,12 @@ __metadata: languageName: node linkType: hard -"otpauth@npm:^9.3.4": - version: 9.3.4 - resolution: "otpauth@npm:9.3.4" +"otpauth@npm:^9.3.5": + version: 9.3.5 + resolution: "otpauth@npm:9.3.5" dependencies: "@noble/hashes": 1.5.0 - checksum: eea5ea5c49ce7fce91cf1283d58c8e811c21eff2dc7fe0bd9ce7a2a8cdd69153f1f16c6f29c76e3da47e16ca6449b39ed531630d72b5c9167246a3491494401a + checksum: 1c6d3c1a1f122e2b86f259036c062f990ba4352660cf64e485a97e0de962fdb7c5f7d9c66ad5f1a95da29d42f732d9cf0507d301a86d51357ff47bbb9f4ad7d2 languageName: node linkType: hard @@ -9986,27 +9986,27 @@ __metadata: languageName: node linkType: hard -"playwright-core@npm:1.48.1": - version: 1.48.1 - resolution: "playwright-core@npm:1.48.1" +"playwright-core@npm:1.49.0": + version: 1.49.0 + resolution: "playwright-core@npm:1.49.0" bin: playwright-core: cli.js - checksum: adf5b43e054e49bcc712d70e71dedab92c362ea76a45a767bdf3d928d3c810a42f6f1c49382f3d44ed005986048001f75cb568605031215dc89a3e56d99d2976 + checksum: d8423ad0cab2e672856529bf6b98b406e7e605da098b847b9b54ee8ebd8d716ed8880a9afff4b38f0a2e3f59b95661c74589116ce3ff2b5e0ae3561507086c94 languageName: node linkType: hard -"playwright@npm:1.48.1": - version: 1.48.1 - resolution: "playwright@npm:1.48.1" +"playwright@npm:1.49.0": + version: 1.49.0 + resolution: "playwright@npm:1.49.0" dependencies: fsevents: 2.3.2 - playwright-core: 1.48.1 + playwright-core: 1.49.0 dependenciesMeta: fsevents: optional: true bin: playwright: cli.js - checksum: 81ca13392ad5e5ca87a226d0f5ff2da958c4e06a01dd6b56b4e4e5b4fec45ef8a8f7f0563ef0f4c725814265b931984d0c841e8524362b24480bcd527aa0c054 + checksum: f1bfb2fff65cad2ce996edab74ec231dfd21aeb5961554b765ce1eaec27efb87eaba37b00e91ecd27727b82861e5d8c230abe4960e93f6ada8be5ad1020df306 languageName: node linkType: hard @@ -10337,7 +10337,7 @@ __metadata: "@microsoft/applicationinsights-web": ^3.3.3 "@okta/okta-react": ^6.9.0 "@okta/okta-signin-widget": ^7.24.2 - "@playwright/test": ^1.48.1 + "@playwright/test": ^1.49.0 "@rest-hooks/rest": ^3.0.3 "@rest-hooks/test": ^7.3.1 "@storybook/addon-a11y": ^8.3.6 @@ -10394,7 +10394,7 @@ __metadata: eslint-plugin-import: ^2.31.0 eslint-plugin-jest-dom: ^5.4.0 eslint-plugin-jsx-a11y: ^6.10.2 - eslint-plugin-playwright: ^2.0.0 + eslint-plugin-playwright: ^2.1.0 eslint-plugin-react: ^7.37.2 eslint-plugin-react-hooks: ^5.0.0 eslint-plugin-react-refresh: ^0.4.14 @@ -10414,7 +10414,7 @@ __metadata: msw: ^2.4.11 msw-storybook-addon: ^2.0.3 npm-run-all: ^4.1.5 - otpauth: ^9.3.4 + otpauth: ^9.3.5 p-limit: ^6.1.0 patch-package: ^8.0.0 postcss: ^8.4.49 From ba5fe5d7a7ef9dae1ef305798cc1c9f3f71cd2bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 17:34:40 +0000 Subject: [PATCH 25/34] Bump the sanitizers group across 1 directory with 2 updates (#16670) Bumps the sanitizers group with 2 updates in the /frontend-react directory: [dompurify](https://github.com/cure53/DOMPurify) and [@types/dompurify](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dompurify). Updates `dompurify` from 3.1.7 to 3.2.2 - [Release notes](https://github.com/cure53/DOMPurify/releases) - [Commits](https://github.com/cure53/DOMPurify/compare/3.1.7...3.2.2) Updates `@types/dompurify` from 3.0.5 to 3.2.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/dompurify) Updates `@types/dompurify` from 3.0.5 to 3.2.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/dompurify) --- updated-dependencies: - dependency-name: dompurify dependency-type: direct:production update-type: version-update:semver-minor dependency-group: sanitizers - dependency-name: "@types/dompurify" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: sanitizers - dependency-name: "@types/dompurify" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: sanitizers ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend-react/package.json | 4 ++-- frontend-react/yarn.lock | 35 ++++++++++++++++++++--------------- 2 files changed, 22 insertions(+), 17 deletions(-) diff --git a/frontend-react/package.json b/frontend-react/package.json index d0b8d9b6623..08a1949a992 100644 --- a/frontend-react/package.json +++ b/frontend-react/package.json @@ -18,7 +18,7 @@ "classnames": "^2.5.1", "date-fns": "^3.6.0", "date-fns-tz": "^3.2.0", - "dompurify": "^3.1.7", + "dompurify": "^3.2.2", "export-to-csv-fix-source-map": "^0.2.1", "focus-trap-react": "^10.3.0", "history": "^5.3.0", @@ -132,7 +132,7 @@ "@testing-library/jest-dom": "^6.6.2", "@testing-library/react": "^16.0.1", "@testing-library/user-event": "^14.5.2", - "@types/dompurify": "^3.0.5", + "@types/dompurify": "^3.2.0", "@types/dotenv-flow": "^3.3.3", "@types/eslint__js": "^8.42.3", "@types/github-slugger": "^1.3.0", diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock index 151a0fd3705..cbe5fd96bf4 100644 --- a/frontend-react/yarn.lock +++ b/frontend-react/yarn.lock @@ -2638,12 +2638,12 @@ __metadata: languageName: node linkType: hard -"@types/dompurify@npm:^3.0.5": - version: 3.0.5 - resolution: "@types/dompurify@npm:3.0.5" +"@types/dompurify@npm:^3.2.0": + version: 3.2.0 + resolution: "@types/dompurify@npm:3.2.0" dependencies: - "@types/trusted-types": "*" - checksum: ffc34eca6a4536e1c8c16a47cce2623c5a118a9785492e71230052d92933ff096d14326ff449031e8dfaac509413222372d8f2b28786a13159de6241df716185 + dompurify: "*" + checksum: 0194dd9024e76e856f3373e8b080c7a5ac9910543ac1ee85db45277efbbea820b2f27fe22c8a6f02bb51833e0a8540d732be0d11d156efd16cb0b97f88e41ebf languageName: node linkType: hard @@ -3058,10 +3058,10 @@ __metadata: languageName: node linkType: hard -"@types/trusted-types@npm:*": - version: 2.0.2 - resolution: "@types/trusted-types@npm:2.0.2" - checksum: 3371eef5f1c50e1c3c07a127c1207b262ba65b83dd167a1c460fc1b135a3fb0c97b9f508efebd383f239cc5dd5b7169093686a692a501fde9c3f7208657d9b0d +"@types/trusted-types@npm:^2.0.7": + version: 2.0.7 + resolution: "@types/trusted-types@npm:2.0.7" + checksum: 8e4202766a65877efcf5d5a41b7dd458480b36195e580a3b1085ad21e948bc417d55d6f8af1fd2a7ad008015d4117d5fdfe432731157da3c68678487174e4ba3 languageName: node linkType: hard @@ -5095,10 +5095,15 @@ __metadata: languageName: node linkType: hard -"dompurify@npm:^3.1.7": - version: 3.1.7 - resolution: "dompurify@npm:3.1.7" - checksum: 0a9b811bbc94f3dba60cf6486962362b0f1a5b4ab789f5e1cbd4749b6ba1a1fad190a677a962dc8850ce28764424765fe425e9d6508e4e93ba648ef15d54bc24 +"dompurify@npm:*, dompurify@npm:^3.2.2": + version: 3.2.2 + resolution: "dompurify@npm:3.2.2" + dependencies: + "@types/trusted-types": ^2.0.7 + dependenciesMeta: + "@types/trusted-types": + optional: true + checksum: e4831baa447cc7ed4350ede29f7ec4d2614a59287b6916f3691d287dd4a1c45eb3ce9cb26058edf37b3f2648bbf0a3ca5fb3b74c2f78bdcf6ebb7716c2f14252 languageName: node linkType: hard @@ -10360,7 +10365,7 @@ __metadata: "@testing-library/react": ^16.0.1 "@testing-library/user-event": ^14.5.2 "@trussworks/react-uswds": ^9.1.0 - "@types/dompurify": ^3.0.5 + "@types/dompurify": ^3.2.0 "@types/dotenv-flow": ^3.3.3 "@types/eslint__js": ^8.42.3 "@types/github-slugger": ^1.3.0 @@ -10386,7 +10391,7 @@ __metadata: cross-env: ^7.0.3 date-fns: ^3.6.0 date-fns-tz: ^3.2.0 - dompurify: ^3.1.7 + dompurify: ^3.2.2 dotenv-flow: ^4.1.0 eslint: 9.13.0 eslint-config-prettier: ^9.1.0 From d2129bd631e0be0d65bba1d85fe1c36e0f3f1273 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 17:47:34 +0000 Subject: [PATCH 26/34] Bump the typescript group across 1 directory with 4 updates (#16675) Bumps the typescript group with 4 updates in the /frontend-react directory: [tsx](https://github.com/privatenumber/tsx), [tslib](https://github.com/Microsoft/tslib), [typescript](https://github.com/microsoft/TypeScript) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint). Updates `tsx` from 4.19.1 to 4.19.2 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.19.1...v4.19.2) Updates `tslib` from 2.8.0 to 2.8.1 - [Release notes](https://github.com/Microsoft/tslib/releases) - [Commits](https://github.com/Microsoft/tslib/compare/v2.8.0...v2.8.1) Updates `typescript` from 5.6.3 to 5.7.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.6.3...v5.7.2) Updates `typescript-eslint` from 8.12.2 to 8.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.16.0/packages/typescript-eslint) --- updated-dependencies: - dependency-name: tsx dependency-type: direct:production update-type: version-update:semver-patch dependency-group: typescript - dependency-name: tslib dependency-type: direct:development update-type: version-update:semver-patch dependency-group: typescript - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor dependency-group: typescript - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: typescript ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend-react/package.json | 8 +- frontend-react/yarn.lock | 180 +++++++++++++++++++++++++----------- 2 files changed, 131 insertions(+), 57 deletions(-) diff --git a/frontend-react/package.json b/frontend-react/package.json index 08a1949a992..446717d24e9 100644 --- a/frontend-react/package.json +++ b/frontend-react/package.json @@ -40,7 +40,7 @@ "rehype-slug": "^5.1.0", "rest-hooks": "^6.1.7", "sanitize-html": "^2.13.1", - "tsx": "^4.19.1", + "tsx": "^4.19.2", "use-deep-compare-effect": "^1.8.1", "uuid": "^10.0.0", "web-vitals": "^3.4.0" @@ -187,9 +187,9 @@ "storybook": "^8.3.6", "storybook-addon-remix-react-router": "^3.0.1", "ts-node": "^10.9.2", - "tslib": "^2.8.0", - "typescript": "^5.6.3", - "typescript-eslint": "^8.12.2", + "tslib": "^2.8.1", + "typescript": "^5.7.2", + "typescript-eslint": "^8.16.0", "undici": "^6.20.1", "vite": "^5.4.10", "vite-plugin-checker": "^0.8.0", diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock index cbe5fd96bf4..40d2c4e24f7 100644 --- a/frontend-react/yarn.lock +++ b/frontend-react/yarn.lock @@ -3100,15 +3100,15 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:8.12.2": - version: 8.12.2 - resolution: "@typescript-eslint/eslint-plugin@npm:8.12.2" +"@typescript-eslint/eslint-plugin@npm:8.16.0": + version: 8.16.0 + resolution: "@typescript-eslint/eslint-plugin@npm:8.16.0" dependencies: "@eslint-community/regexpp": ^4.10.0 - "@typescript-eslint/scope-manager": 8.12.2 - "@typescript-eslint/type-utils": 8.12.2 - "@typescript-eslint/utils": 8.12.2 - "@typescript-eslint/visitor-keys": 8.12.2 + "@typescript-eslint/scope-manager": 8.16.0 + "@typescript-eslint/type-utils": 8.16.0 + "@typescript-eslint/utils": 8.16.0 + "@typescript-eslint/visitor-keys": 8.16.0 graphemer: ^1.4.0 ignore: ^5.3.1 natural-compare: ^1.4.0 @@ -3119,25 +3119,25 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: a1707704d91cd525ece0cf5a978f17cb309bb8918d65ded349e18b0aa364f585555d018a365cb0ab9450f273912fc07fae5600f34294e637151b244ba4485bc2 + checksum: dbb0127eca578a876654b820ea270ef4f2c374447d5c214a8677cc1ccf1ba1b87d9b021cb7586d7e33c4feb9b7b40de1b5ad109f385713cac4627d6ec29bd96b languageName: node linkType: hard -"@typescript-eslint/parser@npm:8.12.2": - version: 8.12.2 - resolution: "@typescript-eslint/parser@npm:8.12.2" +"@typescript-eslint/parser@npm:8.16.0": + version: 8.16.0 + resolution: "@typescript-eslint/parser@npm:8.16.0" dependencies: - "@typescript-eslint/scope-manager": 8.12.2 - "@typescript-eslint/types": 8.12.2 - "@typescript-eslint/typescript-estree": 8.12.2 - "@typescript-eslint/visitor-keys": 8.12.2 + "@typescript-eslint/scope-manager": 8.16.0 + "@typescript-eslint/types": 8.16.0 + "@typescript-eslint/typescript-estree": 8.16.0 + "@typescript-eslint/visitor-keys": 8.16.0 debug: ^4.3.4 peerDependencies: eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 201f3e4b6073547726e447455b630c04816b0611346c1b9522493c47596d906c8edaf37d43e0d0e121e2965b374d9547c351e1fa0e125bceb37063e0fa806065 + checksum: 10a390b59556d8ace1fb9edeb51c77b86322dd7211fbfa61e993326d85f082b6b173bffcf7a506165cea03fd2ba053c83fcec41687538ed247452158529c4344 languageName: node linkType: hard @@ -3171,18 +3171,30 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.12.2": - version: 8.12.2 - resolution: "@typescript-eslint/type-utils@npm:8.12.2" +"@typescript-eslint/scope-manager@npm:8.16.0": + version: 8.16.0 + resolution: "@typescript-eslint/scope-manager@npm:8.16.0" dependencies: - "@typescript-eslint/typescript-estree": 8.12.2 - "@typescript-eslint/utils": 8.12.2 + "@typescript-eslint/types": 8.16.0 + "@typescript-eslint/visitor-keys": 8.16.0 + checksum: 12427e2a95a8b0cb49259be1a8a9a23f734fd0dbabbc5cebf1ba56b48812e2ca7ba32b71ededf24efa1a9da07a13b20ced004e2eea6f4b8c07003438f664ce30 + languageName: node + linkType: hard + +"@typescript-eslint/type-utils@npm:8.16.0": + version: 8.16.0 + resolution: "@typescript-eslint/type-utils@npm:8.16.0" + dependencies: + "@typescript-eslint/typescript-estree": 8.16.0 + "@typescript-eslint/utils": 8.16.0 debug: ^4.3.4 ts-api-utils: ^1.3.0 + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: a8f540d84674c4919d6f038848add5b4d41ef39cdf572734a13b75f0f797b00d45903b179dc7c25f7ae7690f9dbaf115e5bda596d9e439b1a0a8d7f9d799260e + checksum: ea3654ff6ae6181911ad6784a7addab9be6b3ce221e6367480061bc8abe8b7ce9f23249f2257f1c5b205e3ea498d5050016596732c66d51ad599dd50aa2c9e16 languageName: node linkType: hard @@ -3207,6 +3219,13 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/types@npm:8.16.0": + version: 8.16.0 + resolution: "@typescript-eslint/types@npm:8.16.0" + checksum: 1ed10343dc65c7fd493cfe789639f547f4c730e6e04472007fa92a00ff1fb77b31fc8016a350a10e553d38b12485f78c331d91c071dc08f69476076f5bbef5cd + languageName: node + linkType: hard + "@typescript-eslint/typescript-estree@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/typescript-estree@npm:5.62.0" @@ -3263,17 +3282,39 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.12.2, @typescript-eslint/utils@npm:^8.8.1": - version: 8.12.2 - resolution: "@typescript-eslint/utils@npm:8.12.2" +"@typescript-eslint/typescript-estree@npm:8.16.0": + version: 8.16.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.16.0" + dependencies: + "@typescript-eslint/types": 8.16.0 + "@typescript-eslint/visitor-keys": 8.16.0 + debug: ^4.3.4 + fast-glob: ^3.3.2 + is-glob: ^4.0.3 + minimatch: ^9.0.4 + semver: ^7.6.0 + ts-api-utils: ^1.3.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 047ae08a7774e4be4307409970d7b8b27d46d10e302ed236199b1b7648242d2aa10b7d1dbeae1fed0f55f683c863f9d399e50108c215e35370fb6a3851bda427 + languageName: node + linkType: hard + +"@typescript-eslint/utils@npm:8.16.0": + version: 8.16.0 + resolution: "@typescript-eslint/utils@npm:8.16.0" dependencies: "@eslint-community/eslint-utils": ^4.4.0 - "@typescript-eslint/scope-manager": 8.12.2 - "@typescript-eslint/types": 8.12.2 - "@typescript-eslint/typescript-estree": 8.12.2 + "@typescript-eslint/scope-manager": 8.16.0 + "@typescript-eslint/types": 8.16.0 + "@typescript-eslint/typescript-estree": 8.16.0 peerDependencies: eslint: ^8.57.0 || ^9.0.0 - checksum: 7ae4ef40d0961642fc31644c47e05f751369b47f3d9f5ea4e6c6eaa09d534efc6a2ea89f12368eed7dc8b32a7378e533f84379f70f2acd85418815f63b249b18 + peerDependenciesMeta: + typescript: + optional: true + checksum: 5e3c4b4d453bee6c38715f851d517ad3bbdb9335de5c2ef487e350eea97ae8b2e996046a1d8f3a93109e06a569d1e161b4ef8d33c530766931e4dbc43cb26ed7 languageName: node linkType: hard @@ -3309,6 +3350,20 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/utils@npm:^8.8.1": + version: 8.12.2 + resolution: "@typescript-eslint/utils@npm:8.12.2" + dependencies: + "@eslint-community/eslint-utils": ^4.4.0 + "@typescript-eslint/scope-manager": 8.12.2 + "@typescript-eslint/types": 8.12.2 + "@typescript-eslint/typescript-estree": 8.12.2 + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + checksum: 7ae4ef40d0961642fc31644c47e05f751369b47f3d9f5ea4e6c6eaa09d534efc6a2ea89f12368eed7dc8b32a7378e533f84379f70f2acd85418815f63b249b18 + languageName: node + linkType: hard + "@typescript-eslint/visitor-keys@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" @@ -3339,6 +3394,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/visitor-keys@npm:8.16.0": + version: 8.16.0 + resolution: "@typescript-eslint/visitor-keys@npm:8.16.0" + dependencies: + "@typescript-eslint/types": 8.16.0 + eslint-visitor-keys: ^4.2.0 + checksum: e7444d3d57b4fcdebfa0d7effcdff9c928d77b6a6765da6980f0dbeb6438af707bd4c2c21e24e7ae1638f9c4a5697168f94027fff94ad663da57fa5f44f0983d + languageName: node + linkType: hard + "@ungap/structured-clone@npm:^1.0.0": version: 1.2.0 resolution: "@ungap/structured-clone@npm:1.2.0" @@ -10447,10 +10512,10 @@ __metadata: storybook: ^8.3.6 storybook-addon-remix-react-router: ^3.0.1 ts-node: ^10.9.2 - tslib: ^2.8.0 - tsx: ^4.19.1 - typescript: ^5.6.3 - typescript-eslint: ^8.12.2 + tslib: ^2.8.1 + tsx: ^4.19.2 + typescript: ^5.7.2 + typescript-eslint: ^8.16.0 undici: ^6.20.1 use-deep-compare-effect: ^1.8.1 uuid: ^10.0.0 @@ -12245,13 +12310,20 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.8.0": +"tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.4.0, tslib@npm:^2.5.0": version: 2.8.0 resolution: "tslib@npm:2.8.0" checksum: de852ecd81adfdb4870927e250763345f07dc13fe7f395ce261424966bb122a0992ad844c3ec875c9e63e72afe2220a150712984e44dfd1a8a7e538a064e3d46 languageName: node linkType: hard +"tslib@npm:^2.8.1": + version: 2.8.1 + resolution: "tslib@npm:2.8.1" + checksum: e4aba30e632b8c8902b47587fd13345e2827fa639e7c3121074d5ee0880723282411a8838f830b55100cbe4517672f84a2472667d355b81e8af165a55dc6203a + languageName: node + linkType: hard + "tsutils@npm:^3.21.0": version: 3.21.0 resolution: "tsutils@npm:3.21.0" @@ -12263,9 +12335,9 @@ __metadata: languageName: node linkType: hard -"tsx@npm:^4.19.1": - version: 4.19.1 - resolution: "tsx@npm:4.19.1" +"tsx@npm:^4.19.2": + version: 4.19.2 + resolution: "tsx@npm:4.19.2" dependencies: esbuild: ~0.23.0 fsevents: ~2.3.3 @@ -12275,7 +12347,7 @@ __metadata: optional: true bin: tsx: dist/cli.mjs - checksum: 31bfd2df62c1230f7c15f6e24d3790019ba7b2ad497221cb0cebcf5cf4f2c1ac971fac0d1283e3d80dc823652d2f9be946bd40ac65b640ff3f199b84a904a9c7 + checksum: 7f9f1b338a73297725a9217cedaaad862f7c81d5264093c74b98a71491ad5413b11248d604c0e650f4f7da6f365249f1426fdb58a1325ab9e15448156b1edff6 languageName: node linkType: hard @@ -12378,37 +12450,39 @@ __metadata: languageName: node linkType: hard -"typescript-eslint@npm:^8.12.2": - version: 8.12.2 - resolution: "typescript-eslint@npm:8.12.2" +"typescript-eslint@npm:^8.16.0": + version: 8.16.0 + resolution: "typescript-eslint@npm:8.16.0" dependencies: - "@typescript-eslint/eslint-plugin": 8.12.2 - "@typescript-eslint/parser": 8.12.2 - "@typescript-eslint/utils": 8.12.2 + "@typescript-eslint/eslint-plugin": 8.16.0 + "@typescript-eslint/parser": 8.16.0 + "@typescript-eslint/utils": 8.16.0 + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 55412f46f2ce3be317107778a9b3f60d1ccc8b3b6f600eefc077d20109890801d684e995eace8ed96a9f8ca824acb2d31c853c2754715f18edb38caf51a76270 + checksum: e8cb50761b9d216158b3738a745adca633dea8fc870e9f26a98979bc22e00bfb5626220f0321e72ad570b6307fb5c9b88bbf8cdda916c931dee9689ac8aa815c languageName: node linkType: hard -"typescript@npm:^5.6.3": - version: 5.6.3 - resolution: "typescript@npm:5.6.3" +"typescript@npm:^5.7.2": + version: 5.7.2 + resolution: "typescript@npm:5.7.2" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: ba302f8822777ebefb28b554105f3e074466b671e7444ec6b75dadc008a62f46f373d9e57ceced1c433756d06c8b7dc569a7eefdf3a9573122a49205ff99021a + checksum: b55300c4cefee8ee380d14fa9359ccb41ff8b54c719f6bc49b424899d662a5ce62ece390ce769568c7f4d14af844085255e63788740084444eb12ef423b13433 languageName: node linkType: hard -"typescript@patch:typescript@^5.6.3#~builtin": - version: 5.6.3 - resolution: "typescript@patch:typescript@npm%3A5.6.3#~builtin::version=5.6.3&hash=14eedb" +"typescript@patch:typescript@^5.7.2#~builtin": + version: 5.7.2 + resolution: "typescript@patch:typescript@npm%3A5.7.2#~builtin::version=5.7.2&hash=14eedb" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: ade87bce2363ee963eed0e4ca8a312ea02c81873ebd53609bc3f6dc0a57f6e61ad7e3fb8cbb7f7ab8b5081cbee801b023f7c4823ee70b1c447eae050e6c7622b + checksum: 803430c6da2ba73c25a21880d8d4f08a56d9d2444e6db2ea949ac4abceeece8e4a442b7b9b585db7d8a0b47ebda2060e45fe8ee8b8aca23e27ec1d4844987ee6 languageName: node linkType: hard From 2eaf8797c19b2cd93d951ede7d57878c0ed1ff03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:13:59 +0000 Subject: [PATCH 27/34] Bump the analytics group in /frontend-react with 2 updates (#16466) Bumps the analytics group in /frontend-react with 2 updates: [@microsoft/applicationinsights-react-js](https://github.com/microsoft/applicationinsights-react-js) and [@microsoft/applicationinsights-web](https://github.com/microsoft/ApplicationInsights-JS). Updates `@microsoft/applicationinsights-react-js` from 17.3.3 to 17.3.4 - [Release notes](https://github.com/microsoft/applicationinsights-react-js/releases) - [Changelog](https://github.com/microsoft/applicationinsights-react-js/blob/main/RELEASES.md) - [Commits](https://github.com/microsoft/applicationinsights-react-js/compare/17.3.3...17.3.4) Updates `@microsoft/applicationinsights-web` from 3.3.3 to 3.3.4 - [Release notes](https://github.com/microsoft/ApplicationInsights-JS/releases) - [Changelog](https://github.com/microsoft/ApplicationInsights-JS/blob/main/RELEASES.md) - [Commits](https://github.com/microsoft/ApplicationInsights-JS/compare/3.3.3...3.3.4) --- updated-dependencies: - dependency-name: "@microsoft/applicationinsights-react-js" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: analytics - dependency-name: "@microsoft/applicationinsights-web" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: analytics ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend-react/package.json | 4 +- frontend-react/yarn.lock | 118 ++++++++++++++++++------------------ 2 files changed, 61 insertions(+), 61 deletions(-) diff --git a/frontend-react/package.json b/frontend-react/package.json index 446717d24e9..d842686c9c0 100644 --- a/frontend-react/package.json +++ b/frontend-react/package.json @@ -5,8 +5,8 @@ "type": "module", "npmClient": "yarn", "dependencies": { - "@microsoft/applicationinsights-react-js": "^17.3.3", - "@microsoft/applicationinsights-web": "^3.3.3", + "@microsoft/applicationinsights-react-js": "^17.3.4", + "@microsoft/applicationinsights-web": "^3.3.4", "@okta/okta-react": "^6.9.0", "@okta/okta-signin-widget": "^7.24.2", "@rest-hooks/rest": "^3.0.3", diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock index 40d2c4e24f7..7d2f8d84af1 100644 --- a/frontend-react/yarn.lock +++ b/frontend-react/yarn.lock @@ -968,70 +968,70 @@ __metadata: languageName: node linkType: hard -"@microsoft/applicationinsights-analytics-js@npm:3.3.3": - version: 3.3.3 - resolution: "@microsoft/applicationinsights-analytics-js@npm:3.3.3" +"@microsoft/applicationinsights-analytics-js@npm:3.3.4": + version: 3.3.4 + resolution: "@microsoft/applicationinsights-analytics-js@npm:3.3.4" dependencies: - "@microsoft/applicationinsights-common": 3.3.3 - "@microsoft/applicationinsights-core-js": 3.3.3 + "@microsoft/applicationinsights-common": 3.3.4 + "@microsoft/applicationinsights-core-js": 3.3.4 "@microsoft/applicationinsights-shims": 3.0.1 "@microsoft/dynamicproto-js": ^2.0.3 "@nevware21/ts-utils": ">= 0.11.3 < 2.x" peerDependencies: tslib: ">= 1.0.0" - checksum: 78aaadbe6ae32ce04f1ce45588536c6f48af88b4c92e406f5948efb178ddaca696700d6c3c84a819e77004a7112c7ee0d15006b6303cc5bdbe9929a543038cfb + checksum: 37ee8eab5946fb2994e7a73e1dc90357dbeac7d03357a4cb570707ba1b34b0dc4f8fb0c4022e16f147616e0b293ba49c2eb7c09cf68bebda1af13f5d3a3bfaa5 languageName: node linkType: hard -"@microsoft/applicationinsights-cfgsync-js@npm:3.3.3": - version: 3.3.3 - resolution: "@microsoft/applicationinsights-cfgsync-js@npm:3.3.3" +"@microsoft/applicationinsights-cfgsync-js@npm:3.3.4": + version: 3.3.4 + resolution: "@microsoft/applicationinsights-cfgsync-js@npm:3.3.4" dependencies: - "@microsoft/applicationinsights-common": 3.3.3 - "@microsoft/applicationinsights-core-js": 3.3.3 + "@microsoft/applicationinsights-common": 3.3.4 + "@microsoft/applicationinsights-core-js": 3.3.4 "@microsoft/applicationinsights-shims": 3.0.1 "@microsoft/dynamicproto-js": ^2.0.3 "@nevware21/ts-async": ">= 0.5.2 < 2.x" "@nevware21/ts-utils": ">= 0.11.3 < 2.x" peerDependencies: tslib: ">= 1.0.0" - checksum: 21c9b82fcdb53d1b3c2d32cc29682187ee20108a23ff7b79faa5c10148a79e7ee2f655f84ad5b964283a1bf4080edba053d26fb3589402934e8d8359f9ff6840 + checksum: 9ecf937908df68cbe50ff983f537c2c16d1659b6440400d8139f6262c971ca039adaf8c7c27a99c1d008028a9e4d774456ce0fd4e332cd8abd7b26edfbf65d62 languageName: node linkType: hard -"@microsoft/applicationinsights-channel-js@npm:3.3.3": - version: 3.3.3 - resolution: "@microsoft/applicationinsights-channel-js@npm:3.3.3" +"@microsoft/applicationinsights-channel-js@npm:3.3.4": + version: 3.3.4 + resolution: "@microsoft/applicationinsights-channel-js@npm:3.3.4" dependencies: - "@microsoft/applicationinsights-common": 3.3.3 - "@microsoft/applicationinsights-core-js": 3.3.3 + "@microsoft/applicationinsights-common": 3.3.4 + "@microsoft/applicationinsights-core-js": 3.3.4 "@microsoft/applicationinsights-shims": 3.0.1 "@microsoft/dynamicproto-js": ^2.0.3 "@nevware21/ts-async": ">= 0.5.2 < 2.x" "@nevware21/ts-utils": ">= 0.11.3 < 2.x" peerDependencies: tslib: ">= 1.0.0" - checksum: b42543261ff7f444bd945d4c5d9522626267c8e194f1b19da321bcc99e8227f271d91a399a3b342825bd497ee7aceae66f29fa2c04026e0f8823dd6ca1d9f1b8 + checksum: df1c3415a48cb399bc1c2d31d3221479c164a1ece31b836feda7e1f619fd28b7b2f09718523f5480e16f7c637ab8752ed1d56c7859c1c16cef2d85871aebe26a languageName: node linkType: hard -"@microsoft/applicationinsights-common@npm:3.3.3, @microsoft/applicationinsights-common@npm:^3.3.3": - version: 3.3.3 - resolution: "@microsoft/applicationinsights-common@npm:3.3.3" +"@microsoft/applicationinsights-common@npm:3.3.4, @microsoft/applicationinsights-common@npm:^3.3.4": + version: 3.3.4 + resolution: "@microsoft/applicationinsights-common@npm:3.3.4" dependencies: - "@microsoft/applicationinsights-core-js": 3.3.3 + "@microsoft/applicationinsights-core-js": 3.3.4 "@microsoft/applicationinsights-shims": 3.0.1 "@microsoft/dynamicproto-js": ^2.0.3 "@nevware21/ts-utils": ">= 0.11.3 < 2.x" peerDependencies: tslib: ">= 1.0.0" - checksum: a4be6a821bff448b17e1a855a61ede55aec31ae9a8c16bfc62fcee3cfdf072e59abf80890e7a7239472ece53f85630b55141cc13e60228c2da4ea3f862cddadb + checksum: 42af4d6a1165327e291c7ebaee5958ba430996a07a9bcd30531cae4e57c4d768750fcbf6c89a500ece8bc68a44800caecdefa84a25c951f6497021a3de0629b3 languageName: node linkType: hard -"@microsoft/applicationinsights-core-js@npm:3.3.3, @microsoft/applicationinsights-core-js@npm:^3.3.3": - version: 3.3.3 - resolution: "@microsoft/applicationinsights-core-js@npm:3.3.3" +"@microsoft/applicationinsights-core-js@npm:3.3.4, @microsoft/applicationinsights-core-js@npm:^3.3.4": + version: 3.3.4 + resolution: "@microsoft/applicationinsights-core-js@npm:3.3.4" dependencies: "@microsoft/applicationinsights-shims": 3.0.1 "@microsoft/dynamicproto-js": ^2.0.3 @@ -1039,47 +1039,47 @@ __metadata: "@nevware21/ts-utils": ">= 0.11.3 < 2.x" peerDependencies: tslib: ">= 1.0.0" - checksum: 1fcbbfeb4e7e91fc9b4648af84606bd431cb985e1a49f3c8b200c51c1bd51d94eab82bdf75829ea2cd8774de2a8546c0ffa38e6bbd9407d1bf284d8c3706e368 + checksum: c311b25d7004cde84a89aeceda6efb4b668dd5e25afac863607a2f9eed0bac1668534b9f7d8014314118069b1de78107b777828755d7bd071dcdfd0daf4ed258 languageName: node linkType: hard -"@microsoft/applicationinsights-dependencies-js@npm:3.3.3": - version: 3.3.3 - resolution: "@microsoft/applicationinsights-dependencies-js@npm:3.3.3" +"@microsoft/applicationinsights-dependencies-js@npm:3.3.4": + version: 3.3.4 + resolution: "@microsoft/applicationinsights-dependencies-js@npm:3.3.4" dependencies: - "@microsoft/applicationinsights-common": 3.3.3 - "@microsoft/applicationinsights-core-js": 3.3.3 + "@microsoft/applicationinsights-common": 3.3.4 + "@microsoft/applicationinsights-core-js": 3.3.4 "@microsoft/applicationinsights-shims": 3.0.1 "@microsoft/dynamicproto-js": ^2.0.3 "@nevware21/ts-async": ">= 0.5.2 < 2.x" "@nevware21/ts-utils": ">= 0.11.3 < 2.x" peerDependencies: tslib: ">= 1.0.0" - checksum: 5b48cd4c66d9454c0aee6e6805dcc22e2d86d663cb618c4f923e7aac3c9ee355e8acd82459559be45124abe4a620b3a592f51a5ee34f9fd8be6961451fc16f2d + checksum: 6ef58858d2960fd800f073f9569666083cddf43729201d01e32f7528a50342a2e7896579f2c4e564f1ff488176239d7703548941c34b869f0cca534e291d1a77 languageName: node linkType: hard -"@microsoft/applicationinsights-properties-js@npm:3.3.3": - version: 3.3.3 - resolution: "@microsoft/applicationinsights-properties-js@npm:3.3.3" +"@microsoft/applicationinsights-properties-js@npm:3.3.4": + version: 3.3.4 + resolution: "@microsoft/applicationinsights-properties-js@npm:3.3.4" dependencies: - "@microsoft/applicationinsights-common": 3.3.3 - "@microsoft/applicationinsights-core-js": 3.3.3 + "@microsoft/applicationinsights-common": 3.3.4 + "@microsoft/applicationinsights-core-js": 3.3.4 "@microsoft/applicationinsights-shims": 3.0.1 "@microsoft/dynamicproto-js": ^2.0.3 "@nevware21/ts-utils": ">= 0.11.3 < 2.x" peerDependencies: tslib: ">= 1.0.0" - checksum: eba05e2160a1b3aef89653185a593f33ac28b3142df5ecae7aa2d19d17c7a31ffd08af4bd498892dda6bed0b3e1ee5b79d87e216f60328673d4c4a7138f38e94 + checksum: 25bb57c66c5714bfdb50db6adf87782d37bdf51c7656d34be45b9ccdce411f78672f3c26df45862c28d7a5bdbb6def3f385f3a5a20f134f4884d7d0edc4b8056 languageName: node linkType: hard -"@microsoft/applicationinsights-react-js@npm:^17.3.3": - version: 17.3.3 - resolution: "@microsoft/applicationinsights-react-js@npm:17.3.3" +"@microsoft/applicationinsights-react-js@npm:^17.3.4": + version: 17.3.4 + resolution: "@microsoft/applicationinsights-react-js@npm:17.3.4" dependencies: - "@microsoft/applicationinsights-common": ^3.3.3 - "@microsoft/applicationinsights-core-js": ^3.3.3 + "@microsoft/applicationinsights-common": ^3.3.4 + "@microsoft/applicationinsights-core-js": ^3.3.4 "@microsoft/applicationinsights-shims": ^3.0.1 "@microsoft/dynamicproto-js": ^2.0.3 "@nevware21/ts-utils": ">= 0.11.3 < 2.x" @@ -1087,7 +1087,7 @@ __metadata: history: ">= 4.10.1" react: ">= 17.0.1" tslib: "*" - checksum: 0492982f32ee9eca90a93403c0e552721cc1040b3ec013b6b82d9f0ddc26b8b782d89780a9fb3c919cd28773b6e06804b154259bb6b96175f52d2a193c082056 + checksum: 5f321eafb6a3cbf225b8c12322dfad00374c3f59056e97fb9b56ceaac361b5ce3a9a9e002de1bb557041b728b93e489cd15edd94cd299ce4519ebd139f8477b9 languageName: node linkType: hard @@ -1100,24 +1100,24 @@ __metadata: languageName: node linkType: hard -"@microsoft/applicationinsights-web@npm:^3.3.3": - version: 3.3.3 - resolution: "@microsoft/applicationinsights-web@npm:3.3.3" - dependencies: - "@microsoft/applicationinsights-analytics-js": 3.3.3 - "@microsoft/applicationinsights-cfgsync-js": 3.3.3 - "@microsoft/applicationinsights-channel-js": 3.3.3 - "@microsoft/applicationinsights-common": 3.3.3 - "@microsoft/applicationinsights-core-js": 3.3.3 - "@microsoft/applicationinsights-dependencies-js": 3.3.3 - "@microsoft/applicationinsights-properties-js": 3.3.3 +"@microsoft/applicationinsights-web@npm:^3.3.4": + version: 3.3.4 + resolution: "@microsoft/applicationinsights-web@npm:3.3.4" + dependencies: + "@microsoft/applicationinsights-analytics-js": 3.3.4 + "@microsoft/applicationinsights-cfgsync-js": 3.3.4 + "@microsoft/applicationinsights-channel-js": 3.3.4 + "@microsoft/applicationinsights-common": 3.3.4 + "@microsoft/applicationinsights-core-js": 3.3.4 + "@microsoft/applicationinsights-dependencies-js": 3.3.4 + "@microsoft/applicationinsights-properties-js": 3.3.4 "@microsoft/applicationinsights-shims": 3.0.1 "@microsoft/dynamicproto-js": ^2.0.3 "@nevware21/ts-async": ">= 0.5.2 < 2.x" "@nevware21/ts-utils": ">= 0.11.3 < 2.x" peerDependencies: tslib: ">= 1.0.0" - checksum: 47f84a7e30d89156e68d9966f6a6414416a020e6277c37de71aebc08057702a630e6a6cc146f233a8fadaf7707c9ae49c04e50ef6068a4dafbd8e775bf20bc56 + checksum: 68b1f2388f3167a60316f2944a5275fa7fe0275d0fe14d48c2b4082439e823d7b855f12169d92e9ea9663b73356b47734a860d94e7ce8793006db59a2a7e56e2 languageName: node linkType: hard @@ -10403,8 +10403,8 @@ __metadata: "@eslint/js": ^9.13.0 "@mdx-js/react": ^3.1.0 "@mdx-js/rollup": ^3.1.0 - "@microsoft/applicationinsights-react-js": ^17.3.3 - "@microsoft/applicationinsights-web": ^3.3.3 + "@microsoft/applicationinsights-react-js": ^17.3.4 + "@microsoft/applicationinsights-web": ^3.3.4 "@okta/okta-react": ^6.9.0 "@okta/okta-signin-widget": ^7.24.2 "@playwright/test": ^1.49.0 From 24461c2e28a80e2510cbe93e0d7d9e57c005bbe6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:52:37 +0000 Subject: [PATCH 28/34] Bump the utils group across 1 directory with 3 updates (#16561) Bumps the utils group with 3 updates in the /frontend-react directory: [date-fns](https://github.com/date-fns/date-fns), [uuid](https://github.com/uuidjs/uuid) and [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash). Updates `date-fns` from 3.6.0 to 4.1.0 - [Release notes](https://github.com/date-fns/date-fns/releases) - [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md) - [Commits](https://github.com/date-fns/date-fns/compare/v3.6.0...v4.1.0) Updates `uuid` from 10.0.0 to 11.0.3 - [Release notes](https://github.com/uuidjs/uuid/releases) - [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md) - [Commits](https://github.com/uuidjs/uuid/compare/v10.0.0...v11.0.3) Updates `@types/lodash` from 4.17.12 to 4.17.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash) --- updated-dependencies: - dependency-name: date-fns dependency-type: direct:production update-type: version-update:semver-major dependency-group: utils - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-major dependency-group: utils - dependency-name: "@types/lodash" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: utils ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend-react/package.json | 6 +++--- frontend-react/yarn.lock | 33 ++++++++++++++++++++------------- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/frontend-react/package.json b/frontend-react/package.json index d842686c9c0..e3cde1ac062 100644 --- a/frontend-react/package.json +++ b/frontend-react/package.json @@ -16,7 +16,7 @@ "@uswds/uswds": "3.7.1", "axios": "^1.7.7", "classnames": "^2.5.1", - "date-fns": "^3.6.0", + "date-fns": "^4.1.0", "date-fns-tz": "^3.2.0", "dompurify": "^3.2.2", "export-to-csv-fix-source-map": "^0.2.1", @@ -42,7 +42,7 @@ "sanitize-html": "^2.13.1", "tsx": "^4.19.2", "use-deep-compare-effect": "^1.8.1", - "uuid": "^10.0.0", + "uuid": "^11.0.3", "web-vitals": "^3.4.0" }, "scripts": { @@ -137,7 +137,7 @@ "@types/eslint__js": "^8.42.3", "@types/github-slugger": "^1.3.0", "@types/html-to-text": "^9.0.4", - "@types/lodash": "^4.17.12", + "@types/lodash": "^4.17.13", "@types/mdx": "^2.0.13", "@types/node": "^20.12.5", "@types/react": "18.3.11", diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock index 7d2f8d84af1..520f46a4e46 100644 --- a/frontend-react/yarn.lock +++ b/frontend-react/yarn.lock @@ -2825,13 +2825,20 @@ __metadata: languageName: node linkType: hard -"@types/lodash@npm:^4.14.167, @types/lodash@npm:^4.17.12": +"@types/lodash@npm:^4.14.167": version: 4.17.12 resolution: "@types/lodash@npm:4.17.12" checksum: 7b564e4114f09ce5ae31a2e9493592baf20bb498507f3705c5d91cf838c2298b4f6a06f2d6c8dc608fcac63e210a2b7b13388c7a5e220e15688f813521030127 languageName: node linkType: hard +"@types/lodash@npm:^4.17.13": + version: 4.17.13 + resolution: "@types/lodash@npm:4.17.13" + checksum: d0bf8fbd950be71946e0076b30fd40d492293baea75f05931b6b5b906fd62583708c6229abdb95b30205ad24ce1ed2f48bc9d419364f682320edd03405cc0c7e + languageName: node + linkType: hard + "@types/mdast@npm:^4.0.0": version: 4.0.0 resolution: "@types/mdast@npm:4.0.0" @@ -4888,10 +4895,10 @@ __metadata: languageName: node linkType: hard -"date-fns@npm:^3.6.0": - version: 3.6.0 - resolution: "date-fns@npm:3.6.0" - checksum: 0daa1e9a436cf99f9f2ae9232b55e11f3dd46132bee10987164f3eebd29f245b2e066d7d7db40782627411ecf18551d8f4c9fcdf2226e48bb66545407d448ab7 +"date-fns@npm:^4.1.0": + version: 4.1.0 + resolution: "date-fns@npm:4.1.0" + checksum: fb681b242cccabed45494468f64282a7d375ea970e0adbcc5dcc92dcb7aba49b2081c2c9739d41bf71ce89ed68dd73bebfe06ca35129490704775d091895710b languageName: node linkType: hard @@ -10435,7 +10442,7 @@ __metadata: "@types/eslint__js": ^8.42.3 "@types/github-slugger": ^1.3.0 "@types/html-to-text": ^9.0.4 - "@types/lodash": ^4.17.12 + "@types/lodash": ^4.17.13 "@types/mdx": ^2.0.13 "@types/node": ^20.12.5 "@types/react": 18.3.11 @@ -10454,7 +10461,7 @@ __metadata: chromatic: ^11.12.6 classnames: ^2.5.1 cross-env: ^7.0.3 - date-fns: ^3.6.0 + date-fns: ^4.1.0 date-fns-tz: ^3.2.0 dompurify: ^3.2.2 dotenv-flow: ^4.1.0 @@ -10518,7 +10525,7 @@ __metadata: typescript-eslint: ^8.16.0 undici: ^6.20.1 use-deep-compare-effect: ^1.8.1 - uuid: ^10.0.0 + uuid: ^11.0.3 vite: ^5.4.10 vite-plugin-checker: ^0.8.0 vite-plugin-svgr: ^4.2.0 @@ -12815,12 +12822,12 @@ __metadata: languageName: node linkType: hard -"uuid@npm:^10.0.0": - version: 10.0.0 - resolution: "uuid@npm:10.0.0" +"uuid@npm:^11.0.3": + version: 11.0.3 + resolution: "uuid@npm:11.0.3" bin: - uuid: dist/bin/uuid - checksum: 4b81611ade2885d2313ddd8dc865d93d8dccc13ddf901745edca8f86d99bc46d7a330d678e7532e7ebf93ce616679fb19b2e3568873ac0c14c999032acb25869 + uuid: dist/esm/bin/uuid + checksum: 646181c77e8b8df9bd07254faa703943e1c4d5ccde7d080312edf12f443f6c5750801fd9b27bf2e628594182165e6b1b880c0382538f7eca00b26622203741dc languageName: node linkType: hard From ba4d9969f690dc66b66933a84aa58ffdc421acf8 Mon Sep 17 00:00:00 2001 From: MichaelEsuruoso Date: Tue, 3 Dec 2024 14:24:45 -0700 Subject: [PATCH 29/34] Update platform-epic-template.md (#16702) * Update platform-epic-template.md --- .github/ISSUE_TEMPLATE/platform-epic-template.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/platform-epic-template.md b/.github/ISSUE_TEMPLATE/platform-epic-template.md index f6bd412152e..12c7548c4bb 100644 --- a/.github/ISSUE_TEMPLATE/platform-epic-template.md +++ b/.github/ISSUE_TEMPLATE/platform-epic-template.md @@ -8,22 +8,28 @@ assignees: '' --- ## Outcome/Objective + ## Description + ## Product Requirement(s) + ## Use Case(s) + ## Dependencies + ## Acceptance criteria + ## Technical Requirement(s) \ No newline at end of file +--> From e78bd7f18d8e890ca8282f4d38dc7400596171dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 16:56:02 -0600 Subject: [PATCH 30/34] Bump the storybook group across 1 directory with 14 updates (#16706) Bumps the storybook group with 14 updates in the /frontend-react directory: | Package | From | To | | --- | --- | --- | | [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `8.3.6` | `8.4.6` | | [@storybook/addon-actions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/actions) | `8.3.6` | `8.4.6` | | [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.3.6` | `8.4.6` | | [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.3.6` | `8.4.6` | | [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.3.6` | `8.4.6` | | [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.3.6` | `8.4.6` | | [@storybook/components](https://github.com/storybookjs/storybook/tree/HEAD/code/deprecated/components) | `8.3.6` | `8.4.6` | | [@storybook/core-events](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/core-events) | `8.3.6` | `8.4.6` | | [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.3.6` | `8.4.6` | | [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.3.6` | `8.4.6` | | [@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming) | `8.3.6` | `8.4.6` | | [chromatic](https://github.com/chromaui/chromatic-cli) | `11.12.6` | `11.20.0` | | [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook) | `0.10.1` | `0.11.1` | | [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.3.6` | `8.4.6` | Updates `@storybook/addon-a11y` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/addons/a11y) Updates `@storybook/addon-actions` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/addons/actions) Updates `@storybook/addon-essentials` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/addons/essentials) Updates `@storybook/addon-interactions` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/addons/interactions) Updates `@storybook/addon-links` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/addons/links) Updates `@storybook/blocks` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/lib/blocks) Updates `@storybook/components` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/deprecated/components) Updates `@storybook/core-events` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/lib/core-events) Updates `@storybook/react` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/renderers/react) Updates `@storybook/react-vite` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/frameworks/react-vite) Updates `@storybook/theming` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/lib/theming) Updates `chromatic` from 11.12.6 to 11.20.0 - [Release notes](https://github.com/chromaui/chromatic-cli/releases) - [Changelog](https://github.com/chromaui/chromatic-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/chromaui/chromatic-cli/compare/v11.12.6...v11.20.0) Updates `eslint-plugin-storybook` from 0.10.1 to 0.11.1 - [Release notes](https://github.com/storybookjs/eslint-plugin-storybook/releases) - [Changelog](https://github.com/storybookjs/eslint-plugin-storybook/blob/main/CHANGELOG.md) - [Commits](https://github.com/storybookjs/eslint-plugin-storybook/compare/v0.10.1...v0.11.1) Updates `storybook` from 8.3.6 to 8.4.6 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.6/code/lib/cli) --- updated-dependencies: - dependency-name: "@storybook/addon-a11y" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/addon-actions" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/addon-essentials" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/addon-interactions" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/addon-links" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/blocks" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/components" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/core-events" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/react" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/react-vite" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: "@storybook/theming" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: chromatic dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: eslint-plugin-storybook dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook - dependency-name: storybook dependency-type: direct:development update-type: version-update:semver-minor dependency-group: storybook ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend-react/package.json | 28 +- frontend-react/yarn.lock | 1615 ++++++++++++----------------------- 2 files changed, 548 insertions(+), 1095 deletions(-) diff --git a/frontend-react/package.json b/frontend-react/package.json index e3cde1ac062..873a5498af9 100644 --- a/frontend-react/package.json +++ b/frontend-react/package.json @@ -115,19 +115,19 @@ "@mdx-js/rollup": "^3.1.0", "@playwright/test": "^1.49.0", "@rest-hooks/test": "^7.3.1", - "@storybook/addon-a11y": "^8.3.6", - "@storybook/addon-actions": "^8.3.6", - "@storybook/addon-essentials": "^8.3.6", - "@storybook/addon-interactions": "^8.3.6", - "@storybook/addon-links": "^8.3.6", - "@storybook/blocks": "^8.3.6", - "@storybook/components": "^8.3.6", - "@storybook/core-events": "^8.3.6", + "@storybook/addon-a11y": "^8.4.6", + "@storybook/addon-actions": "^8.4.6", + "@storybook/addon-essentials": "^8.4.6", + "@storybook/addon-interactions": "^8.4.6", + "@storybook/addon-links": "^8.4.6", + "@storybook/blocks": "^8.4.6", + "@storybook/components": "^8.4.6", + "@storybook/core-events": "^8.4.6", "@storybook/mdx2-csf": "1.1.0", - "@storybook/react": "^8.3.6", - "@storybook/react-vite": "^8.3.6", + "@storybook/react": "^8.4.6", + "@storybook/react-vite": "^8.4.6", "@storybook/testing-library": "^0.2.2", - "@storybook/theming": "^8.3.6", + "@storybook/theming": "^8.4.6", "@testing-library/dom": "^10.4.0", "@testing-library/jest-dom": "^6.6.2", "@testing-library/react": "^16.0.1", @@ -151,7 +151,7 @@ "autoprefixer": "^10.4.20", "browserslist": "^4.24.2", "browserslist-useragent-regexp": "^4.1.3", - "chromatic": "^11.12.6", + "chromatic": "^11.20.0", "cross-env": "^7.0.3", "dotenv-flow": "^4.1.0", "eslint": "9.13.0", @@ -164,7 +164,7 @@ "eslint-plugin-react": "^7.37.2", "eslint-plugin-react-hooks": "^5.0.0", "eslint-plugin-react-refresh": "^0.4.14", - "eslint-plugin-storybook": "^0.10.1", + "eslint-plugin-storybook": "^0.11.1", "eslint-plugin-testing-library": "^6.4.0", "eslint-plugin-vitest": "^0.5.4", "globals": "^15.11.0", @@ -184,7 +184,7 @@ "remark-mdx-frontmatter": "^5.0.0", "remark-mdx-toc": "^0.3.1", "sass": "^1.81.0", - "storybook": "^8.3.6", + "storybook": "^8.4.6", "storybook-addon-remix-react-router": "^3.0.1", "ts-node": "^10.9.2", "tslib": "^2.8.1", diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock index 520f46a4e46..ae8a0f46b49 100644 --- a/frontend-react/yarn.lock +++ b/frontend-react/yarn.lock @@ -266,13 +266,6 @@ __metadata: languageName: node linkType: hard -"@base2/pretty-print-object@npm:1.0.1": - version: 1.0.1 - resolution: "@base2/pretty-print-object@npm:1.0.1" - checksum: 1e8a5af578037a9d47d72f815983f9e4efb038e5f03e7635fc893194c5daa723215d71af33267893a9b618656c8eaea7be931b1c063c9b066a40994be0d23545 - languageName: node - linkType: hard - "@bundled-es-modules/cookie@npm:^2.0.0": version: 2.0.0 resolution: "@bundled-es-modules/cookie@npm:2.0.0" @@ -347,6 +340,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/aix-ppc64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/aix-ppc64@npm:0.24.0" + conditions: os=aix & cpu=ppc64 + languageName: node + linkType: hard + "@esbuild/android-arm64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/android-arm64@npm:0.21.5" @@ -361,6 +361,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-arm64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/android-arm64@npm:0.24.0" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/android-arm@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/android-arm@npm:0.21.5" @@ -375,6 +382,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-arm@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/android-arm@npm:0.24.0" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + "@esbuild/android-x64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/android-x64@npm:0.21.5" @@ -389,6 +403,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-x64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/android-x64@npm:0.24.0" + conditions: os=android & cpu=x64 + languageName: node + linkType: hard + "@esbuild/darwin-arm64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/darwin-arm64@npm:0.21.5" @@ -403,6 +424,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/darwin-arm64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/darwin-arm64@npm:0.24.0" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/darwin-x64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/darwin-x64@npm:0.21.5" @@ -417,6 +445,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/darwin-x64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/darwin-x64@npm:0.24.0" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + "@esbuild/freebsd-arm64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/freebsd-arm64@npm:0.21.5" @@ -431,6 +466,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/freebsd-arm64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/freebsd-arm64@npm:0.24.0" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/freebsd-x64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/freebsd-x64@npm:0.21.5" @@ -445,6 +487,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/freebsd-x64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/freebsd-x64@npm:0.24.0" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/linux-arm64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/linux-arm64@npm:0.21.5" @@ -459,6 +508,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-arm64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/linux-arm64@npm:0.24.0" + conditions: os=linux & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/linux-arm@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/linux-arm@npm:0.21.5" @@ -473,6 +529,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-arm@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/linux-arm@npm:0.24.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + "@esbuild/linux-ia32@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/linux-ia32@npm:0.21.5" @@ -487,6 +550,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-ia32@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/linux-ia32@npm:0.24.0" + conditions: os=linux & cpu=ia32 + languageName: node + linkType: hard + "@esbuild/linux-loong64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/linux-loong64@npm:0.21.5" @@ -501,6 +571,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-loong64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/linux-loong64@npm:0.24.0" + conditions: os=linux & cpu=loong64 + languageName: node + linkType: hard + "@esbuild/linux-mips64el@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/linux-mips64el@npm:0.21.5" @@ -515,6 +592,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-mips64el@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/linux-mips64el@npm:0.24.0" + conditions: os=linux & cpu=mips64el + languageName: node + linkType: hard + "@esbuild/linux-ppc64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/linux-ppc64@npm:0.21.5" @@ -529,6 +613,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-ppc64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/linux-ppc64@npm:0.24.0" + conditions: os=linux & cpu=ppc64 + languageName: node + linkType: hard + "@esbuild/linux-riscv64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/linux-riscv64@npm:0.21.5" @@ -543,6 +634,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-riscv64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/linux-riscv64@npm:0.24.0" + conditions: os=linux & cpu=riscv64 + languageName: node + linkType: hard + "@esbuild/linux-s390x@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/linux-s390x@npm:0.21.5" @@ -557,6 +655,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-s390x@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/linux-s390x@npm:0.24.0" + conditions: os=linux & cpu=s390x + languageName: node + linkType: hard + "@esbuild/linux-x64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/linux-x64@npm:0.21.5" @@ -571,6 +676,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-x64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/linux-x64@npm:0.24.0" + conditions: os=linux & cpu=x64 + languageName: node + linkType: hard + "@esbuild/netbsd-x64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/netbsd-x64@npm:0.21.5" @@ -585,6 +697,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/netbsd-x64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/netbsd-x64@npm:0.24.0" + conditions: os=netbsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/openbsd-arm64@npm:0.23.1": version: 0.23.1 resolution: "@esbuild/openbsd-arm64@npm:0.23.1" @@ -592,6 +711,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/openbsd-arm64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/openbsd-arm64@npm:0.24.0" + conditions: os=openbsd & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/openbsd-x64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/openbsd-x64@npm:0.21.5" @@ -606,6 +732,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/openbsd-x64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/openbsd-x64@npm:0.24.0" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/sunos-x64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/sunos-x64@npm:0.21.5" @@ -620,6 +753,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/sunos-x64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/sunos-x64@npm:0.24.0" + conditions: os=sunos & cpu=x64 + languageName: node + linkType: hard + "@esbuild/win32-arm64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/win32-arm64@npm:0.21.5" @@ -634,6 +774,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-arm64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/win32-arm64@npm:0.24.0" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/win32-ia32@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/win32-ia32@npm:0.21.5" @@ -648,6 +795,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-ia32@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/win32-ia32@npm:0.24.0" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + "@esbuild/win32-x64@npm:0.21.5": version: 0.21.5 resolution: "@esbuild/win32-x64@npm:0.21.5" @@ -662,6 +816,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-x64@npm:0.24.0": + version: 0.24.0 + resolution: "@esbuild/win32-x64@npm:0.24.0" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + "@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": version: 4.4.0 resolution: "@eslint-community/eslint-utils@npm:4.4.0" @@ -841,21 +1002,19 @@ __metadata: languageName: node linkType: hard -"@joshwooding/vite-plugin-react-docgen-typescript@npm:0.3.0": - version: 0.3.0 - resolution: "@joshwooding/vite-plugin-react-docgen-typescript@npm:0.3.0" +"@joshwooding/vite-plugin-react-docgen-typescript@npm:0.4.2": + version: 0.4.2 + resolution: "@joshwooding/vite-plugin-react-docgen-typescript@npm:0.4.2" dependencies: - glob: ^7.2.0 - glob-promise: ^4.2.0 magic-string: ^0.27.0 react-docgen-typescript: ^2.2.2 peerDependencies: typescript: ">= 4.3.x" - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 3fe2dc68dcb43920cc08bc5cc2937953bed1080e9c453dc3f513156b9a862fe6af0cda94b70272a4844a27964070129f8d0d31056211b1486a8fd9f6e1c20559 + checksum: 0841d93df4ed4230b9e96a38cab044b5dbc6acba567dcbaecb9aa035b22b67b6b234c90b13d963f5a8104a5a03e56932677e37f3278275fbaeedede7c2633cbb languageName: node linkType: hard @@ -1736,21 +1895,21 @@ __metadata: languageName: node linkType: hard -"@storybook/addon-a11y@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-a11y@npm:8.3.6" +"@storybook/addon-a11y@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-a11y@npm:8.4.6" dependencies: - "@storybook/addon-highlight": 8.3.6 + "@storybook/addon-highlight": 8.4.6 axe-core: ^4.2.0 peerDependencies: - storybook: ^8.3.6 - checksum: 3a6b79dd65afc1c5cea2f07e7b41bd743ac0a9821347cbc5d608152bf48d77033c564b6e27c409e98ff2a0c2739883a9346def7f7f2223bef8a9c40d8004f4cd + storybook: ^8.4.6 + checksum: 11e35718ec11d575fe3c44e83967cf23d9824ed0fdd3b7574626fe48e8aded7fb0b5d32a37e463bcb8f835d0b1a4bf64fb90ae7481fd7144cb3370ad841811e8 languageName: node linkType: hard -"@storybook/addon-actions@npm:8.3.6, @storybook/addon-actions@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-actions@npm:8.3.6" +"@storybook/addon-actions@npm:8.4.6, @storybook/addon-actions@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-actions@npm:8.4.6" dependencies: "@storybook/global": ^5.0.0 "@types/uuid": ^9.0.1 @@ -1758,275 +1917,245 @@ __metadata: polished: ^4.2.2 uuid: ^9.0.0 peerDependencies: - storybook: ^8.3.6 - checksum: 3a663297494d39d846a50d0b372977843a0cfcbb77b622cd499a95274c404e17817d324f90dc8fa22a74040200276d124719de8a703b19a3e79b98e08ed6d403 + storybook: ^8.4.6 + checksum: 93a453321f14eddf7f58e4c235e6ebbee5a9b680453834cc5593ff59d7607d9e99c53d5fac9bf59f6072c3a6f64a5f53174078c9e6c9054b125dc4c25be43842 languageName: node linkType: hard -"@storybook/addon-backgrounds@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-backgrounds@npm:8.3.6" +"@storybook/addon-backgrounds@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-backgrounds@npm:8.4.6" dependencies: "@storybook/global": ^5.0.0 memoizerific: ^1.11.3 ts-dedent: ^2.0.0 peerDependencies: - storybook: ^8.3.6 - checksum: 91a8154142dafb65f482035e373420027bc6f1664b3ae48aa459a69a466e8a69580f7398d9a70815a86b57d5ea624e9844dbe9c5fc03a9e104eff17fd11f3d14 + storybook: ^8.4.6 + checksum: acedc2b2b74dafc6cd236ec815f568b33f9cbf2eb714209f3ef8594df9bff29b72cf3d3aba3e778cb0cd962acaa7352657de353914353fbbd235d0ff37acfbd2 languageName: node linkType: hard -"@storybook/addon-controls@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-controls@npm:8.3.6" +"@storybook/addon-controls@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-controls@npm:8.4.6" dependencies: "@storybook/global": ^5.0.0 dequal: ^2.0.2 - lodash: ^4.17.21 ts-dedent: ^2.0.0 peerDependencies: - storybook: ^8.3.6 - checksum: 29eb23a769ebdff8857d604399da6478d55b82ea689df0707828be16754897fedda2997043f1d92964137aab5e40576c994de12fe355432e2c3ea12e3c99006e + storybook: ^8.4.6 + checksum: bd0804d54d7dbcf4a557738240aaf07c4cc1f022141c85f13d62a0029d8d363b1a7435330f0ee161cc3519e597a0bcfe4f7c16285447cca4eda23148d6a1cb4c languageName: node linkType: hard -"@storybook/addon-docs@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-docs@npm:8.3.6" +"@storybook/addon-docs@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-docs@npm:8.4.6" dependencies: "@mdx-js/react": ^3.0.0 - "@storybook/blocks": 8.3.6 - "@storybook/csf-plugin": 8.3.6 - "@storybook/global": ^5.0.0 - "@storybook/react-dom-shim": 8.3.6 - "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 - fs-extra: ^11.1.0 + "@storybook/blocks": 8.4.6 + "@storybook/csf-plugin": 8.4.6 + "@storybook/react-dom-shim": 8.4.6 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - rehype-external-links: ^3.0.0 - rehype-slug: ^6.0.0 ts-dedent: ^2.0.0 peerDependencies: - storybook: ^8.3.6 - checksum: 00bba806e67a83f8dcab67171f9318932ddf0d9b16da3b80923558458d85253b820982ef05419b0b1d8c7ba6bdea4b70308facc081df8102a8f989bdd470d0cd + storybook: ^8.4.6 + checksum: 767bdbc9c83ac10129ec5863ccf2b658ad1807e1a22def2f734d4edde1791291d66186eca30a31ce57cf1863601a03dde075441ef60a9b0e66080a16ca9ed481 languageName: node linkType: hard -"@storybook/addon-essentials@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-essentials@npm:8.3.6" +"@storybook/addon-essentials@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-essentials@npm:8.4.6" dependencies: - "@storybook/addon-actions": 8.3.6 - "@storybook/addon-backgrounds": 8.3.6 - "@storybook/addon-controls": 8.3.6 - "@storybook/addon-docs": 8.3.6 - "@storybook/addon-highlight": 8.3.6 - "@storybook/addon-measure": 8.3.6 - "@storybook/addon-outline": 8.3.6 - "@storybook/addon-toolbars": 8.3.6 - "@storybook/addon-viewport": 8.3.6 + "@storybook/addon-actions": 8.4.6 + "@storybook/addon-backgrounds": 8.4.6 + "@storybook/addon-controls": 8.4.6 + "@storybook/addon-docs": 8.4.6 + "@storybook/addon-highlight": 8.4.6 + "@storybook/addon-measure": 8.4.6 + "@storybook/addon-outline": 8.4.6 + "@storybook/addon-toolbars": 8.4.6 + "@storybook/addon-viewport": 8.4.6 ts-dedent: ^2.0.0 peerDependencies: - storybook: ^8.3.6 - checksum: 4b15ece66548adfefe41bcfed67aa60526253a47b36245fa63b523986e106f7399b6a1720f59a260ae89a7629b4ebefafca3a19853c5ccecd0b2f259f8dd0c3a + storybook: ^8.4.6 + checksum: 72915e83a3cbae4c302d76721f1b3446455f7dbc49f76234e8b25f673cf69f448a1c3aeae121e800bec4aee35c55031ef1b430a0827e358c6dce4ee17375704a languageName: node linkType: hard -"@storybook/addon-highlight@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-highlight@npm:8.3.6" +"@storybook/addon-highlight@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-highlight@npm:8.4.6" dependencies: "@storybook/global": ^5.0.0 peerDependencies: - storybook: ^8.3.6 - checksum: f8ca6d3d6693cba9e7e049c36c7b9ee4d8687dd305f3e87f11f1b8da2b077b6285a45c3ab7a2fe49d3ab273bd7b6b0e1161d12c9fcd0497107ed1985f7e815c6 + storybook: ^8.4.6 + checksum: 6549a3e859f3ed20a7defe73fa91eda0753d6412210a1c0fdcbc51c48f55a963064743224b56285b4c9d7d42a8fc195cbd5c052ac992c34fbcec798de9368e98 languageName: node linkType: hard -"@storybook/addon-interactions@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-interactions@npm:8.3.6" +"@storybook/addon-interactions@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-interactions@npm:8.4.6" dependencies: "@storybook/global": ^5.0.0 - "@storybook/instrumenter": 8.3.6 - "@storybook/test": 8.3.6 + "@storybook/instrumenter": 8.4.6 + "@storybook/test": 8.4.6 polished: ^4.2.2 ts-dedent: ^2.2.0 peerDependencies: - storybook: ^8.3.6 - checksum: ba8061346255b34d4a8131946350485e7a7d1d3c29796dac4b733385ab8e87bbf9ea01a61f557a50e9bbc7da5aec9d10a6c309ce288950f80550e87a369dde11 + storybook: ^8.4.6 + checksum: 7ab3e92943b4073c54546a4fb6e1760524f8af60b3acd18ddac57b164094984f3331b76b9b35ee5d05c820bcf34d6e254ad93346fbf352030641a7b599deff89 languageName: node linkType: hard -"@storybook/addon-links@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-links@npm:8.3.6" +"@storybook/addon-links@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-links@npm:8.4.6" dependencies: "@storybook/csf": ^0.1.11 "@storybook/global": ^5.0.0 ts-dedent: ^2.0.0 peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.3.6 + storybook: ^8.4.6 peerDependenciesMeta: react: optional: true - checksum: 1c6a1483098e5f1292824cb038d7a0efae78a8aee86e940092200b646501a6e4713a24e422fd3dd25781f17e08276dc5156cf3f4838b92a029fff2b4f3eb4e84 + checksum: 4874a60332a14048ac47d4d46eadc9207622eefdc8ad0abff58a0e6ec997a4de3ab69bf91a3b00be1fc009d58f4ce50c53feceef48f34cab8d185aa4443e95a1 languageName: node linkType: hard -"@storybook/addon-measure@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-measure@npm:8.3.6" +"@storybook/addon-measure@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-measure@npm:8.4.6" dependencies: "@storybook/global": ^5.0.0 tiny-invariant: ^1.3.1 peerDependencies: - storybook: ^8.3.6 - checksum: 1c12baf9681a7b200594ce0bd1ac4a0645994a082fc6536fb24f61be2ae529796dda1dc65b9cfc5e4947ae9036405df62f56369d8ec696a0bd6bc0dcc8a7b7ab + storybook: ^8.4.6 + checksum: 30a73659f2eafea2cfcd4727c6af159739e33d8de6e7aa9703311d4de1c752f512a0cdbea76079a6169f5bcbdd0519771284d18d050374e3e4721d12d780fe9b languageName: node linkType: hard -"@storybook/addon-outline@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-outline@npm:8.3.6" +"@storybook/addon-outline@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-outline@npm:8.4.6" dependencies: "@storybook/global": ^5.0.0 ts-dedent: ^2.0.0 peerDependencies: - storybook: ^8.3.6 - checksum: eb3610cd1842c0234217745643aae4acb59af183202a885c3bb7e70a81864b49f15268e0f51bb15eef628068d93e9b76781e4cd7be42c3dbffc1c21d21cccfec + storybook: ^8.4.6 + checksum: 82b864ecc476d1c8b2ff8ccb587868b7a81610f527706873fbe4846a31f865b5c8bc17c3f59991ba73b0c200ecd06b1a4d75c5903024f7763cd0a0d1efcba322 languageName: node linkType: hard -"@storybook/addon-toolbars@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-toolbars@npm:8.3.6" +"@storybook/addon-toolbars@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-toolbars@npm:8.4.6" peerDependencies: - storybook: ^8.3.6 - checksum: 843730ab0111d869c5b913b5ad9aa0fce24e179b6f4c43f9da3fe046a929224943b3efa54652dac290baf2940916f08487f26828afa8ad3bc1523c1a039469a4 + storybook: ^8.4.6 + checksum: 7b5737c2d1eb62ab8ce3245b3791ab0000b745aab9094beca52a146af335c4caf9df9429d9f868184e3ff05ba8952a5f2d5bc82f7a863a67fec24f22abf90d4d languageName: node linkType: hard -"@storybook/addon-viewport@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/addon-viewport@npm:8.3.6" +"@storybook/addon-viewport@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/addon-viewport@npm:8.4.6" dependencies: memoizerific: ^1.11.3 peerDependencies: - storybook: ^8.3.6 - checksum: b4cfe34ddcdab01432f9380dcb3d8f9073a26765349ac7e4f5801f83b3162e1db74c759acd914d3445721d39f72b03919a319f08f9ddfbaa623711ccaa139f23 + storybook: ^8.4.6 + checksum: ada45a76dc0311a7c8b8740ef6ca5f7f78201252d2157595a01c50f7de3773ebda4daf3a7ad0744687c8d6cbf730fc8c731b229029068ff6020eb09d9ed03e93 languageName: node linkType: hard -"@storybook/blocks@npm:8.3.6, @storybook/blocks@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/blocks@npm:8.3.6" +"@storybook/blocks@npm:8.4.6, @storybook/blocks@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/blocks@npm:8.4.6" dependencies: "@storybook/csf": ^0.1.11 - "@storybook/global": ^5.0.0 - "@storybook/icons": ^1.2.10 - "@types/lodash": ^4.14.167 - color-convert: ^2.0.1 - dequal: ^2.0.2 - lodash: ^4.17.21 - markdown-to-jsx: ^7.4.5 - memoizerific: ^1.11.3 - polished: ^4.2.2 - react-colorful: ^5.1.2 - telejson: ^7.2.0 + "@storybook/icons": ^1.2.12 ts-dedent: ^2.0.0 - util-deprecate: ^1.0.2 peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.3.6 + storybook: ^8.4.6 peerDependenciesMeta: react: optional: true react-dom: optional: true - checksum: 17b929a9b3ce585740dcd282a085ecdfc35f11393979f5eabbe8cdde9838eb6faa5e0738e20fc3e67f701092b626cbf53298ff68d5d5d370dca0a36a4a823e56 + checksum: 355c242c2dbc0ae11816b1882673db4e2c2ffe354284a023717d29ef23a623f1b0ff945798018293c20092c7a2d89d302f8ac48e6156deb90f313a426a9d1c74 languageName: node linkType: hard -"@storybook/builder-vite@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/builder-vite@npm:8.3.6" +"@storybook/builder-vite@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/builder-vite@npm:8.4.6" dependencies: - "@storybook/csf-plugin": 8.3.6 - "@types/find-cache-dir": ^3.2.1 + "@storybook/csf-plugin": 8.4.6 browser-assert: ^1.2.1 - es-module-lexer: ^1.5.0 - express: ^4.19.2 - find-cache-dir: ^3.0.0 - fs-extra: ^11.1.0 - magic-string: ^0.30.0 ts-dedent: ^2.0.0 peerDependencies: - "@preact/preset-vite": "*" - storybook: ^8.3.6 - typescript: ">= 4.3.x" - vite: ^4.0.0 || ^5.0.0 - vite-plugin-glimmerx: "*" - peerDependenciesMeta: - "@preact/preset-vite": - optional: true - typescript: - optional: true - vite-plugin-glimmerx: - optional: true - checksum: 3cca69f6e0188d238210d01c721a82d11f54acf3ae6e72d3eb050157a448420131e8957545027b184a13ce68a58fc3c78ea5290030357ecf15638c06bc3ea232 + storybook: ^8.4.6 + vite: ^4.0.0 || ^5.0.0 || ^6.0.0 + checksum: 9c3e875dbb3564732445b26b8811a063fe9faa103fa6dfb120d5073b9286df03415e1405bf6f9b090c1e3e676d9a7fd1c61ffebeb5914fc566f9dd14242b5093 languageName: node linkType: hard -"@storybook/components@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/components@npm:8.3.6" +"@storybook/components@npm:8.4.6, @storybook/components@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/components@npm:8.4.6" peerDependencies: - storybook: ^8.3.6 - checksum: 778a114ddba6bd71ce18a8659c4c8b9b4cbcfa5665a68e3bae9467c492a218c2d95ded0825cc920984a6017f12ce811f48517812eb0de2183623cd06be677d7a + storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 + checksum: 66b08f840017e279274a0be2d9cba9edaa50139d5d7cdd9f148ff815f693db0026531e3e15efc9706c9e32aeccb0a97717aca7b81a2119b79f5875a69f0b81a3 languageName: node linkType: hard -"@storybook/core-events@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/core-events@npm:8.3.6" +"@storybook/core-events@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/core-events@npm:8.4.6" peerDependencies: - storybook: ^8.3.6 - checksum: bcf7a0f86cfaace4394eae8c7b747f5265e59304f5a4adc7fab266f09166e77896729d556319fcfcb5a6b6608ef1e6451f2c0a1e27832c7d870f0e298c40f6f5 + storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 + checksum: 6c7908e1462e9eaf2457b539328309399c17ab791ad6c1ac5e58bcaca1ad9473ba03cf91d54bf53c3e8fa5ab667ebddd91e975f3af274e71748fd22c040abfb1 languageName: node linkType: hard -"@storybook/core@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/core@npm:8.3.6" +"@storybook/core@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/core@npm:8.4.6" dependencies: "@storybook/csf": ^0.1.11 - "@types/express": ^4.17.21 better-opn: ^3.0.2 browser-assert: ^1.2.1 - esbuild: ^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 + esbuild: ^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 esbuild-register: ^3.5.0 - express: ^4.19.2 jsdoc-type-pratt-parser: ^4.0.0 process: ^0.11.10 recast: ^0.23.5 semver: ^7.6.2 util: ^0.12.5 ws: ^8.2.3 - checksum: 06b07b544b14e9badde9f4348282d8b6103af366f7c631656f12a02beb9bc9e150c2859fcb9b72e9690c20f7c240ccc2ace0ccdc0a7cef13187161e3fc952ff3 + peerDependencies: + prettier: ^2 || ^3 + peerDependenciesMeta: + prettier: + optional: true + checksum: c9c4b5aa1f49ee8e3b51c2e179cbafd6826415e6a788a0b11a04bf0dedbbb56b81dd187719086cdeb695fa31c46709dc6184027e2938eb5fc9ab41c4ed2b15d7 languageName: node linkType: hard -"@storybook/csf-plugin@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/csf-plugin@npm:8.3.6" +"@storybook/csf-plugin@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/csf-plugin@npm:8.4.6" dependencies: unplugin: ^1.3.1 peerDependencies: - storybook: ^8.3.6 - checksum: 08cd3f8563808889877484f112bca7bca496f3ea195e18660941f11644422282062135a40e0f5f732fee9b5d7a214baddf2a9e58eb10d5ff54bd30b61ee0923d + storybook: ^8.4.6 + checksum: e09a2175bc3af950668a307626bcc68b51c88b8404e39f2a57942097ff638b5c997aafaaf694493dac611b11572863f8a9cb6246c0b117a07c0d650299fff620 languageName: node linkType: hard @@ -2046,7 +2175,7 @@ __metadata: languageName: node linkType: hard -"@storybook/icons@npm:^1.2.10": +"@storybook/icons@npm:^1.2.12": version: 1.2.12 resolution: "@storybook/icons@npm:1.2.12" peerDependencies: @@ -2056,25 +2185,24 @@ __metadata: languageName: node linkType: hard -"@storybook/instrumenter@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/instrumenter@npm:8.3.6" +"@storybook/instrumenter@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/instrumenter@npm:8.4.6" dependencies: "@storybook/global": ^5.0.0 - "@vitest/utils": ^2.0.5 - util: ^0.12.4 + "@vitest/utils": ^2.1.1 peerDependencies: - storybook: ^8.3.6 - checksum: 4e6fe75ce1418a117ff765e3e134760a23c3fac234bf25ee52c40d2e69163efff78c271a1e7836909278d528a90a670fc45af2d8b5708f5a014a5875f2992ccf + storybook: ^8.4.6 + checksum: faa8e6ec52a4e8ef0313601e477cc1a8097960774f5d98bc2e928539dc785eaf5c7e0659fe8013f0c18c09222de92fb68667e728219d73d3b39b3bafe3bb815c languageName: node linkType: hard -"@storybook/manager-api@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/manager-api@npm:8.3.6" +"@storybook/manager-api@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/manager-api@npm:8.4.6" peerDependencies: - storybook: ^8.3.6 - checksum: 94faf62726b948c2f8e52e15ac99f4ca2f5884a874fbecda6a81e58a03ff316d17ed36c8c146bd388bb58dad2a2bd09cd61c6d7fc1ff2cddfc774c2aed34e37c + storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 + checksum: f6deb13cc36852681a54a0a7ec4fed17dab7ae496f07b667e5550950186fd5569b53a21ea0a1416997cda202d47710684bc2da251cb3ea495f59160199e52076 languageName: node linkType: hard @@ -2085,34 +2213,34 @@ __metadata: languageName: node linkType: hard -"@storybook/preview-api@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/preview-api@npm:8.3.6" +"@storybook/preview-api@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/preview-api@npm:8.4.6" peerDependencies: - storybook: ^8.3.6 - checksum: 5a645dc19308b69020da2ee282860666c6f7ebe45525802cb4da3d4e496f410a30915e570ae4a07b23d429a5d7f0c7254d9f76e6bc236ff2a85b0cc0e56b0ad0 + storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 + checksum: 9771ea6d3e3a6d48ca926293d6521caeec370f7c51527400ec9d184c9b41c580567f00661a568d66eb5d34b9a7e8703e3c2cc9b1cf91be6acb324d134c7c9f02 languageName: node linkType: hard -"@storybook/react-dom-shim@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/react-dom-shim@npm:8.3.6" +"@storybook/react-dom-shim@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/react-dom-shim@npm:8.4.6" peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.3.6 - checksum: 4d65deef18aef9ad019b5b37fae511934232299418a3278c67ba396f2108e7150223c176eb42adb6ea91e35da8da6f4bbe57a96105c2201a7e6ae1bebad871e5 + storybook: ^8.4.6 + checksum: d64daafa29ec8e1cfc29fbfd75ade6ae3287c69d28022cd1d7966bc2cbd75911237cf53db68e5c8c787452e69f36f7ba1aba2f981732684343d16b79cb3c5d07 languageName: node linkType: hard -"@storybook/react-vite@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/react-vite@npm:8.3.6" +"@storybook/react-vite@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/react-vite@npm:8.4.6" dependencies: - "@joshwooding/vite-plugin-react-docgen-typescript": 0.3.0 + "@joshwooding/vite-plugin-react-docgen-typescript": 0.4.2 "@rollup/pluginutils": ^5.0.2 - "@storybook/builder-vite": 8.3.6 - "@storybook/react": 8.3.6 + "@storybook/builder-vite": 8.4.6 + "@storybook/react": 8.4.6 find-up: ^5.0.0 magic-string: ^0.30.0 react-docgen: ^7.0.0 @@ -2121,67 +2249,52 @@ __metadata: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.3.6 - vite: ^4.0.0 || ^5.0.0 - checksum: 7e2bd71e84640497595a9b8263527b2015bec29cff9743ace849e174957c3a6c4d62b216ff1f59bb31a8c11f2127042fff8a4d5ef3afb1857dba170941562b66 + storybook: ^8.4.6 + vite: ^4.0.0 || ^5.0.0 || ^6.0.0 + checksum: df6d153f1ecbc5299470825e9217207a2833729144f633cfb1083bf5fed75394d7a06bd32c3b0a7bd0ed67ef429adbd5799560258ecd91213269f3f3c9b9d54b languageName: node linkType: hard -"@storybook/react@npm:8.3.6, @storybook/react@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/react@npm:8.3.6" +"@storybook/react@npm:8.4.6, @storybook/react@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/react@npm:8.4.6" dependencies: - "@storybook/components": ^8.3.6 + "@storybook/components": 8.4.6 "@storybook/global": ^5.0.0 - "@storybook/manager-api": ^8.3.6 - "@storybook/preview-api": ^8.3.6 - "@storybook/react-dom-shim": 8.3.6 - "@storybook/theming": ^8.3.6 - "@types/escodegen": ^0.0.6 - "@types/estree": ^0.0.51 - "@types/node": ^22.0.0 - acorn: ^7.4.1 - acorn-jsx: ^5.3.1 - acorn-walk: ^7.2.0 - escodegen: ^2.1.0 - html-tags: ^3.1.0 - prop-types: ^15.7.2 - react-element-to-jsx-string: ^15.0.0 - semver: ^7.3.7 - ts-dedent: ^2.0.0 - type-fest: ~2.19 - util-deprecate: ^1.0.2 + "@storybook/manager-api": 8.4.6 + "@storybook/preview-api": 8.4.6 + "@storybook/react-dom-shim": 8.4.6 + "@storybook/theming": 8.4.6 peerDependencies: - "@storybook/test": 8.3.6 + "@storybook/test": 8.4.6 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - storybook: ^8.3.6 + storybook: ^8.4.6 typescript: ">= 4.2.x" peerDependenciesMeta: "@storybook/test": optional: true typescript: optional: true - checksum: 4df2dfbab580cc09df9e4acf5eda0e0558671a42086795a432c3987a30006136372b126258ddff5e5c28e3fea5f8e4354f10bc129f3f326d90f5845df8346d98 + checksum: 43f9cf0d35a1a87c0295305f6eb43be135de86d70b16ba197e474ac854b53b3232c369f392f4023587ec83ce2e9055b0c93e42fd3851e1652f6c5614bafc4827 languageName: node linkType: hard -"@storybook/test@npm:8.3.6": - version: 8.3.6 - resolution: "@storybook/test@npm:8.3.6" +"@storybook/test@npm:8.4.6": + version: 8.4.6 + resolution: "@storybook/test@npm:8.4.6" dependencies: "@storybook/csf": ^0.1.11 "@storybook/global": ^5.0.0 - "@storybook/instrumenter": 8.3.6 + "@storybook/instrumenter": 8.4.6 "@testing-library/dom": 10.4.0 "@testing-library/jest-dom": 6.5.0 "@testing-library/user-event": 14.5.2 "@vitest/expect": 2.0.5 "@vitest/spy": 2.0.5 - util: ^0.12.4 peerDependencies: - storybook: ^8.3.6 - checksum: 58900591f2e70deb47581d5784e6f529debac34a0d2264ecd50139f5cf003bedf907499844181a5a947d040dadff7a223efad7b8ed8cb99be07292ec05e67d15 + storybook: ^8.4.6 + checksum: 0d8f1c5cb2d15aa2a86e4beae596b8ce34a34ab09cb4470fcdb6cee7454f60f86166ad0c42a7b1889a29a144c11627a898cf3f838a1fde0c75818c59f7aa6b19 languageName: node linkType: hard @@ -2196,12 +2309,12 @@ __metadata: languageName: node linkType: hard -"@storybook/theming@npm:^8.3.6": - version: 8.3.6 - resolution: "@storybook/theming@npm:8.3.6" +"@storybook/theming@npm:8.4.6, @storybook/theming@npm:^8.4.6": + version: 8.4.6 + resolution: "@storybook/theming@npm:8.4.6" peerDependencies: - storybook: ^8.3.6 - checksum: 7b40b35069225d37f71f43e35174717ba6ec8d273eef671a2d37d9745a300c5b3887fa145aee6fdbe4759b2140ddf25e8cbd569074ae1c7d44b0ccc99c1a3451 + storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 + checksum: 364c7c8d66f523d5dec020157ae5dd86ac976b988f1c61cff61ae141ed906d4c8693f2361eb3b1709409c62f246537e68a3ad6c8d7c7d5c39d7df5bd1c39a815 languageName: node linkType: hard @@ -2596,25 +2709,6 @@ __metadata: languageName: node linkType: hard -"@types/body-parser@npm:*": - version: 1.19.2 - resolution: "@types/body-parser@npm:1.19.2" - dependencies: - "@types/connect": "*" - "@types/node": "*" - checksum: e17840c7d747a549f00aebe72c89313d09fbc4b632b949b2470c5cb3b1cb73863901ae84d9335b567a79ec5efcfb8a28ff8e3f36bc8748a9686756b6d5681f40 - languageName: node - linkType: hard - -"@types/connect@npm:*": - version: 3.4.35 - resolution: "@types/connect@npm:3.4.35" - dependencies: - "@types/node": "*" - checksum: fe81351470f2d3165e8b12ce33542eef89ea893e36dd62e8f7d72566dfb7e448376ae962f9f3ea888547ce8b55a40020ca0e01d637fab5d99567673084542641 - languageName: node - linkType: hard - "@types/cookie@npm:^0.6.0": version: 0.6.0 resolution: "@types/cookie@npm:0.6.0" @@ -2654,13 +2748,6 @@ __metadata: languageName: node linkType: hard -"@types/escodegen@npm:^0.0.6": - version: 0.0.6 - resolution: "@types/escodegen@npm:0.0.6" - checksum: 7b25aeedd48dbef68345224082c6bc774845cbfc1d9b2ce91a477130fe7ccabf33da126c1d6d55e5dfd838db429a7c80890628a167e5aa55b6a4620974da38d3 - languageName: node - linkType: hard - "@types/eslint-scope@npm:^3.7.3": version: 3.7.4 resolution: "@types/eslint-scope@npm:3.7.4" @@ -2706,44 +2793,6 @@ __metadata: languageName: node linkType: hard -"@types/estree@npm:^0.0.51": - version: 0.0.51 - resolution: "@types/estree@npm:0.0.51" - checksum: e56a3bcf759fd9185e992e7fdb3c6a5f81e8ff120e871641607581fb3728d16c811702a7d40fa5f869b7f7b4437ab6a87eb8d98ffafeee51e85bbe955932a189 - languageName: node - linkType: hard - -"@types/express-serve-static-core@npm:^4.17.33": - version: 4.17.35 - resolution: "@types/express-serve-static-core@npm:4.17.35" - dependencies: - "@types/node": "*" - "@types/qs": "*" - "@types/range-parser": "*" - "@types/send": "*" - checksum: cc8995d10c6feda475ec1b3a0e69eb0f35f21ab6b49129ad5c6f279e0bc5de8175bc04ec51304cb79a43eec3ed2f5a1e01472eb6d5f827b8c35c6ca8ad24eb6e - languageName: node - linkType: hard - -"@types/express@npm:^4.17.21": - version: 4.17.21 - resolution: "@types/express@npm:4.17.21" - dependencies: - "@types/body-parser": "*" - "@types/express-serve-static-core": ^4.17.33 - "@types/qs": "*" - "@types/serve-static": "*" - checksum: fb238298630370a7392c7abdc80f495ae6c716723e114705d7e3fb67e3850b3859bbfd29391463a3fb8c0b32051847935933d99e719c0478710f8098ee7091c5 - languageName: node - linkType: hard - -"@types/find-cache-dir@npm:^3.2.1": - version: 3.2.1 - resolution: "@types/find-cache-dir@npm:3.2.1" - checksum: bf5c4e96da40247cd9e6327f54dfccda961a0fb2d70e3c71bd05def94de4c2e6fb310fe8ecb0f04ecf5dbc52214e184b55a2337b0f87250d4ae1e2e7d58321e4 - languageName: node - linkType: hard - "@types/github-slugger@npm:^1.3.0": version: 1.3.0 resolution: "@types/github-slugger@npm:1.3.0" @@ -2751,16 +2800,6 @@ __metadata: languageName: node linkType: hard -"@types/glob@npm:^7.1.3": - version: 7.2.0 - resolution: "@types/glob@npm:7.2.0" - dependencies: - "@types/minimatch": "*" - "@types/node": "*" - checksum: 6ae717fedfdfdad25f3d5a568323926c64f52ef35897bcac8aca8e19bc50c0bd84630bbd063e5d52078b2137d8e7d3c26eabebd1a2f03ff350fff8a91e79fc19 - languageName: node - linkType: hard - "@types/hast@npm:^2.0.0": version: 2.3.5 resolution: "@types/hast@npm:2.3.5" @@ -2825,13 +2864,6 @@ __metadata: languageName: node linkType: hard -"@types/lodash@npm:^4.14.167": - version: 4.17.12 - resolution: "@types/lodash@npm:4.17.12" - checksum: 7b564e4114f09ce5ae31a2e9493592baf20bb498507f3705c5d91cf838c2298b4f6a06f2d6c8dc608fcac63e210a2b7b13388c7a5e220e15688f813521030127 - languageName: node - linkType: hard - "@types/lodash@npm:^4.17.13": version: 4.17.13 resolution: "@types/lodash@npm:4.17.13" @@ -2855,27 +2887,6 @@ __metadata: languageName: node linkType: hard -"@types/mime@npm:*": - version: 3.0.1 - resolution: "@types/mime@npm:3.0.1" - checksum: 4040fac73fd0cea2460e29b348c1a6173da747f3a87da0dbce80dd7a9355a3d0e51d6d9a401654f3e5550620e3718b5a899b2ec1debf18424e298a2c605346e7 - languageName: node - linkType: hard - -"@types/mime@npm:^1": - version: 1.3.2 - resolution: "@types/mime@npm:1.3.2" - checksum: 0493368244cced1a69cb791b485a260a422e6fcc857782e1178d1e6f219f1b161793e9f87f5fae1b219af0f50bee24fcbe733a18b4be8fdd07a38a8fb91146fd - languageName: node - linkType: hard - -"@types/minimatch@npm:*": - version: 5.1.2 - resolution: "@types/minimatch@npm:5.1.2" - checksum: 0391a282860c7cb6fe262c12b99564732401bdaa5e395bee9ca323c312c1a0f45efbf34dce974682036e857db59a5c9b1da522f3d6055aeead7097264c8705a8 - languageName: node - linkType: hard - "@types/ms@npm:*": version: 0.7.31 resolution: "@types/ms@npm:0.7.31" @@ -2892,7 +2903,7 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:^22.0.0": +"@types/node@npm:*": version: 22.7.8 resolution: "@types/node@npm:22.7.8" dependencies: @@ -2924,20 +2935,6 @@ __metadata: languageName: node linkType: hard -"@types/qs@npm:*": - version: 6.9.7 - resolution: "@types/qs@npm:6.9.7" - checksum: 7fd6f9c25053e9b5bb6bc9f9f76c1d89e6c04f7707a7ba0e44cc01f17ef5284adb82f230f542c2d5557d69407c9a40f0f3515e8319afd14e1e16b5543ac6cdba - languageName: node - linkType: hard - -"@types/range-parser@npm:*": - version: 1.2.4 - resolution: "@types/range-parser@npm:1.2.4" - checksum: b7c0dfd5080a989d6c8bb0b6750fc0933d9acabeb476da6fe71d8bdf1ab65e37c136169d84148034802f48378ab94e3c37bb4ef7656b2bec2cb9c0f8d4146a95 - languageName: node - linkType: hard - "@types/react-dom@npm:^18.3.1": version: 18.3.1 resolution: "@types/react-dom@npm:18.3.1" @@ -3017,26 +3014,6 @@ __metadata: languageName: node linkType: hard -"@types/send@npm:*": - version: 0.17.1 - resolution: "@types/send@npm:0.17.1" - dependencies: - "@types/mime": ^1 - "@types/node": "*" - checksum: 10b620a5960058ef009afbc17686f680d6486277c62f640845381ec4baa0ea683fdd77c3afea4803daf5fcddd3fb2972c8aa32e078939f1d4e96f83195c89793 - languageName: node - linkType: hard - -"@types/serve-static@npm:*": - version: 1.15.1 - resolution: "@types/serve-static@npm:1.15.1" - dependencies: - "@types/mime": "*" - "@types/node": "*" - checksum: 2e078bdc1e458c7dfe69e9faa83cc69194b8896cce57cb745016580543c7ab5af07fdaa8ac1765eb79524208c81017546f66056f44d1204f812d72810613de36 - languageName: node - linkType: hard - "@types/sizzle@npm:*": version: 2.3.3 resolution: "@types/sizzle@npm:2.3.3" @@ -3527,6 +3504,15 @@ __metadata: languageName: node linkType: hard +"@vitest/pretty-format@npm:2.1.8": + version: 2.1.8 + resolution: "@vitest/pretty-format@npm:2.1.8" + dependencies: + tinyrainbow: ^1.2.0 + checksum: 2214ca317a19220a5f308a4e77fe403fa091c2f006d1f5b1bd91e8fad6e167db2fdc7882e564da3518d5b2cd9dedb1e97067bb666a820519c54f1c26ac9b0c5a + languageName: node + linkType: hard + "@vitest/runner@npm:2.1.3": version: 2.1.3 resolution: "@vitest/runner@npm:2.1.3" @@ -3595,7 +3581,7 @@ __metadata: languageName: node linkType: hard -"@vitest/utils@npm:2.1.3, @vitest/utils@npm:^2.0.5": +"@vitest/utils@npm:2.1.3": version: 2.1.3 resolution: "@vitest/utils@npm:2.1.3" dependencies: @@ -3606,6 +3592,17 @@ __metadata: languageName: node linkType: hard +"@vitest/utils@npm:^2.1.1": + version: 2.1.8 + resolution: "@vitest/utils@npm:2.1.8" + dependencies: + "@vitest/pretty-format": 2.1.8 + loupe: ^3.1.2 + tinyrainbow: ^1.2.0 + checksum: 711e7998ba9785880ed416d08b478e2b881cd218d37c3d773b26477adaa6aab91758e01ac039f839175f446111118fb5aa041317b619eeeb05537e3912159eb7 + languageName: node + linkType: hard + "@yarnpkg/lockfile@npm:^1.1.0": version: 1.1.0 resolution: "@yarnpkg/lockfile@npm:1.1.0" @@ -3627,17 +3624,7 @@ __metadata: languageName: node linkType: hard -"accepts@npm:~1.3.8": - version: 1.3.8 - resolution: "accepts@npm:1.3.8" - dependencies: - mime-types: ~2.1.34 - negotiator: 0.6.3 - checksum: 50c43d32e7b50285ebe84b613ee4a3aa426715a7d131b65b786e2ead0fd76b6b60091b9916d3478a75f11f162628a2139991b6c03ab3f1d9ab7c86075dc8eab4 - languageName: node - linkType: hard - -"acorn-jsx@npm:^5.0.0, acorn-jsx@npm:^5.3.1, acorn-jsx@npm:^5.3.2": +"acorn-jsx@npm:^5.0.0, acorn-jsx@npm:^5.3.2": version: 5.3.2 resolution: "acorn-jsx@npm:5.3.2" peerDependencies: @@ -3646,13 +3633,6 @@ __metadata: languageName: node linkType: hard -"acorn-walk@npm:^7.2.0": - version: 7.2.0 - resolution: "acorn-walk@npm:7.2.0" - checksum: 9252158a79b9d92f1bc0dd6acc0fcfb87a67339e84bcc301bb33d6078936d27e35d606b4d35626d2962cd43c256d6f27717e70cbe15c04fff999ab0b2260b21f - languageName: node - linkType: hard - "acorn-walk@npm:^8.1.1": version: 8.3.2 resolution: "acorn-walk@npm:8.3.2" @@ -3660,15 +3640,6 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^7.4.1": - version: 7.4.1 - resolution: "acorn@npm:7.4.1" - bin: - acorn: bin/acorn - checksum: 1860f23c2107c910c6177b7b7be71be350db9e1080d814493fae143ae37605189504152d1ba8743ba3178d0b37269ce1ffc42b101547fdc1827078f82671e407 - languageName: node - linkType: hard - "acorn@npm:^8.0.0, acorn@npm:^8.14.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": version: 8.14.0 resolution: "acorn@npm:8.14.0" @@ -3876,13 +3847,6 @@ __metadata: languageName: node linkType: hard -"array-flatten@npm:1.1.1": - version: 1.1.1 - resolution: "array-flatten@npm:1.1.1" - checksum: a9925bf3512d9dce202112965de90c222cd59a4fbfce68a0951d25d965cf44642931f40aac72309c41f12df19afa010ecadceb07cfff9ccc1621e99d89ab5f3b - languageName: node - linkType: hard - "array-includes@npm:^3.1.6, array-includes@npm:^3.1.8": version: 3.1.8 resolution: "array-includes@npm:3.1.8" @@ -4133,26 +4097,6 @@ __metadata: languageName: node linkType: hard -"body-parser@npm:1.20.3": - version: 1.20.3 - resolution: "body-parser@npm:1.20.3" - dependencies: - bytes: 3.1.2 - content-type: ~1.0.5 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.13.0 - raw-body: 2.5.2 - type-is: ~1.6.18 - unpipe: 1.0.0 - checksum: 1a35c59a6be8d852b00946330141c4f142c6af0f970faa87f10ad74f1ee7118078056706a05ae3093c54dabca9cd3770fa62a170a85801da1a4324f04381167d - languageName: node - linkType: hard - "brace-expansion@npm:^1.1.7": version: 1.1.11 resolution: "brace-expansion@npm:1.1.11" @@ -4241,13 +4185,6 @@ __metadata: languageName: node linkType: hard -"bytes@npm:3.1.2": - version: 3.1.2 - resolution: "bytes@npm:3.1.2" - checksum: e4bcd3948d289c5127591fbedf10c0b639ccbf00243504e4e127374a15c3bc8eed0d28d4aaab08ff6f1cf2abc0cce6ba3085ed32f4f90e82a5683ce0014e1b6e - languageName: node - linkType: hard - "cac@npm:^6.7.14": version: 6.7.14 resolution: "cac@npm:6.7.14" @@ -4444,9 +4381,9 @@ __metadata: languageName: node linkType: hard -"chromatic@npm:^11.12.6": - version: 11.12.6 - resolution: "chromatic@npm:11.12.6" +"chromatic@npm:^11.20.0": + version: 11.20.0 + resolution: "chromatic@npm:11.20.0" peerDependencies: "@chromatic-com/cypress": ^0.*.* || ^1.0.0 "@chromatic-com/playwright": ^0.*.* || ^1.0.0 @@ -4459,7 +4396,7 @@ __metadata: chroma: dist/bin.js chromatic: dist/bin.js chromatic-cli: dist/bin.js - checksum: 020bf394c169719bffb59509388df3677384ec9c29219343778f202ac5f6ef3fc331c73efefdc3c70cda09f9e26e4d4f6e6567a18bff25b74eeea90b9b1e9dee + checksum: 71f4097731d6528f001527dc5dde6d4b6b5ee35b1a681e8bb38464183eedcc31c0375218a028a15f757bcdc29d256cf3e460457c977ea74e72986ed25cc56196 languageName: node linkType: hard @@ -4652,13 +4589,6 @@ __metadata: languageName: node linkType: hard -"commondir@npm:^1.0.1": - version: 1.0.1 - resolution: "commondir@npm:1.0.1" - checksum: 59715f2fc456a73f68826285718503340b9f0dd89bfffc42749906c5cf3d4277ef11ef1cca0350d0e79204f00f1f6d83851ececc9095dc88512a697ac0b9bdcb - languageName: node - linkType: hard - "compare-versions@npm:^4.1.2": version: 4.1.3 resolution: "compare-versions@npm:4.1.3" @@ -4687,22 +4617,6 @@ __metadata: languageName: node linkType: hard -"content-disposition@npm:0.5.4": - version: 0.5.4 - resolution: "content-disposition@npm:0.5.4" - dependencies: - safe-buffer: 5.2.1 - checksum: afb9d545e296a5171d7574fcad634b2fdf698875f4006a9dd04a3e1333880c5c0c98d47b560d01216fb6505a54a2ba6a843ee3a02ec86d7e911e8315255f56c3 - languageName: node - linkType: hard - -"content-type@npm:~1.0.4, content-type@npm:~1.0.5": - version: 1.0.5 - resolution: "content-type@npm:1.0.5" - checksum: 566271e0a251642254cde0f845f9dd4f9856e52d988f4eb0d0dcffbb7a1f8ec98de7a5215fc628f3bce30fe2fb6fd2bc064b562d721658c59b544e2d34ea2766 - languageName: node - linkType: hard - "convert-source-map@npm:^2.0.0": version: 2.0.0 resolution: "convert-source-map@npm:2.0.0" @@ -4710,13 +4624,6 @@ __metadata: languageName: node linkType: hard -"cookie-signature@npm:1.0.6": - version: 1.0.6 - resolution: "cookie-signature@npm:1.0.6" - checksum: f4e1b0a98a27a0e6e66fd7ea4e4e9d8e038f624058371bf4499cfcd8f3980be9a121486995202ba3fca74fbed93a407d6d54d43a43f96fd28d0bd7a06761591a - languageName: node - linkType: hard - "cookie@npm:>=0.7.0": version: 1.0.1 resolution: "cookie@npm:1.0.1" @@ -4902,15 +4809,6 @@ __metadata: languageName: node linkType: hard -"debug@npm:2.6.9": - version: 2.6.9 - resolution: "debug@npm:2.6.9" - dependencies: - ms: 2.0.0 - checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6 - languageName: node - linkType: hard - "debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.6, debug@npm:~4.3.6": version: 4.3.7 resolution: "debug@npm:4.3.7" @@ -5053,7 +4951,7 @@ __metadata: languageName: node linkType: hard -"depd@npm:2.0.0, depd@npm:^2.0.0": +"depd@npm:^2.0.0": version: 2.0.0 resolution: "depd@npm:2.0.0" checksum: abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a @@ -5067,13 +4965,6 @@ __metadata: languageName: node linkType: hard -"destroy@npm:1.2.0, destroy@npm:^1.2.0": - version: 1.2.0 - resolution: "destroy@npm:1.2.0" - checksum: 0acb300b7478a08b92d810ab229d5afe0d2f4399272045ab22affa0d99dbaf12637659411530a6fcd597a9bdac718fc94373a61a95b4651bbc7b83684a565e38 - languageName: node - linkType: hard - "detect-libc@npm:^1.0.3": version: 1.0.3 resolution: "detect-libc@npm:1.0.3" @@ -5236,13 +5127,6 @@ __metadata: languageName: node linkType: hard -"ee-first@npm:1.1.1": - version: 1.1.1 - resolution: "ee-first@npm:1.1.1" - checksum: 1b4cac778d64ce3b582a7e26b218afe07e207a0f9bfe13cc7395a6d307849cfe361e65033c3251e00c27dd060cab43014c2d6b2647676135e18b77d2d05b3f4f - languageName: node - linkType: hard - "electron-to-chromium@npm:^1.5.41": version: 1.5.42 resolution: "electron-to-chromium@npm:1.5.42" @@ -5278,20 +5162,6 @@ __metadata: languageName: node linkType: hard -"encodeurl@npm:^2.0.0, encodeurl@npm:~2.0.0": - version: 2.0.0 - resolution: "encodeurl@npm:2.0.0" - checksum: abf5cd51b78082cf8af7be6785813c33b6df2068ce5191a40ca8b1afe6a86f9230af9a9ce694a5ce4665955e5c1120871826df9c128a642e09c58d592e2807fe - languageName: node - linkType: hard - -"encodeurl@npm:~1.0.2": - version: 1.0.2 - resolution: "encodeurl@npm:1.0.2" - checksum: e50e3d508cdd9c4565ba72d2012e65038e5d71bdc9198cb125beb6237b5b1ade6c0d343998da9e170fb2eae52c1bed37d4d6d98a46ea423a0cddbed5ac3f780c - languageName: node - linkType: hard - "encoding@npm:^0.1.13": version: 0.1.13 resolution: "encoding@npm:0.1.13" @@ -5457,13 +5327,6 @@ __metadata: languageName: node linkType: hard -"es-module-lexer@npm:^1.5.0": - version: 1.5.3 - resolution: "es-module-lexer@npm:1.5.3" - checksum: 2e0a0936fb49ca072d438128f588d5b46974035f7a1362bdb26447868016243cfd1c5ec8f12e80d273749e8c603f5aba5a828d5c2d95c07f61fbe77ab4fce4af - languageName: node - linkType: hard - "es-object-atoms@npm:^1.0.0": version: 1.0.0 resolution: "es-object-atoms@npm:1.0.0" @@ -5515,34 +5378,34 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0, esbuild@npm:~0.23.0": - version: 0.23.1 - resolution: "esbuild@npm:0.23.1" - dependencies: - "@esbuild/aix-ppc64": 0.23.1 - "@esbuild/android-arm": 0.23.1 - "@esbuild/android-arm64": 0.23.1 - "@esbuild/android-x64": 0.23.1 - "@esbuild/darwin-arm64": 0.23.1 - "@esbuild/darwin-x64": 0.23.1 - "@esbuild/freebsd-arm64": 0.23.1 - "@esbuild/freebsd-x64": 0.23.1 - "@esbuild/linux-arm": 0.23.1 - "@esbuild/linux-arm64": 0.23.1 - "@esbuild/linux-ia32": 0.23.1 - "@esbuild/linux-loong64": 0.23.1 - "@esbuild/linux-mips64el": 0.23.1 - "@esbuild/linux-ppc64": 0.23.1 - "@esbuild/linux-riscv64": 0.23.1 - "@esbuild/linux-s390x": 0.23.1 - "@esbuild/linux-x64": 0.23.1 - "@esbuild/netbsd-x64": 0.23.1 - "@esbuild/openbsd-arm64": 0.23.1 - "@esbuild/openbsd-x64": 0.23.1 - "@esbuild/sunos-x64": 0.23.1 - "@esbuild/win32-arm64": 0.23.1 - "@esbuild/win32-ia32": 0.23.1 - "@esbuild/win32-x64": 0.23.1 +"esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0": + version: 0.24.0 + resolution: "esbuild@npm:0.24.0" + dependencies: + "@esbuild/aix-ppc64": 0.24.0 + "@esbuild/android-arm": 0.24.0 + "@esbuild/android-arm64": 0.24.0 + "@esbuild/android-x64": 0.24.0 + "@esbuild/darwin-arm64": 0.24.0 + "@esbuild/darwin-x64": 0.24.0 + "@esbuild/freebsd-arm64": 0.24.0 + "@esbuild/freebsd-x64": 0.24.0 + "@esbuild/linux-arm": 0.24.0 + "@esbuild/linux-arm64": 0.24.0 + "@esbuild/linux-ia32": 0.24.0 + "@esbuild/linux-loong64": 0.24.0 + "@esbuild/linux-mips64el": 0.24.0 + "@esbuild/linux-ppc64": 0.24.0 + "@esbuild/linux-riscv64": 0.24.0 + "@esbuild/linux-s390x": 0.24.0 + "@esbuild/linux-x64": 0.24.0 + "@esbuild/netbsd-x64": 0.24.0 + "@esbuild/openbsd-arm64": 0.24.0 + "@esbuild/openbsd-x64": 0.24.0 + "@esbuild/sunos-x64": 0.24.0 + "@esbuild/win32-arm64": 0.24.0 + "@esbuild/win32-ia32": 0.24.0 + "@esbuild/win32-x64": 0.24.0 dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -5594,7 +5457,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 0413c3b9257327fb598427688b7186ea335bf1693746fe5713cc93c95854d6388b8ed4ad643fddf5b5ace093f7dcd9038dd58e087bf2da1f04dfb4c5571660af + checksum: dd386d92a05c7eb03078480522cdd8b40c434777b5f08487c27971d30933ecaae3f08bd221958dd8f9c66214915cdc85f844283ca9bdbf8ee703d889ae526edd languageName: node linkType: hard @@ -5674,7 +5537,90 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 2911c7b50b23a9df59a7d6d4cdd3a4f85855787f374dce751148dbb13305e0ce7e880dde1608c2ab7a927fc6cec3587b80995f7fc87a64b455f8b70b55fd8ec1 + checksum: 2911c7b50b23a9df59a7d6d4cdd3a4f85855787f374dce751148dbb13305e0ce7e880dde1608c2ab7a927fc6cec3587b80995f7fc87a64b455f8b70b55fd8ec1 + languageName: node + linkType: hard + +"esbuild@npm:~0.23.0": + version: 0.23.1 + resolution: "esbuild@npm:0.23.1" + dependencies: + "@esbuild/aix-ppc64": 0.23.1 + "@esbuild/android-arm": 0.23.1 + "@esbuild/android-arm64": 0.23.1 + "@esbuild/android-x64": 0.23.1 + "@esbuild/darwin-arm64": 0.23.1 + "@esbuild/darwin-x64": 0.23.1 + "@esbuild/freebsd-arm64": 0.23.1 + "@esbuild/freebsd-x64": 0.23.1 + "@esbuild/linux-arm": 0.23.1 + "@esbuild/linux-arm64": 0.23.1 + "@esbuild/linux-ia32": 0.23.1 + "@esbuild/linux-loong64": 0.23.1 + "@esbuild/linux-mips64el": 0.23.1 + "@esbuild/linux-ppc64": 0.23.1 + "@esbuild/linux-riscv64": 0.23.1 + "@esbuild/linux-s390x": 0.23.1 + "@esbuild/linux-x64": 0.23.1 + "@esbuild/netbsd-x64": 0.23.1 + "@esbuild/openbsd-arm64": 0.23.1 + "@esbuild/openbsd-x64": 0.23.1 + "@esbuild/sunos-x64": 0.23.1 + "@esbuild/win32-arm64": 0.23.1 + "@esbuild/win32-ia32": 0.23.1 + "@esbuild/win32-x64": 0.23.1 + dependenciesMeta: + "@esbuild/aix-ppc64": + optional: true + "@esbuild/android-arm": + optional: true + "@esbuild/android-arm64": + optional: true + "@esbuild/android-x64": + optional: true + "@esbuild/darwin-arm64": + optional: true + "@esbuild/darwin-x64": + optional: true + "@esbuild/freebsd-arm64": + optional: true + "@esbuild/freebsd-x64": + optional: true + "@esbuild/linux-arm": + optional: true + "@esbuild/linux-arm64": + optional: true + "@esbuild/linux-ia32": + optional: true + "@esbuild/linux-loong64": + optional: true + "@esbuild/linux-mips64el": + optional: true + "@esbuild/linux-ppc64": + optional: true + "@esbuild/linux-riscv64": + optional: true + "@esbuild/linux-s390x": + optional: true + "@esbuild/linux-x64": + optional: true + "@esbuild/netbsd-x64": + optional: true + "@esbuild/openbsd-arm64": + optional: true + "@esbuild/openbsd-x64": + optional: true + "@esbuild/sunos-x64": + optional: true + "@esbuild/win32-arm64": + optional: true + "@esbuild/win32-ia32": + optional: true + "@esbuild/win32-x64": + optional: true + bin: + esbuild: bin/esbuild + checksum: 0413c3b9257327fb598427688b7186ea335bf1693746fe5713cc93c95854d6388b8ed4ad643fddf5b5ace093f7dcd9038dd58e087bf2da1f04dfb4c5571660af languageName: node linkType: hard @@ -5685,13 +5631,6 @@ __metadata: languageName: node linkType: hard -"escape-html@npm:^1.0.3, escape-html@npm:~1.0.3": - version: 1.0.3 - resolution: "escape-html@npm:1.0.3" - checksum: 6213ca9ae00d0ab8bccb6d8d4e0a98e76237b2410302cf7df70aaa6591d509a2a37ce8998008cbecae8fc8ffaadf3fb0229535e6a145f3ce0b211d060decbb24 - languageName: node - linkType: hard - "escape-string-regexp@npm:^1.0.5": version: 1.0.5 resolution: "escape-string-regexp@npm:1.0.5" @@ -5713,24 +5652,6 @@ __metadata: languageName: node linkType: hard -"escodegen@npm:^2.1.0": - version: 2.1.0 - resolution: "escodegen@npm:2.1.0" - dependencies: - esprima: ^4.0.1 - estraverse: ^5.2.0 - esutils: ^2.0.2 - source-map: ~0.6.1 - dependenciesMeta: - source-map: - optional: true - bin: - escodegen: bin/escodegen.js - esgenerate: bin/esgenerate.js - checksum: 096696407e161305cd05aebb95134ad176708bc5cb13d0dcc89a5fcbb959b8ed757e7f2591a5f8036f8f4952d4a724de0df14cd419e29212729fa6df5ce16bf6 - languageName: node - linkType: hard - "eslint-config-prettier@npm:^9.1.0": version: 9.1.0 resolution: "eslint-config-prettier@npm:9.1.0" @@ -5917,16 +5838,16 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-storybook@npm:^0.10.1": - version: 0.10.1 - resolution: "eslint-plugin-storybook@npm:0.10.1" +"eslint-plugin-storybook@npm:^0.11.1": + version: 0.11.1 + resolution: "eslint-plugin-storybook@npm:0.11.1" dependencies: "@storybook/csf": ^0.1.11 "@typescript-eslint/utils": ^8.8.1 ts-dedent: ^2.2.0 peerDependencies: eslint: ">=6" - checksum: 728442f4ef23d3734207d878a22a2636c1644b34b807d410da3c013a894acd34c8b38d85264097d08b99c59a55f4871d0277fce72b2145288601c9db69dee9ca + checksum: 8b8eb30b598f3c44c2bbf921e318215338f1159c1fba2d2f6cd5bc0b2ec14515655cf1760b5e11355baddabc2ac8446d4dc18ee6df6d2252555b126ff649a421 languageName: node linkType: hard @@ -6053,7 +5974,7 @@ __metadata: languageName: node linkType: hard -"esprima@npm:^4.0.1, esprima@npm:~4.0.0": +"esprima@npm:~4.0.0": version: 4.0.1 resolution: "esprima@npm:4.0.1" bin: @@ -6193,13 +6114,6 @@ __metadata: languageName: node linkType: hard -"etag@npm:^1.8.1, etag@npm:~1.8.1": - version: 1.8.1 - resolution: "etag@npm:1.8.1" - checksum: 571aeb3dbe0f2bbd4e4fadbdb44f325fc75335cd5f6f6b6a091e6a06a9f25ed5392f0863c5442acb0646787446e816f13cbfc6edce5b07658541dff573cab1ff - languageName: node - linkType: hard - "eventemitter3@npm:^4.0.4": version: 4.0.7 resolution: "eventemitter3@npm:4.0.7" @@ -6245,45 +6159,6 @@ __metadata: languageName: node linkType: hard -"express@npm:^4.19.2": - version: 4.20.0 - resolution: "express@npm:4.20.0" - dependencies: - accepts: ~1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.3 - content-disposition: 0.5.4 - content-type: ~1.0.4 - cookie: 0.6.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: ~2.0.0 - escape-html: ~1.0.3 - etag: ~1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.3 - methods: ~1.1.2 - on-finished: 2.4.1 - parseurl: ~1.3.3 - path-to-regexp: 0.1.10 - proxy-addr: ~2.0.7 - qs: 6.11.0 - range-parser: ~1.2.1 - safe-buffer: 5.2.1 - send: 0.19.0 - serve-static: 1.16.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: ~1.6.18 - utils-merge: 1.0.1 - vary: ~1.1.2 - checksum: faa11bffa16be97b26d9f38187e569378c01cad0b92fbd02094fb4e35a224dc5177cc9cc6849141702da80d2d8cbe857c60a7e622e8106695405dc27e38fb3ee - languageName: node - linkType: hard - "extend@npm:^3.0.0": version: 3.0.2 resolution: "extend@npm:3.0.2" @@ -6396,42 +6271,6 @@ __metadata: languageName: node linkType: hard -"finalhandler@npm:1.2.0": - version: 1.2.0 - resolution: "finalhandler@npm:1.2.0" - dependencies: - debug: 2.6.9 - encodeurl: ~1.0.2 - escape-html: ~1.0.3 - on-finished: 2.4.1 - parseurl: ~1.3.3 - statuses: 2.0.1 - unpipe: ~1.0.0 - checksum: 92effbfd32e22a7dff2994acedbd9bcc3aa646a3e919ea6a53238090e87097f8ef07cced90aa2cc421abdf993aefbdd5b00104d55c7c5479a8d00ed105b45716 - languageName: node - linkType: hard - -"find-cache-dir@npm:^3.0.0": - version: 3.3.2 - resolution: "find-cache-dir@npm:3.3.2" - dependencies: - commondir: ^1.0.1 - make-dir: ^3.0.2 - pkg-dir: ^4.1.0 - checksum: 1e61c2e64f5c0b1c535bd85939ae73b0e5773142713273818cc0b393ee3555fb0fd44e1a5b161b8b6c3e03e98c2fcc9c227d784850a13a90a8ab576869576817 - languageName: node - linkType: hard - -"find-up@npm:^4.0.0": - version: 4.1.0 - resolution: "find-up@npm:4.1.0" - dependencies: - locate-path: ^5.0.0 - path-exists: ^4.0.0 - checksum: 4c172680e8f8c1f78839486e14a43ef82e9decd0e74145f40707cc42e7420506d5ec92d9a11c22bd2c48fb0c384ea05dd30e10dd152fefeec6f2f75282a8b844 - languageName: node - linkType: hard - "find-up@npm:^5.0.0": version: 5.0.0 resolution: "find-up@npm:5.0.0" @@ -6548,13 +6387,6 @@ __metadata: languageName: node linkType: hard -"forwarded@npm:0.2.0": - version: 0.2.0 - resolution: "forwarded@npm:0.2.0" - checksum: fd27e2394d8887ebd16a66ffc889dc983fbbd797d5d3f01087c020283c0f019a7d05ee85669383d8e0d216b116d720fc0cef2f6e9b7eb9f4c90c6e0bc7fd28e6 - languageName: node - linkType: hard - "fraction.js@npm:^4.3.7": version: 4.3.7 resolution: "fraction.js@npm:4.3.7" @@ -6562,13 +6394,6 @@ __metadata: languageName: node linkType: hard -"fresh@npm:0.5.2, fresh@npm:^0.5.2": - version: 0.5.2 - resolution: "fresh@npm:0.5.2" - checksum: 13ea8b08f91e669a64e3ba3a20eb79d7ca5379a81f1ff7f4310d54e2320645503cc0c78daedc93dfb6191287295f6479544a649c64d8e41a1c0fb0c221552346 - languageName: node - linkType: hard - "fs-extra@npm:^11.1.0": version: 11.1.1 resolution: "fs-extra@npm:11.1.1" @@ -6790,17 +6615,6 @@ __metadata: languageName: node linkType: hard -"glob-promise@npm:^4.2.0": - version: 4.2.2 - resolution: "glob-promise@npm:4.2.2" - dependencies: - "@types/glob": ^7.1.3 - peerDependencies: - glob: ^7.1.6 - checksum: c1a3d95f7c8393e4151d4899ec4e42bb2e8237160f840ad1eccbe9247407da8b6c13e28f463022e011708bc40862db87b9b77236d35afa3feb8aa86d518f2dfe - languageName: node - linkType: hard - "glob@npm:^10.2.2, glob@npm:^10.4.1": version: 10.4.5 resolution: "glob@npm:10.4.5" @@ -6817,7 +6631,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.2.0": +"glob@npm:^7.1.3, glob@npm:^7.1.4": version: 9.3.5 resolution: "glob@npm:9.3.5" dependencies: @@ -7041,24 +6855,6 @@ __metadata: languageName: node linkType: hard -"hast-util-heading-rank@npm:^3.0.0": - version: 3.0.0 - resolution: "hast-util-heading-rank@npm:3.0.0" - dependencies: - "@types/hast": ^3.0.0 - checksum: e5ce4ec9e8017b24ab72702fa0dd401ec6eaf32574120d71c2aa4e8e0f43829dba2e291f49d305a47e8d65b82a9c5adad7985385dc5bc8370f8cec7c8f9313d3 - languageName: node - linkType: hard - -"hast-util-is-element@npm:^3.0.0": - version: 3.0.0 - resolution: "hast-util-is-element@npm:3.0.0" - dependencies: - "@types/hast": ^3.0.0 - checksum: 82569a420eda5877c52fdbbdbe26675f012c02d70813dfd19acffdee328e42e4bd0b7ae34454cfcbcb932b2bedbd7ddc119f943a0cfb234120f9456d6c0c4331 - languageName: node - linkType: hard - "hast-util-parse-selector@npm:^4.0.0": version: 4.0.0 resolution: "hast-util-parse-selector@npm:4.0.0" @@ -7154,15 +6950,6 @@ __metadata: languageName: node linkType: hard -"hast-util-to-string@npm:^3.0.0": - version: 3.0.0 - resolution: "hast-util-to-string@npm:3.0.0" - dependencies: - "@types/hast": ^3.0.0 - checksum: 64f7f4f2b7a69b2ebddd1c87a29eae5f718d593d2154a46de2fa21f6ca8bfbda50ad71a5794f5952ae450f4da23a8bc811db348098b09916b9553cd933aefe9a - languageName: node - linkType: hard - "hast-util-whitespace@npm:^3.0.0": version: 3.0.0 resolution: "hast-util-whitespace@npm:3.0.0" @@ -7224,13 +7011,6 @@ __metadata: languageName: node linkType: hard -"html-tags@npm:^3.1.0": - version: 3.3.0 - resolution: "html-tags@npm:3.3.0" - checksum: 79847bb55dc1c3e5d0b083893e0d454f05a2eec435e28dbd19a80586d402dbbb14353ef19c44baf4c4a2cdd1903d941a016e3a0a306f5376e708fd1c9ba13ff7 - languageName: node - linkType: hard - "html-to-text@npm:^9.0.5": version: 9.0.5 resolution: "html-to-text@npm:9.0.5" @@ -7277,19 +7057,6 @@ __metadata: languageName: node linkType: hard -"http-errors@npm:2.0.0, http-errors@npm:^2.0.0": - version: 2.0.0 - resolution: "http-errors@npm:2.0.0" - dependencies: - depd: 2.0.0 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 2.0.1 - toidentifier: 1.0.1 - checksum: 9b0a3782665c52ce9dc658a0d1560bcb0214ba5699e4ea15aefb2a496e2ca83db03ebc42e1cce4ac1f413e4e0d2d736a3fd755772c556a9a06853ba2a0b7d920 - languageName: node - linkType: hard - "http-proxy-agent@npm:^5.0.0": version: 5.0.0 resolution: "http-proxy-agent@npm:5.0.0" @@ -7356,15 +7123,6 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:0.4.24": - version: 0.4.24 - resolution: "iconv-lite@npm:0.4.24" - dependencies: - safer-buffer: ">= 2.1.2 < 3" - checksum: bd9f120f5a5b306f0bc0b9ae1edeb1577161503f5f8252a20f1a9e56ef8775c9959fd01c55f2d3a39d9a8abaf3e30c1abeb1895f367dcbbe0a8fd1c9ca01c4f6 - languageName: node - linkType: hard - "iconv-lite@npm:0.6.3, iconv-lite@npm:^0.6.2": version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" @@ -7412,7 +7170,7 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2.0.4, inherits@npm:^2.0.3": +"inherits@npm:^2.0.3": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1 @@ -7456,20 +7214,6 @@ __metadata: languageName: node linkType: hard -"ipaddr.js@npm:1.9.1": - version: 1.9.1 - resolution: "ipaddr.js@npm:1.9.1" - checksum: f88d3825981486f5a1942414c8d77dd6674dd71c065adcfa46f578d677edcb99fda25af42675cb59db492fdf427b34a5abfcde3982da11a8fd83a500b41cfe77 - languageName: node - linkType: hard - -"is-absolute-url@npm:^4.0.0": - version: 4.0.1 - resolution: "is-absolute-url@npm:4.0.1" - checksum: de172a718439982a54477fdae55f21be69ec0e6a4b205db5484975d2f4ee749851fd46c28f3790dfc51a274c2ed1d0f8457b6d1fff02ab829069fd9cc761e48c - languageName: node - linkType: hard - "is-alphabetical@npm:^2.0.0": version: 2.0.1 resolution: "is-alphabetical@npm:2.0.1" @@ -7739,7 +7483,7 @@ __metadata: languageName: node linkType: hard -"is-plain-object@npm:5.0.0, is-plain-object@npm:^5.0.0": +"is-plain-object@npm:^5.0.0": version: 5.0.0 resolution: "is-plain-object@npm:5.0.0" checksum: e32d27061eef62c0847d303125440a38660517e586f2f3db7c9d179ae5b6674ab0f469d519b2e25c147a1a3bc87156d0d5f4d8821e0ce4a9ee7fe1fcf11ce45c @@ -8252,15 +7996,6 @@ __metadata: languageName: node linkType: hard -"locate-path@npm:^5.0.0": - version: 5.0.0 - resolution: "locate-path@npm:5.0.0" - dependencies: - p-locate: ^4.1.0 - checksum: 83e51725e67517287d73e1ded92b28602e3ae5580b301fe54bfb76c0c723e3f285b19252e375712316774cf52006cb236aed5704692c32db0d5d089b69696e30 - languageName: node - linkType: hard - "locate-path@npm:^6.0.0": version: 6.0.0 resolution: "locate-path@npm:6.0.0" @@ -8338,6 +8073,13 @@ __metadata: languageName: node linkType: hard +"loupe@npm:^3.1.2": + version: 3.1.2 + resolution: "loupe@npm:3.1.2" + checksum: 4a75bbe8877a1ced3603e08b1095cd6f4c987c50fe63719fdc3009029560f91e07a915e7f6eff1322bb62bfb2a2beeef06b13ccb3c12f81bda9f3674434dcab9 + languageName: node + linkType: hard + "lower-case@npm:^2.0.2": version: 2.0.2 resolution: "lower-case@npm:2.0.2" @@ -8408,15 +8150,6 @@ __metadata: languageName: node linkType: hard -"make-dir@npm:^3.0.2": - version: 3.1.0 - resolution: "make-dir@npm:3.1.0" - dependencies: - semver: ^6.0.0 - checksum: 484200020ab5a1fdf12f393fe5f385fc8e4378824c940fba1729dcd198ae4ff24867bc7a5646331e50cead8abff5d9270c456314386e629acec6dff4b8016b78 - languageName: node - linkType: hard - "make-dir@npm:^4.0.0": version: 4.0.0 resolution: "make-dir@npm:4.0.0" @@ -8470,15 +8203,6 @@ __metadata: languageName: node linkType: hard -"markdown-to-jsx@npm:^7.4.5": - version: 7.4.7 - resolution: "markdown-to-jsx@npm:7.4.7" - peerDependencies: - react: ">= 0.14.0" - checksum: bb8a696c8a95dd67ac1eb44255f31cf17e60b6c2ff03bfcd51b5e28da17856c57d7a16da59fda7f3a4eedb01d7e92eeef57a10ff3abd5431e5c80059d4565016 - languageName: node - linkType: hard - "matches-selector@npm:^1.0.0": version: 1.2.0 resolution: "matches-selector@npm:1.2.0" @@ -8640,13 +8364,6 @@ __metadata: languageName: node linkType: hard -"media-typer@npm:0.3.0": - version: 0.3.0 - resolution: "media-typer@npm:0.3.0" - checksum: af1b38516c28ec95d6b0826f6c8f276c58aec391f76be42aa07646b4e39d317723e869700933ca6995b056db4b09a78c92d5440dc23657e6764be5d28874bba1 - languageName: node - linkType: hard - "memoizerific@npm:^1.11.3": version: 1.11.3 resolution: "memoizerific@npm:1.11.3" @@ -8663,13 +8380,6 @@ __metadata: languageName: node linkType: hard -"merge-descriptors@npm:1.0.3": - version: 1.0.3 - resolution: "merge-descriptors@npm:1.0.3" - checksum: 52117adbe0313d5defa771c9993fe081e2d2df9b840597e966aadafde04ae8d0e3da46bac7ca4efc37d4d2b839436582659cd49c6a43eacb3fe3050896a105d1 - languageName: node - linkType: hard - "merge-stream@npm:^2.0.0": version: 2.0.0 resolution: "merge-stream@npm:2.0.0" @@ -8684,13 +8394,6 @@ __metadata: languageName: node linkType: hard -"methods@npm:~1.1.2": - version: 1.1.2 - resolution: "methods@npm:1.1.2" - checksum: 0917ff4041fa8e2f2fda5425a955fe16ca411591fbd123c0d722fcf02b73971ed6f764d85f0a6f547ce49ee0221ce2c19a5fa692157931cecb422984f1dcd13a - languageName: node - linkType: hard - "micromark-core-commonmark@npm:^2.0.0": version: 2.0.0 resolution: "micromark-core-commonmark@npm:2.0.0" @@ -9064,7 +8767,7 @@ __metadata: languageName: node linkType: hard -"mime-types@npm:^2.1.12, mime-types@npm:^2.1.35, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34": +"mime-types@npm:^2.1.12": version: 2.1.35 resolution: "mime-types@npm:2.1.35" dependencies: @@ -9242,13 +8945,6 @@ __metadata: languageName: node linkType: hard -"ms@npm:2.0.0": - version: 2.0.0 - resolution: "ms@npm:2.0.0" - checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4 - languageName: node - linkType: hard - "ms@npm:^2.0.0, ms@npm:^2.1.1, ms@npm:^2.1.3": version: 2.1.3 resolution: "ms@npm:2.1.3" @@ -9322,7 +9018,7 @@ __metadata: languageName: node linkType: hard -"negotiator@npm:0.6.3, negotiator@npm:^0.6.3": +"negotiator@npm:^0.6.3": version: 0.6.3 resolution: "negotiator@npm:0.6.3" checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 @@ -9603,15 +9299,6 @@ __metadata: languageName: node linkType: hard -"on-finished@npm:2.4.1, on-finished@npm:^2.4.1": - version: 2.4.1 - resolution: "on-finished@npm:2.4.1" - dependencies: - ee-first: 1.1.1 - checksum: d20929a25e7f0bb62f937a425b5edeb4e4cde0540d77ba146ec9357f00b0d497cdb3b9b05b9c8e46222407d1548d08166bff69cc56dfa55ba0e4469228920ff0 - languageName: node - linkType: hard - "onetime@npm:^6.0.0": version: 6.0.0 resolution: "onetime@npm:6.0.0" @@ -9702,15 +9389,6 @@ __metadata: languageName: node linkType: hard -"p-limit@npm:^2.2.0": - version: 2.3.0 - resolution: "p-limit@npm:2.3.0" - dependencies: - p-try: ^2.0.0 - checksum: 84ff17f1a38126c3314e91ecfe56aecbf36430940e2873dadaa773ffe072dc23b7af8e46d4b6485d302a11673fe94c6b67ca2cfbb60c989848b02100d0594ac1 - languageName: node - linkType: hard - "p-limit@npm:^3.0.2": version: 3.1.0 resolution: "p-limit@npm:3.1.0" @@ -9729,15 +9407,6 @@ __metadata: languageName: node linkType: hard -"p-locate@npm:^4.1.0": - version: 4.1.0 - resolution: "p-locate@npm:4.1.0" - dependencies: - p-limit: ^2.2.0 - checksum: 513bd14a455f5da4ebfcb819ef706c54adb09097703de6aeaa5d26fe5ea16df92b48d1ac45e01e3944ce1e6aa2a66f7f8894742b8c9d6e276e16cd2049a2b870 - languageName: node - linkType: hard - "p-locate@npm:^5.0.0": version: 5.0.0 resolution: "p-locate@npm:5.0.0" @@ -9775,13 +9444,6 @@ __metadata: languageName: node linkType: hard -"p-try@npm:^2.0.0": - version: 2.2.0 - resolution: "p-try@npm:2.2.0" - checksum: f8a8e9a7693659383f06aec604ad5ead237c7a261c18048a6e1b5b85a5f8a067e469aa24f5bc009b991ea3b058a87f5065ef4176793a200d4917349881216cae - languageName: node - linkType: hard - "package-json-from-dist@npm:^1.0.0": version: 1.0.0 resolution: "package-json-from-dist@npm:1.0.0" @@ -9869,13 +9531,6 @@ __metadata: languageName: node linkType: hard -"parseurl@npm:~1.3.3": - version: 1.3.3 - resolution: "parseurl@npm:1.3.3" - checksum: 407cee8e0a3a4c5cd472559bca8b6a45b82c124e9a4703302326e9ab60fc1081442ada4e02628efef1eb16197ddc7f8822f5a91fd7d7c86b51f530aedb17dfa2 - languageName: node - linkType: hard - "patch-package@npm:^8.0.0": version: 8.0.0 resolution: "patch-package@npm:8.0.0" @@ -9946,13 +9601,6 @@ __metadata: languageName: node linkType: hard -"path-to-regexp@npm:0.1.10": - version: 0.1.10 - resolution: "path-to-regexp@npm:0.1.10" - checksum: ab7a3b7a0b914476d44030340b0a65d69851af2a0f33427df1476100ccb87d409c39e2182837a96b98fb38c4ef2ba6b87bdad62bb70a2c153876b8061760583c - languageName: node - linkType: hard - "path-to-regexp@npm:^6.3.0": version: 6.3.0 resolution: "path-to-regexp@npm:6.3.0" @@ -10054,15 +9702,6 @@ __metadata: languageName: node linkType: hard -"pkg-dir@npm:^4.1.0": - version: 4.2.0 - resolution: "pkg-dir@npm:4.2.0" - dependencies: - find-up: ^4.0.0 - checksum: 9863e3f35132bf99ae1636d31ff1e1e3501251d480336edb1c211133c8d58906bed80f154a1d723652df1fda91e01c7442c2eeaf9dc83157c7ae89087e43c8d6 - languageName: node - linkType: hard - "playwright-core@npm:1.49.0": version: 1.49.0 resolution: "playwright-core@npm:1.49.0" @@ -10187,7 +9826,7 @@ __metadata: languageName: node linkType: hard -"prop-types@npm:^15.5.7, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": +"prop-types@npm:^15.5.7, prop-types@npm:^15.8.1": version: 15.8.1 resolution: "prop-types@npm:15.8.1" dependencies: @@ -10205,16 +9844,6 @@ __metadata: languageName: node linkType: hard -"proxy-addr@npm:~2.0.7": - version: 2.0.7 - resolution: "proxy-addr@npm:2.0.7" - dependencies: - forwarded: 0.2.0 - ipaddr.js: 1.9.1 - checksum: 29c6990ce9364648255454842f06f8c46fcd124d3e6d7c5066df44662de63cdc0bad032e9bf5a3d653ff72141cc7b6019873d685708ac8210c30458ad99f2b74 - languageName: node - linkType: hard - "proxy-from-env@npm:^1.1.0": version: 1.1.0 resolution: "proxy-from-env@npm:1.1.0" @@ -10259,24 +9888,6 @@ __metadata: languageName: node linkType: hard -"qs@npm:6.11.0": - version: 6.11.0 - resolution: "qs@npm:6.11.0" - dependencies: - side-channel: ^1.0.4 - checksum: 6e1f29dd5385f7488ec74ac7b6c92f4d09a90408882d0c208414a34dd33badc1a621019d4c799a3df15ab9b1d0292f97c1dd71dc7c045e69f81a8064e5af7297 - languageName: node - linkType: hard - -"qs@npm:6.13.0": - version: 6.13.0 - resolution: "qs@npm:6.13.0" - dependencies: - side-channel: ^1.0.6 - checksum: e9404dc0fc2849245107108ce9ec2766cde3be1b271de0bf1021d049dc5b98d1a2901e67b431ac5509f865420a7ed80b7acb3980099fe1c118a1c5d2e1432ad8 - languageName: node - linkType: hard - "querystringify@npm:^2.1.1": version: 2.2.0 resolution: "querystringify@npm:2.2.0" @@ -10291,35 +9902,6 @@ __metadata: languageName: node linkType: hard -"range-parser@npm:^1.2.1, range-parser@npm:~1.2.1": - version: 1.2.1 - resolution: "range-parser@npm:1.2.1" - checksum: 0a268d4fea508661cf5743dfe3d5f47ce214fd6b7dec1de0da4d669dd4ef3d2144468ebe4179049eff253d9d27e719c88dae55be64f954e80135a0cada804ec9 - languageName: node - linkType: hard - -"raw-body@npm:2.5.2": - version: 2.5.2 - resolution: "raw-body@npm:2.5.2" - dependencies: - bytes: 3.1.2 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - checksum: ba1583c8d8a48e8fbb7a873fdbb2df66ea4ff83775421bfe21ee120140949ab048200668c47d9ae3880012f6e217052690628cf679ddfbd82c9fc9358d574676 - languageName: node - linkType: hard - -"react-colorful@npm:^5.1.2": - version: 5.6.1 - resolution: "react-colorful@npm:5.6.1" - peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" - checksum: e432b7cb0df57e8f0bcdc3b012d2e93fcbcb6092c9e0f85654788d5ebfc4442536d8cc35b2418061ba3c4afb8b7788cc101c606d86a1732407921de7a9244c8d - languageName: node - linkType: hard - "react-docgen-typescript@npm:^2.2.2": version: 2.2.2 resolution: "react-docgen-typescript@npm:2.2.2" @@ -10359,20 +9941,6 @@ __metadata: languageName: node linkType: hard -"react-element-to-jsx-string@npm:^15.0.0": - version: 15.0.0 - resolution: "react-element-to-jsx-string@npm:15.0.0" - dependencies: - "@base2/pretty-print-object": 1.0.1 - is-plain-object: 5.0.0 - react-is: 18.1.0 - peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - checksum: c3907cc4c1d3e9ecc8ca7727058ebcba6ec89848d9e07bfd2c77ee8f28f1ad99bf55e38359dec8a1125de83d41ac09a2874f53c41415edc86ffa9840fa1b7856 - languageName: node - linkType: hard - "react-error-boundary@npm:^3.1.0": version: 3.1.4 resolution: "react-error-boundary@npm:3.1.4" @@ -10417,19 +9985,19 @@ __metadata: "@playwright/test": ^1.49.0 "@rest-hooks/rest": ^3.0.3 "@rest-hooks/test": ^7.3.1 - "@storybook/addon-a11y": ^8.3.6 - "@storybook/addon-actions": ^8.3.6 - "@storybook/addon-essentials": ^8.3.6 - "@storybook/addon-interactions": ^8.3.6 - "@storybook/addon-links": ^8.3.6 - "@storybook/blocks": ^8.3.6 - "@storybook/components": ^8.3.6 - "@storybook/core-events": ^8.3.6 + "@storybook/addon-a11y": ^8.4.6 + "@storybook/addon-actions": ^8.4.6 + "@storybook/addon-essentials": ^8.4.6 + "@storybook/addon-interactions": ^8.4.6 + "@storybook/addon-links": ^8.4.6 + "@storybook/blocks": ^8.4.6 + "@storybook/components": ^8.4.6 + "@storybook/core-events": ^8.4.6 "@storybook/mdx2-csf": 1.1.0 - "@storybook/react": ^8.3.6 - "@storybook/react-vite": ^8.3.6 + "@storybook/react": ^8.4.6 + "@storybook/react-vite": ^8.4.6 "@storybook/testing-library": ^0.2.2 - "@storybook/theming": ^8.3.6 + "@storybook/theming": ^8.4.6 "@tanstack/react-query": ^5.59.15 "@tanstack/react-query-devtools": ^5.59.15 "@testing-library/dom": ^10.4.0 @@ -10458,7 +10026,7 @@ __metadata: axios: ^1.7.7 browserslist: ^4.24.2 browserslist-useragent-regexp: ^4.1.3 - chromatic: ^11.12.6 + chromatic: ^11.20.0 classnames: ^2.5.1 cross-env: ^7.0.3 date-fns: ^4.1.0 @@ -10475,7 +10043,7 @@ __metadata: eslint-plugin-react: ^7.37.2 eslint-plugin-react-hooks: ^5.0.0 eslint-plugin-react-refresh: ^0.4.14 - eslint-plugin-storybook: ^0.10.1 + eslint-plugin-storybook: ^0.11.1 eslint-plugin-testing-library: ^6.4.0 eslint-plugin-vitest: ^0.5.4 export-to-csv-fix-source-map: ^0.2.1 @@ -10516,7 +10084,7 @@ __metadata: rest-hooks: ^6.1.7 sanitize-html: ^2.13.1 sass: ^1.81.0 - storybook: ^8.3.6 + storybook: ^8.4.6 storybook-addon-remix-react-router: ^3.0.1 ts-node: ^10.9.2 tslib: ^2.8.1 @@ -10566,13 +10134,6 @@ __metadata: languageName: node linkType: hard -"react-is@npm:18.1.0": - version: 18.1.0 - resolution: "react-is@npm:18.1.0" - checksum: d206a0fe6790851bff168727bfb896de02c5591695afb0c441163e8630136a3e13ee1a7ddd59fdccddcc93968b4721ae112c10f790b194b03b35a3dc13a355ef - languageName: node - linkType: hard - "react-is@npm:^16.13.1": version: 16.13.1 resolution: "react-is@npm:16.13.1" @@ -10819,20 +10380,6 @@ __metadata: languageName: node linkType: hard -"rehype-external-links@npm:^3.0.0": - version: 3.0.0 - resolution: "rehype-external-links@npm:3.0.0" - dependencies: - "@types/hast": ^3.0.0 - "@ungap/structured-clone": ^1.0.0 - hast-util-is-element: ^3.0.0 - is-absolute-url: ^4.0.0 - space-separated-tokens: ^2.0.0 - unist-util-visit: ^5.0.0 - checksum: f776f306a2698a67b03665280fcc00448a5bf59b997d83fbb70fc3d71acff2c3025c70ee1840f48ca7dff209217ebe9adad085dc7caf9e5907badf8b104898b6 - languageName: node - linkType: hard - "rehype-raw@npm:^7.0.0": version: 7.0.0 resolution: "rehype-raw@npm:7.0.0" @@ -10859,19 +10406,6 @@ __metadata: languageName: node linkType: hard -"rehype-slug@npm:^6.0.0": - version: 6.0.0 - resolution: "rehype-slug@npm:6.0.0" - dependencies: - "@types/hast": ^3.0.0 - github-slugger: ^2.0.0 - hast-util-heading-rank: ^3.0.0 - hast-util-to-string: ^3.0.0 - unist-util-visit: ^5.0.0 - checksum: 0e13ec558eb142d14a6daeab21bbef7c9230bfabec45987e15a24283650226eae3898ad162b8cb29ee39a8bce536bcc013eeab7dc6faa0295b0e91612a8c9f6e - languageName: node - linkType: hard - "remark-frontmatter@npm:^5.0.0": version: 5.0.0 resolution: "remark-frontmatter@npm:5.0.0" @@ -11208,7 +10742,7 @@ __metadata: languageName: node linkType: hard -"safe-buffer@npm:5.2.1, safe-buffer@npm:~5.2.0": +"safe-buffer@npm:~5.2.0": version: 5.2.1 resolution: "safe-buffer@npm:5.2.1" checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491 @@ -11226,7 +10760,7 @@ __metadata: languageName: node linkType: hard -"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0": +"safer-buffer@npm:>= 2.1.2 < 3.0.0": version: 2.1.2 resolution: "safer-buffer@npm:2.1.2" checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 @@ -11307,7 +10841,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:^6.0.0, semver@npm:^6.3.1": +"semver@npm:^6.3.1": version: 6.3.1 resolution: "semver@npm:6.3.1" bin: @@ -11325,38 +10859,6 @@ __metadata: languageName: node linkType: hard -"send@npm:>=0.19.0": - version: 1.1.0 - resolution: "send@npm:1.1.0" - dependencies: - debug: ^4.3.5 - destroy: ^1.2.0 - encodeurl: ^2.0.0 - escape-html: ^1.0.3 - etag: ^1.8.1 - fresh: ^0.5.2 - http-errors: ^2.0.0 - mime-types: ^2.1.35 - ms: ^2.1.3 - on-finished: ^2.4.1 - range-parser: ^1.2.1 - statuses: ^2.0.1 - checksum: cb82bec244cb0e54ffaadf657dc79f55f350428c0d1f58511b9aae74ba87b07078907e462b8fefe13380f592baebd4b9e184204f3b74bd4558e7561669204b0f - languageName: node - linkType: hard - -"serve-static@npm:1.16.0": - version: 1.16.0 - resolution: "serve-static@npm:1.16.0" - dependencies: - encodeurl: ~1.0.2 - escape-html: ~1.0.3 - parseurl: ~1.3.3 - send: 0.18.0 - checksum: a479dfe7e9fa7e8cb3ceccb0d944a3c72bb8f88d78472e30989f58fe15a92cfc909ab05a5c7cda2d1a6aa2663ab503ad1e2f40653740346e53e72b3ba41b6951 - languageName: node - linkType: hard - "set-blocking@npm:^2.0.0": version: 2.0.0 resolution: "set-blocking@npm:2.0.0" @@ -11390,13 +10892,6 @@ __metadata: languageName: node linkType: hard -"setprototypeof@npm:1.2.0": - version: 1.2.0 - resolution: "setprototypeof@npm:1.2.0" - checksum: be18cbbf70e7d8097c97f713a2e76edf84e87299b40d085c6bf8b65314e994cc15e2e317727342fa6996e38e1f52c59720b53fe621e2eb593a6847bf0356db89 - languageName: node - linkType: hard - "shallowequal@npm:1.1.0, shallowequal@npm:^1.1.0": version: 1.1.0 resolution: "shallowequal@npm:1.1.0" @@ -11644,7 +11139,7 @@ __metadata: languageName: node linkType: hard -"statuses@npm:2.0.1, statuses@npm:^2.0.1": +"statuses@npm:^2.0.1": version: 2.0.1 resolution: "statuses@npm:2.0.1" checksum: 18c7623fdb8f646fb213ca4051be4df7efb3484d4ab662937ca6fbef7ced9b9e12842709872eb3020cc3504b93bde88935c9f6417489627a7786f24f8031cbcb @@ -11693,16 +11188,21 @@ __metadata: languageName: node linkType: hard -"storybook@npm:^8.3.6": - version: 8.3.6 - resolution: "storybook@npm:8.3.6" +"storybook@npm:^8.4.6": + version: 8.4.6 + resolution: "storybook@npm:8.4.6" dependencies: - "@storybook/core": 8.3.6 + "@storybook/core": 8.4.6 + peerDependencies: + prettier: ^2 || ^3 + peerDependenciesMeta: + prettier: + optional: true bin: getstorybook: ./bin/index.cjs sb: ./bin/index.cjs storybook: ./bin/index.cjs - checksum: 826eaaa84f295aa900a35bed9403e1a1853364f90d50b69270b105d00c945cca9fdbba260b18712f6e43faa07f3dd7ed64e2d9d7257c5f1653820039aeabf4ff + checksum: af1295778a99d504f6200d9594a517a58e0e8ccf2d5f2706e9716eb2e60ac4475bb558d811d4b51bc7feb0c21701a3801e09a4d52b453e1f94ce28b13be1a50f languageName: node linkType: hard @@ -12018,15 +11518,6 @@ __metadata: languageName: node linkType: hard -"telejson@npm:^7.2.0": - version: 7.2.0 - resolution: "telejson@npm:7.2.0" - dependencies: - memoizerific: ^1.11.3 - checksum: 55a3380c9ff3c5ad84581bb6bda28fc33c6b7c4a0c466894637da687639b8db0d21b0ff4c1bc1a7a92ae6b70662549d09e7b9e8b1ec334b2ef93078762ecdfb9 - languageName: node - linkType: hard - "test-exclude@npm:^7.0.1": version: 7.0.1 resolution: "test-exclude@npm:7.0.1" @@ -12154,13 +11645,6 @@ __metadata: languageName: node linkType: hard -"toidentifier@npm:1.0.1": - version: 1.0.1 - resolution: "toidentifier@npm:1.0.1" - checksum: 952c29e2a85d7123239b5cfdd889a0dde47ab0497f0913d70588f19c53f7e0b5327c95f4651e413c74b785147f9637b17410ac8c846d5d4a20a5a33eb6dc3a45 - languageName: node - linkType: hard - "toml@npm:^3.0.0": version: 3.0.0 resolution: "toml@npm:3.0.0" @@ -12381,7 +11865,7 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^2.19.0, type-fest@npm:~2.19": +"type-fest@npm:^2.19.0": version: 2.19.0 resolution: "type-fest@npm:2.19.0" checksum: a4ef07ece297c9fba78fc1bd6d85dff4472fe043ede98bd4710d2615d15776902b595abf62bd78339ed6278f021235fb28a96361f8be86ed754f778973a0d278 @@ -12395,16 +11879,6 @@ __metadata: languageName: node linkType: hard -"type-is@npm:~1.6.18": - version: 1.6.18 - resolution: "type-is@npm:1.6.18" - dependencies: - media-typer: 0.3.0 - mime-types: ~2.1.24 - checksum: 2c8e47675d55f8b4e404bcf529abdf5036c537a04c2b20177bcf78c9e3c1da69da3942b1346e6edb09e823228c0ee656ef0e033765ec39a70d496ef601a0c657 - languageName: node - linkType: hard - "typed-array-buffer@npm:^1.0.2": version: 1.0.2 resolution: "typed-array-buffer@npm:1.0.2" @@ -12731,13 +12205,6 @@ __metadata: languageName: node linkType: hard -"unpipe@npm:1.0.0, unpipe@npm:~1.0.0": - version: 1.0.0 - resolution: "unpipe@npm:1.0.0" - checksum: 4fa18d8d8d977c55cb09715385c203197105e10a6d220087ec819f50cb68870f02942244f1017565484237f1f8c5d3cd413631b1ae104d3096f24fdfde1b4aa2 - languageName: node - linkType: hard - "unplugin@npm:^1.3.1": version: 1.4.0 resolution: "unplugin@npm:1.4.0" @@ -12795,14 +12262,14 @@ __metadata: languageName: node linkType: hard -"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2": +"util-deprecate@npm:^1.0.1": version: 1.0.2 resolution: "util-deprecate@npm:1.0.2" checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2 languageName: node linkType: hard -"util@npm:^0.12.4, util@npm:^0.12.5": +"util@npm:^0.12.5": version: 0.12.5 resolution: "util@npm:0.12.5" dependencies: @@ -12815,13 +12282,6 @@ __metadata: languageName: node linkType: hard -"utils-merge@npm:1.0.1": - version: 1.0.1 - resolution: "utils-merge@npm:1.0.1" - checksum: c81095493225ecfc28add49c106ca4f09cdf56bc66731aa8dabc2edbbccb1e1bfe2de6a115e5c6a380d3ea166d1636410b62ef216bb07b3feb1cfde1d95d5080 - languageName: node - linkType: hard - "uuid@npm:^11.0.3": version: 11.0.3 resolution: "uuid@npm:11.0.3" @@ -12857,13 +12317,6 @@ __metadata: languageName: node linkType: hard -"vary@npm:~1.1.2": - version: 1.1.2 - resolution: "vary@npm:1.1.2" - checksum: ae0123222c6df65b437669d63dfa8c36cee20a504101b2fcd97b8bf76f91259c17f9f2b4d70a1e3c6bbcee7f51b28392833adb6b2770b23b01abec84e369660b - languageName: node - linkType: hard - "vfile-location@npm:^5.0.0": version: 5.0.2 resolution: "vfile-location@npm:5.0.2" From 34a481c7e2bea30ce00fc424d2c7a5c25b05355a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 00:10:38 +0000 Subject: [PATCH 31/34] Bump the fetching group across 1 directory with 4 updates (#16708) Bumps the fetching group with 4 updates in the /frontend-react directory: [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query), [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools), [axios](https://github.com/axios/axios) and [react-query-kit](https://github.com/liaoliao666/react-query-kit). Updates `@tanstack/react-query` from 5.59.15 to 5.62.2 - [Release notes](https://github.com/TanStack/query/releases) - [Commits](https://github.com/TanStack/query/commits/v5.62.2/packages/react-query) Updates `@tanstack/react-query-devtools` from 5.59.15 to 5.62.2 - [Release notes](https://github.com/TanStack/query/releases) - [Commits](https://github.com/TanStack/query/commits/v5.62.2/packages/react-query-devtools) Updates `axios` from 1.7.7 to 1.7.8 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.7.7...v1.7.8) Updates `react-query-kit` from 3.3.0 to 3.3.1 - [Release notes](https://github.com/liaoliao666/react-query-kit/releases) - [Commits](https://github.com/liaoliao666/react-query-kit/compare/3.3.0...3.3.1) --- updated-dependencies: - dependency-name: "@tanstack/react-query" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: fetching - dependency-name: "@tanstack/react-query-devtools" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: fetching - dependency-name: axios dependency-type: direct:production update-type: version-update:semver-patch dependency-group: fetching - dependency-name: react-query-kit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: fetching ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend-react/package.json | 8 ++--- frontend-react/yarn.lock | 64 ++++++++++++++++++------------------- 2 files changed, 35 insertions(+), 37 deletions(-) diff --git a/frontend-react/package.json b/frontend-react/package.json index 873a5498af9..04b5cdcb1c3 100644 --- a/frontend-react/package.json +++ b/frontend-react/package.json @@ -10,11 +10,11 @@ "@okta/okta-react": "^6.9.0", "@okta/okta-signin-widget": "^7.24.2", "@rest-hooks/rest": "^3.0.3", - "@tanstack/react-query": "^5.59.15", - "@tanstack/react-query-devtools": "^5.59.15", + "@tanstack/react-query": "^5.62.2", + "@tanstack/react-query-devtools": "^5.62.2", "@trussworks/react-uswds": "^9.1.0", "@uswds/uswds": "3.7.1", - "axios": "^1.7.7", + "axios": "^1.7.8", "classnames": "^2.5.1", "date-fns": "^4.1.0", "date-fns-tz": "^3.2.0", @@ -31,7 +31,7 @@ "react-idle-timer": "^5.7.2", "react-loader-spinner": "^6.1.6", "react-markdown": "^9.0.1", - "react-query-kit": "^3.3.0", + "react-query-kit": "^3.3.1", "react-router": "^6.27.0", "react-router-dom": "^6.27.0", "react-scroll-sync": "^0.11.2", diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock index ae8a0f46b49..0092bf86e7d 100644 --- a/frontend-react/yarn.lock +++ b/frontend-react/yarn.lock @@ -2445,40 +2445,40 @@ __metadata: languageName: node linkType: hard -"@tanstack/query-core@npm:5.59.13": - version: 5.59.13 - resolution: "@tanstack/query-core@npm:5.59.13" - checksum: 2f43f53ecd0151c9f83f822f47a8c882cce234ece2fa4fc575ae1bf865094ff145f5efe7cb9c750541df143804941248aceaf85e7c5346a7897d896845996dff +"@tanstack/query-core@npm:5.62.2": + version: 5.62.2 + resolution: "@tanstack/query-core@npm:5.62.2" + checksum: 1d15f007214c65c15360eadfe6ccefb8a2d780b85383b8ce7083950d8648efc95784e36d304792f1b738178b9fb0531e0d062c7f63d69f4577c1f1b9f7c15af7 languageName: node linkType: hard -"@tanstack/query-devtools@npm:5.58.0": - version: 5.58.0 - resolution: "@tanstack/query-devtools@npm:5.58.0" - checksum: ba5a2b96a307abb02607a6e8a3378b680871d89b83916fde8b21ae29ca2282eaa3d98638780f08e1c85cdce94258ba88bb5535780fcad004ebd7de608be7dacc +"@tanstack/query-devtools@npm:5.61.4": + version: 5.61.4 + resolution: "@tanstack/query-devtools@npm:5.61.4" + checksum: b2138f9848e38353d21abf17a1ae7c65528ba6f095537988b5cbb365bb0a64176b7ff9ea5c0494d69b5d2799a4c495fc0fc877b5e1f369f178549655c2748be9 languageName: node linkType: hard -"@tanstack/react-query-devtools@npm:^5.59.15": - version: 5.59.15 - resolution: "@tanstack/react-query-devtools@npm:5.59.15" +"@tanstack/react-query-devtools@npm:^5.62.2": + version: 5.62.2 + resolution: "@tanstack/react-query-devtools@npm:5.62.2" dependencies: - "@tanstack/query-devtools": 5.58.0 + "@tanstack/query-devtools": 5.61.4 peerDependencies: - "@tanstack/react-query": ^5.59.15 + "@tanstack/react-query": ^5.62.2 react: ^18 || ^19 - checksum: 69169f87efc8bd845181f6dea63947e60980e561b6bfb60ce39a7d4b656d4124d0e976fd62d32fa3afd4ebe5af7c64d43ff34bc59b3b189c1d1b74169e73381d + checksum: 5a01a2ebff96d13572afc72f7f167c612d3417a17006759e4fc12b7f2bc428b58693ea7f467e286edcff7c5e454d937da9857b8cc99a7d02ad66b3eaab2d3b8d languageName: node linkType: hard -"@tanstack/react-query@npm:^5.59.15": - version: 5.59.15 - resolution: "@tanstack/react-query@npm:5.59.15" +"@tanstack/react-query@npm:^5.62.2": + version: 5.62.2 + resolution: "@tanstack/react-query@npm:5.62.2" dependencies: - "@tanstack/query-core": 5.59.13 + "@tanstack/query-core": 5.62.2 peerDependencies: react: ^18 || ^19 - checksum: 465aa2cdfc83fe3ebbb3dfe94ad39ac9e047e6808890b9dfd253d7aec31cdc46198af3c3a8dfa6a7212f941db7df1fe9a724540504cc2e3efa1cdffcb2d48164 + checksum: 4735781dade3a55d0f2992b4f5c4c0e27d89788f2df37f57abeb45126aab54314638a040bae2bd39dda2aa4d27c96439b5df457890f1c0822ea74d290ffe2d9c languageName: node linkType: hard @@ -4049,14 +4049,14 @@ __metadata: languageName: node linkType: hard -"axios@npm:^1.7.7": - version: 1.7.7 - resolution: "axios@npm:1.7.7" +"axios@npm:^1.7.8": + version: 1.7.8 + resolution: "axios@npm:1.7.8" dependencies: follow-redirects: ^1.15.6 form-data: ^4.0.0 proxy-from-env: ^1.1.0 - checksum: 882d4fe0ec694a07c7f5c1f68205eb6dc5a62aecdb632cc7a4a3d0985188ce3030e0b277e1a8260ac3f194d314ae342117660a151fabffdc5081ca0b5a8b47fe + checksum: 3d21652faf8e29fb36c47517d2872bb5e2285127a24f5c53ce23082c4eac7f5a88de84dd49d4a1a83068e5301dcfd9067b41e5fbd00b0d20ab7b0a843559273d languageName: node linkType: hard @@ -9998,8 +9998,8 @@ __metadata: "@storybook/react-vite": ^8.4.6 "@storybook/testing-library": ^0.2.2 "@storybook/theming": ^8.4.6 - "@tanstack/react-query": ^5.59.15 - "@tanstack/react-query-devtools": ^5.59.15 + "@tanstack/react-query": ^5.62.2 + "@tanstack/react-query-devtools": ^5.62.2 "@testing-library/dom": ^10.4.0 "@testing-library/jest-dom": ^6.6.2 "@testing-library/react": ^16.0.1 @@ -10023,7 +10023,7 @@ __metadata: "@vitest/coverage-istanbul": ^2.1.3 "@vitest/ui": ^2.1.3 autoprefixer: ^10.4.20 - axios: ^1.7.7 + axios: ^1.7.8 browserslist: ^4.24.2 browserslist-useragent-regexp: ^4.1.3 chromatic: ^11.20.0 @@ -10071,7 +10071,7 @@ __metadata: react-idle-timer: ^5.7.2 react-loader-spinner: ^6.1.6 react-markdown: ^9.0.1 - react-query-kit: ^3.3.0 + react-query-kit: ^3.3.1 react-router: ^6.27.0 react-router-dom: ^6.27.0 react-scroll-sync: ^0.11.2 @@ -10189,15 +10189,13 @@ __metadata: languageName: node linkType: hard -"react-query-kit@npm:^3.3.0": - version: 3.3.0 - resolution: "react-query-kit@npm:3.3.0" - peerDependencies: - "@tanstack/react-query": ^4 || ^5 +"react-query-kit@npm:^3.3.1": + version: 3.3.1 + resolution: "react-query-kit@npm:3.3.1" peerDependenciesMeta: "@tanstack/react-query": optional: true - checksum: 5551bdfcbe9ba4c50b2fa157811beb80e4a5265682e7c5bb50f148d87ef7d0e1652bb646a0a7b9e0cb8ba72a1c77fb9b86ec6b9f70f69fec15557024ffbebe3f + checksum: 32e98bf85cc8a283ee42c9a7a0ef8fdad723feb68801d8c4e664a22d0d643d8991e8eaf303bb9b90d19b1c81fe5b6a9e9e3de597dd73e360dc2b3539c014f390 languageName: node linkType: hard From 62207ec18146263129953367204bb68ada512a16 Mon Sep 17 00:00:00 2001 From: "Eduardo Valdes Jr." <1084551+emvaldes@users.noreply.github.com> Date: Wed, 4 Dec 2024 14:06:58 -0700 Subject: [PATCH 32/34] =?UTF-8?q?Updating=20the=20azure/login=20version=20?= =?UTF-8?q?to=20latest=20(v2)=20and=20adding=20a=20validati=E2=80=A6=20(#1?= =?UTF-8?q?6707)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Updating the azure/login version to latest (v2). * Migrating to the GHA azure/login v2 and normalize the AZURE_CREDENTIALS environment variable. * Removing the validation block as it's failing to pass with this error MICROSOFT_AZURE_CLI_1733341427667_CONTAINER. --------- Co-authored-by: matts <22215332+devopsmatt@users.noreply.github.com> --- .github/actions/build-vars/action.yml | 6 ++-- .github/actions/vpn-azure/action.yml | 2 +- .github/workflows/alert_cert_expire.yml | 7 +++-- .github/workflows/alert_resource_costs.yml | 5 +-- .github/workflows/alert_terraform_changes.yml | 6 +++- .github/workflows/build_hub.yml | 3 +- .github/workflows/cleanup_acr_images.yml | 16 ++++++---- .github/workflows/deploy_terraform.yml | 7 +++-- .github/workflows/deployment_rollback.yml | 6 +++- .../workflows/destroy_demo_environment.yml | 6 +++- .github/workflows/export_cost_data.yml | 8 +++-- .github/workflows/release_chatops_app.yml | 7 +++-- .github/workflows/release_to_azure.yml | 13 +++++--- .github/workflows/release_trial_frontend.yml | 5 ++- .github/workflows/restore_databases.yml | 31 ++++++++++--------- .github/workflows/start_test_servers.yml | 14 ++++++--- .github/workflows/stop_test_servers.yml | 17 +++++----- .../workflows/sync-translation-schemas.yml | 5 ++- .github/workflows/validate_resources.yml | 13 +++++--- 19 files changed, 115 insertions(+), 62 deletions(-) diff --git a/.github/actions/build-vars/action.yml b/.github/actions/build-vars/action.yml index 07a7fe0bf3e..35bf7e7914e 100644 --- a/.github/actions/build-vars/action.yml +++ b/.github/actions/build-vars/action.yml @@ -170,7 +170,7 @@ runs: - 'frontend-react/**/!(*.md)' - '.github/actions/build-vars/action.yml' - '.github/actions/build-frontend/action.yml' - - '.github/workflows/frontend_ci.yml' + - '.github/workflows/frontend_ci.yml' terraform: - 'operations/app/terraform/**/!(*.md)' - '.github/workflows/validate_terraform.yml' @@ -215,7 +215,7 @@ runs: else echo "has_router_change=${{ steps.filter.outputs.router }}" >> $GITHUB_OUTPUT fi - + - name: Determine if frontend changed if: github.event_name != 'schedule' id: frontend_change_result @@ -234,7 +234,7 @@ runs: echo "has_frontend_change=${{ steps.filter.outputs.frontend_react }}" >> $GITHUB_OUTPUT fi - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 if: inputs.sp-creds != 'false' with: creds: ${{ inputs.sp-creds }} diff --git a/.github/actions/vpn-azure/action.yml b/.github/actions/vpn-azure/action.yml index faba23787a2..f52373efb58 100644 --- a/.github/actions/vpn-azure/action.yml +++ b/.github/actions/vpn-azure/action.yml @@ -63,7 +63,7 @@ runs: fi shell: bash - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 if: inputs.sp-creds with: creds: ${{ inputs.sp-creds }} diff --git a/.github/workflows/alert_cert_expire.yml b/.github/workflows/alert_cert_expire.yml index 430ee3353d4..304a8e37a75 100644 --- a/.github/workflows/alert_cert_expire.yml +++ b/.github/workflows/alert_cert_expire.yml @@ -5,6 +5,9 @@ on: # The workflow runs every day at 8:07am - cron: "7 13 * * *" #UTC-5 +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: check-certificates: runs-on: ubuntu-latest @@ -23,7 +26,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} - name: Add Runner IP to Key Vault Firewall run: | @@ -48,7 +51,7 @@ jobs: echo "LIST<<$EOF" >> $GITHUB_OUTPUT cat certificates.json >> $GITHUB_OUTPUT echo "$EOF" >> $GITHUB_OUTPUT - + - name: Slack Notification if: ${{ steps.format_out.outputs.LIST != '' }} uses: ./.github/actions/notifications diff --git a/.github/workflows/alert_resource_costs.yml b/.github/workflows/alert_resource_costs.yml index 0b16f6491b6..a085af0132e 100644 --- a/.github/workflows/alert_resource_costs.yml +++ b/.github/workflows/alert_resource_costs.yml @@ -7,6 +7,7 @@ on: env: ALERT_THRESHOLD: 60 GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' jobs: alert_costs: @@ -23,7 +24,7 @@ jobs: - name: Login into Azure uses: ./.github/actions/vpn-azure with: - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} - name: Run Az Cost CLI id: az-cost @@ -59,7 +60,7 @@ jobs: message: | Resource Group \`${{ matrix.rg }}\` is exceeding the cost threshold and is ${{ steps.env-age.outputs.age_in_days }} days old. If still running and no longer needed, please [destroy](https://github.com/CDCgov/prime-reportstream/actions/workflows/destroy_demo_environment.yml). - + * **Cost per day: 💲${{ steps.az-cost.outputs.result }}** * **Provisioned by: \`${{ steps.last-pusher.outputs.username }}\`** * **Last Change Date: \`${{ steps.last-pusher.outputs.last_change_date }}\`** diff --git a/.github/workflows/alert_terraform_changes.yml b/.github/workflows/alert_terraform_changes.yml index c7730e3a01a..0e0bb7392a8 100644 --- a/.github/workflows/alert_terraform_changes.yml +++ b/.github/workflows/alert_terraform_changes.yml @@ -4,6 +4,10 @@ on: schedule: # The workflow runs every day at 8:20am - cron: "7 13 * * *" #UTC-5 + +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: alert_tf_changes: name: Check Terraform plan for ${{ matrix.env }} @@ -24,7 +28,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} tf-auth: true - name: Collect Terraform stats diff --git a/.github/workflows/build_hub.yml b/.github/workflows/build_hub.yml index 4fda37397eb..5727ec498aa 100644 --- a/.github/workflows/build_hub.yml +++ b/.github/workflows/build_hub.yml @@ -21,6 +21,7 @@ env: # These are for CI and not credentials of any system DB_USER: prime DB_PASSWORD: changeIT! + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' jobs: pre_job: @@ -64,7 +65,7 @@ jobs: version: ${{ github.run_id }} upload-build: false run-integration-tests: true - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} - name: Generate New Schema Docs working-directory: ./ diff --git a/.github/workflows/cleanup_acr_images.yml b/.github/workflows/cleanup_acr_images.yml index abf1185097a..fe1bb66d412 100644 --- a/.github/workflows/cleanup_acr_images.yml +++ b/.github/workflows/cleanup_acr_images.yml @@ -4,6 +4,10 @@ on: schedule: - cron: "0 0 * * *" # Runs daily at midnight UTC + +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: cleanup_images: runs-on: ubuntu-latest @@ -22,7 +26,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} - name: List ${{ matrix.env }} repository images run: | @@ -35,7 +39,7 @@ jobs: - name: Delete old images in ${{ matrix.env }} env env: - IMAGE_FILE: ${{ matrix.env }}-images.txt + IMAGE_FILE: ${{ matrix.env }}-images.txt run: | if [ -e "$IMAGE_FILE" ]; then while IFS= read -r image_id; do @@ -49,9 +53,9 @@ jobs: else echo "File not found: $IMAGE_FILE" fi - - # Pushing a modified image using an existing tag untags the previously pushed image, - # resulting in an orphaned (or "dangling") image. + + # Pushing a modified image using an existing tag untags the previously pushed image, + # resulting in an orphaned (or "dangling") image. # The previously pushed image's manifest--and its layer data--remains in the registry. # They still need to be removed @@ -65,7 +69,7 @@ jobs: - name: Delete image manifest in ${{ matrix.env }} env env: - UNTAGED_FILE: ${{ matrix.env }}-untaged-images.txt + UNTAGED_FILE: ${{ matrix.env }}-untaged-images.txt run: | if [ -e "$UNTAGED_FILE" ]; then while IFS= read -r manifest_id; do diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index b2a44672fde..97f5cc3b0d6 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -8,6 +8,9 @@ on: paths: - '**.tf' +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: pre_job: name: Set Build Environment @@ -48,7 +51,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} tf-auth: true - name: Collect Terraform stats @@ -101,7 +104,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} tf-auth: true - name: Use specific version of Terraform uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd diff --git a/.github/workflows/deployment_rollback.yml b/.github/workflows/deployment_rollback.yml index 1b35fdd641b..4fb20811984 100644 --- a/.github/workflows/deployment_rollback.yml +++ b/.github/workflows/deployment_rollback.yml @@ -11,6 +11,10 @@ on: - staging - test type: choice + +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: DeployToCandidateSlot: runs-on: ubuntu-latest @@ -45,7 +49,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} - name: Add runner IP to Function App firewall run: | diff --git a/.github/workflows/destroy_demo_environment.yml b/.github/workflows/destroy_demo_environment.yml index a64a2e21f81..b74c11ae406 100644 --- a/.github/workflows/destroy_demo_environment.yml +++ b/.github/workflows/destroy_demo_environment.yml @@ -12,6 +12,10 @@ on: - demo3 type: choice + +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: destroy_demo_environment: name: "Destroy Environment: ${{ github.event.inputs.env_name }}" @@ -36,7 +40,7 @@ jobs: uses: ./.github/actions/vpn-azure with: env-name: ${{ github.event.inputs.env_name }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} tf-auth: true - name: Destroy demo environment diff --git a/.github/workflows/export_cost_data.yml b/.github/workflows/export_cost_data.yml index 05969238c83..434fbcf6c96 100644 --- a/.github/workflows/export_cost_data.yml +++ b/.github/workflows/export_cost_data.yml @@ -4,6 +4,10 @@ on: schedule: # The workflow runs every day at 3PM - cron: "0 19 * * *" #UTC-5 + +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: export_cost_data: name: Export Azure Cost Data to Storage @@ -27,7 +31,7 @@ jobs: uses: ./.github/actions/vpn-azure with: env-name: ${{ matrix.env }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} tf-auth: false - name: Run Az Cost CLI id: az-cost @@ -76,7 +80,7 @@ jobs: user: prime database: prime_data_hub output-file: result.txt - query: | + query: | CREATE TABLE IF NOT EXISTS Azure_Costs ( Date date, Cost NUMERIC(13, 8), diff --git a/.github/workflows/release_chatops_app.yml b/.github/workflows/release_chatops_app.yml index 9edac887f3d..89543decad6 100644 --- a/.github/workflows/release_chatops_app.yml +++ b/.github/workflows/release_chatops_app.yml @@ -12,6 +12,9 @@ on: paths: - "operations/slack-boltjs-app" +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: pre_job: name: Set Build Environment @@ -40,9 +43,9 @@ jobs: with: submodules: true - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 with: - creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + creds: ${{ env.AZURE_CREDENTIALS }} - name: Set environment variables shell: bash diff --git a/.github/workflows/release_to_azure.yml b/.github/workflows/release_to_azure.yml index aaa7ceaee7b..481834e4db4 100644 --- a/.github/workflows/release_to_azure.yml +++ b/.github/workflows/release_to_azure.yml @@ -15,6 +15,9 @@ defaults: run: working-directory: prime-router +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: pre_job: name: "Set Build Environment" @@ -33,7 +36,7 @@ jobs: id: build_vars uses: ./.github/actions/build-vars with: - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} build_router_release: name: "Release: Build Router" @@ -102,7 +105,7 @@ jobs: uses: ./.github/actions/vpn-azure with: env-name: ${{ needs.pre_job.outputs.env_name }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} tf-auth: true - name: Provision demo environment @@ -138,7 +141,7 @@ jobs: uses: ./.github/actions/vpn-azure with: env-name: ${{ needs.pre_job.outputs.env_name }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} - name: Get function app checksum env: @@ -194,7 +197,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} dns-ip: ${{ needs.pre_job.outputs.dns_ip }} - name: Deploy backend @@ -233,7 +236,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} dns-ip: ${{ needs.pre_job.outputs.dns_ip }} - name: Deploy frontend diff --git a/.github/workflows/release_trial_frontend.yml b/.github/workflows/release_trial_frontend.yml index 9c8df9192c7..10bddf055f9 100644 --- a/.github/workflows/release_trial_frontend.yml +++ b/.github/workflows/release_trial_frontend.yml @@ -12,6 +12,9 @@ defaults: run: working-directory: prime-router +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: pre_job: name: "Set Build Environment" @@ -76,7 +79,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} - name: Deploy frontend uses: ./.github/actions/deploy-frontend diff --git a/.github/workflows/restore_databases.yml b/.github/workflows/restore_databases.yml index 628f82c377e..1d159a31d51 100644 --- a/.github/workflows/restore_databases.yml +++ b/.github/workflows/restore_databases.yml @@ -43,6 +43,9 @@ defaults: run: working-directory: prime-router +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: pre_job: name: "Set Build Environment" @@ -66,7 +69,7 @@ jobs: shell: bash run: | echo "event_name: ${{ github.event_name }}" - if [[ "${{ github.event_name }}" == 'workflow_dispatch' ]]; then + if [[ "${{ github.event_name }}" == 'workflow_dispatch' ]]; then echo "ENV_NAME=${{ github.event.inputs.backup_from }}" >> $GITHUB_ENV echo "SINK_ENV_NAME=${{ github.event.inputs.restore_to }}" >> $GITHUB_ENV echo "RESTORE_IGNORE_BACKUP_AGE=${{ github.event.inputs.restore_ignore_backup_age }}" >> $GITHUB_ENV @@ -79,7 +82,7 @@ jobs: echo "BACKUP_AGE_LIMIT_MINS=1440" >> $GITHUB_ENV echo "DATABASES=[\"prime_data_hub_candidate\"]" >> $GITHUB_ENV fi - + - name: Set backup and restore variables shell: bash run: | @@ -90,9 +93,9 @@ jobs: echo "SINK_BACKUP_STORAGE=pdh${{ env.SINK_ENV_NAME }}terraform" >> $GITHUB_ENV # Login to Azure - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 with: - creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + creds: ${{ env.AZURE_CREDENTIALS }} # Restores will fail if sink server is not pre-expanded - name: Increase sink server size if necessary @@ -139,9 +142,9 @@ jobs: - name: Check out changes uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 with: - creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + creds: ${{ env.AZURE_CREDENTIALS }} - name: Get public ip shell: bash @@ -155,7 +158,7 @@ jobs: --share-name dbbackups --query 'exists' -o tsv --only-show-errors) if [ $backup_exists == "false" ]; then lastModified="1970-01-01" - else + else lastModified=$(az storage directory show --name ${{ env.env_name }}_${{ matrix.db }} --share-name dbbackups \ --account-name ${{ env.sink_backup_storage }} --query 'properties.lastModified' --only-show-errors -o tsv) fi @@ -230,9 +233,9 @@ jobs: - name: Check out changes uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 with: - creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + creds: ${{ env.AZURE_CREDENTIALS }} - name: Get public ip shell: bash @@ -293,15 +296,15 @@ jobs: \echo

setting table changes:

\echo UPDATE - setting - SET + setting + SET values = values || '{"transport": {"host": "10.0.1.100", "port": "22", "type": "SFTP", "filePath": "./staging", "credentialName": null}}'::jsonb - WHERE + WHERE type = 'RECEIVER' AND values -> 'transport' ->> 'type' = 'SFTP'; \echo
- SELECT - relname, n_tup_ins - n_tup_del as rowcount + SELECT + relname, n_tup_ins - n_tup_del as rowcount FROM pg_stat_all_tables WHERE schemaname NOT IN ('pg_catalog', 'information_schema') AND schemaname !~ '^pg_toast' diff --git a/.github/workflows/start_test_servers.yml b/.github/workflows/start_test_servers.yml index 292ef517956..45fcb8279ed 100644 --- a/.github/workflows/start_test_servers.yml +++ b/.github/workflows/start_test_servers.yml @@ -2,12 +2,16 @@ name: Start apps in Test server on: workflow_dispatch: - # push: + # push: # branches: # - feature/9537-schedulemaintenance_DemoandTest schedule: - cron: "0 5 * * MON" #UTC-5 - cron: '0 11 * * 1-5' + +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: alert_stale_branches: name: Start Test Subscription apps @@ -15,11 +19,11 @@ jobs: steps: - name: Check Out Changes uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 - + # Login to Azure - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 with: - creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + creds: ${{ env.AZURE_CREDENTIALS }} - name: Start postgres uses: ./.github/actions/Start-PostgresDB @@ -27,7 +31,7 @@ jobs: name: "pdhtest-pgsql-flex" resource-group: prime-data-hub-test subscription: OCIO-DMZ-C1 - + - name: Start function app uses: ./.github/actions/Start-AzFunction with: diff --git a/.github/workflows/stop_test_servers.yml b/.github/workflows/stop_test_servers.yml index 5f16822a7f9..ba8b476ad28 100644 --- a/.github/workflows/stop_test_servers.yml +++ b/.github/workflows/stop_test_servers.yml @@ -2,12 +2,15 @@ name: Stop Apps in Test server on: workflow_dispatch: - # push: + # push: # branches: # - feature/9537-schedulemaintenance_DemoandTest schedule: - cron: "0 5 * * SAT" #UTC-5 - - cron: '0 2 * * 1-5' + - cron: '0 2 * * 1-5' + +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' jobs: alert_stale_branches: @@ -16,7 +19,7 @@ jobs: steps: - name: Check Out Changes uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 - + - name: Connect to VPN and login to Azure uses: ./.github/actions/vpn-azure with: @@ -25,12 +28,12 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} tf-auth: true # Login to Azure - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 with: - creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + creds: ${{ env.AZURE_CREDENTIALS }} - name: Stop postgres uses: ./.github/actions/Stop-PostgresDB @@ -39,7 +42,7 @@ jobs: resource-group: prime-data-hub-test subscription: OCIO-DMZ-C1 pass: ${{ secrets.POSTGRESQL_Test_PWD }} - creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + creds: ${{ env.AZURE_CREDENTIALS }} - name: Stop function app uses: ./.github/actions/Stop-AzFunction diff --git a/.github/workflows/sync-translation-schemas.yml b/.github/workflows/sync-translation-schemas.yml index 45ea3cd7f0c..031ba19bbdc 100644 --- a/.github/workflows/sync-translation-schemas.yml +++ b/.github/workflows/sync-translation-schemas.yml @@ -11,6 +11,9 @@ on: - HL7 required: true +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: sync-schemas: runs-on: ubuntu-latest @@ -21,7 +24,7 @@ jobs: - name: Login into Azure uses: ./.github/actions/vpn-azure with: - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} - name: Build backend uses: ./.github/actions/build-backend diff --git a/.github/workflows/validate_resources.yml b/.github/workflows/validate_resources.yml index d05b0b5ae09..01c961b0985 100644 --- a/.github/workflows/validate_resources.yml +++ b/.github/workflows/validate_resources.yml @@ -14,6 +14,9 @@ on: schedule: - cron: "36 3 * * *" +env: + AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}' + jobs: pre_job: name: Set Build Environment @@ -57,7 +60,7 @@ jobs: ca-cert: ${{ secrets.CA_CRT}} user-crt: ${{ secrets.USER_CRT }} user-key: ${{ secrets.USER_KEY }} - sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + sp-creds: ${{ env.AZURE_CREDENTIALS }} - name: Restart DNS if failure uses: ./.github/actions/retry @@ -103,9 +106,9 @@ jobs: - name: Check Out Changes uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 with: - creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + creds: ${{ env.AZURE_CREDENTIALS }} - name: Reduce database replica sizes uses: ./.github/actions/retry @@ -136,9 +139,9 @@ jobs: - name: Check Out Changes uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 - - uses: azure/login@a65d910e8af852a8061c627c456678983e180302 + - uses: azure/login@v2 with: - creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }} + creds: ${{ env.AZURE_CREDENTIALS }} - name: Fetch VPN DNS IP id: fetch_vpn_ip From 6c6b77b9b7c6950420a68125932abb0a824caa85 Mon Sep 17 00:00:00 2001 From: Jamie Albinson Date: Wed, 4 Dec 2024 17:26:18 -0500 Subject: [PATCH 33/34] 16394 add ack functionality (#16552) --- .../organizations/organizations.json | 3 + prime-router/src/main/kotlin/Sender.kt | 7 +- .../src/main/kotlin/azure/HttpUtilities.kt | 9 ++ .../src/main/kotlin/azure/ReportFunction.kt | 31 ++-- .../service/SubmissionResponseBuilder.kt | 137 ++++++++++++++++++ .../src/main/kotlin/common/Environment.kt | 10 ++ .../translation/hl7/utils/HL7ACKUtils.kt | 68 +++++++++ .../main/kotlin/fhirengine/utils/HL7Reader.kt | 48 ++++++ .../test/kotlin/azure/ReportFunctionTests.kt | 82 ++++++++++- .../service/SubmissionResponseBuilderTest.kt | 112 ++++++++++++++ .../translation/hl7/utils/HL7ACKUtilsTest.kt | 66 +++++++++ .../kotlin/fhirengine/utils/HL7ReaderTests.kt | 23 +++ 12 files changed, 575 insertions(+), 21 deletions(-) create mode 100644 prime-router/src/main/kotlin/azure/service/SubmissionResponseBuilder.kt create mode 100644 prime-router/src/main/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtils.kt create mode 100644 prime-router/src/test/kotlin/azure/service/SubmissionResponseBuilderTest.kt create mode 100644 prime-router/src/test/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtilsTest.kt diff --git a/prime-router/metadata/json_schema/organizations/organizations.json b/prime-router/metadata/json_schema/organizations/organizations.json index 115efaa6ae0..8be19b987c1 100644 --- a/prime-router/metadata/json_schema/organizations/organizations.json +++ b/prime-router/metadata/json_schema/organizations/organizations.json @@ -213,6 +213,9 @@ "HL7_BATCH" ] }, + "hl7AcknowledgementEnabled": { + "type": "boolean" + }, "name": { "type": "string" }, diff --git a/prime-router/src/main/kotlin/Sender.kt b/prime-router/src/main/kotlin/Sender.kt index bec1d3c62ea..47b3a4355cb 100644 --- a/prime-router/src/main/kotlin/Sender.kt +++ b/prime-router/src/main/kotlin/Sender.kt @@ -31,6 +31,7 @@ import java.time.OffsetDateTime * @property allowDuplicates if false a duplicate submission will be rejected * @property senderType one of four broad sender categories * @property primarySubmissionMethod Sender preference for submission - manual or automatic + * @property hl7AcknowledgementEnabled should we return an HL7 ACK response if MSH.15 == "AL"? */ @JsonIgnoreProperties(ignoreUnknown = true) @JsonTypeInfo( @@ -59,6 +60,7 @@ abstract class Sender( val allowDuplicates: Boolean = true, val senderType: SenderType? = null, val primarySubmissionMethod: PrimarySubmissionMethod? = null, + val hl7AcknowledgementEnabled: Boolean = false, override var version: Int? = null, override var createdBy: String? = null, override var createdAt: OffsetDateTime? = null, @@ -194,6 +196,7 @@ class UniversalPipelineSender : Sender { allowDuplicates: Boolean = true, senderType: SenderType? = null, primarySubmissionMethod: PrimarySubmissionMethod? = null, + hl7AcknowledgementEnabled: Boolean = false, topic: Topic, ) : super( topic, @@ -205,7 +208,8 @@ class UniversalPipelineSender : Sender { processingType, allowDuplicates, senderType, - primarySubmissionMethod + primarySubmissionMethod, + hl7AcknowledgementEnabled ) constructor(copy: UniversalPipelineSender) : this( @@ -214,6 +218,7 @@ class UniversalPipelineSender : Sender { copy.format, copy.customerStatus, copy.schemaName, + hl7AcknowledgementEnabled = copy.hl7AcknowledgementEnabled, topic = copy.topic, ) diff --git a/prime-router/src/main/kotlin/azure/HttpUtilities.kt b/prime-router/src/main/kotlin/azure/HttpUtilities.kt index a850ba02f59..9a8ae91165b 100644 --- a/prime-router/src/main/kotlin/azure/HttpUtilities.kt +++ b/prime-router/src/main/kotlin/azure/HttpUtilities.kt @@ -24,6 +24,7 @@ class HttpUtilities { companion object : Logging { const val jsonMediaType = "application/json" const val fhirMediaType = "application/fhir+json" + const val hl7V2MediaType = "application/hl7-v2" const val oldApi = "/api/reports" const val watersApi = "/api/waters" const val tokenApi = "/api/token" @@ -434,6 +435,14 @@ class HttpUtilities { return responseCode to response } } + + /** + * Is status code 2xx? + */ + fun HttpStatus.isSuccessful(): Boolean { + val status = this.value() + return status in 200..299 + } } } diff --git a/prime-router/src/main/kotlin/azure/ReportFunction.kt b/prime-router/src/main/kotlin/azure/ReportFunction.kt index d923934848f..5f4d8bd0a69 100644 --- a/prime-router/src/main/kotlin/azure/ReportFunction.kt +++ b/prime-router/src/main/kotlin/azure/ReportFunction.kt @@ -5,7 +5,6 @@ import com.fasterxml.jackson.databind.SerializationFeature import com.fasterxml.jackson.databind.json.JsonMapper import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule import com.github.ajalt.clikt.core.CliktError -import com.google.common.net.HttpHeaders import com.microsoft.azure.functions.HttpMethod import com.microsoft.azure.functions.HttpRequestMessage import com.microsoft.azure.functions.HttpResponseMessage @@ -36,11 +35,11 @@ import gov.cdc.prime.router.azure.observability.event.IReportStreamEventService import gov.cdc.prime.router.azure.observability.event.ReportStreamEventName import gov.cdc.prime.router.azure.observability.event.ReportStreamEventProperties import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService +import gov.cdc.prime.router.azure.service.SubmissionResponseBuilder import gov.cdc.prime.router.cli.PIIRemovalCommands import gov.cdc.prime.router.cli.ProcessFhirCommands import gov.cdc.prime.router.common.AzureHttpUtils.getSenderIP import gov.cdc.prime.router.common.Environment -import gov.cdc.prime.router.common.JacksonMapperUtilities import gov.cdc.prime.router.fhirengine.utils.FhirTranscoder import gov.cdc.prime.router.history.azure.SubmissionsFacade import gov.cdc.prime.router.tokens.AuthenticatedClaims @@ -68,13 +67,14 @@ class ReportFunction( workflowEngine.azureEventService, workflowEngine.reportService ), + private val submissionResponseBuilder: SubmissionResponseBuilder = SubmissionResponseBuilder(), ) : RequestFunction(workflowEngine), Logging { - enum class IngestionMethod { - SFTP, - REST, - } + enum class IngestionMethod { + SFTP, + REST, + } /** * POST a report to the router @@ -601,19 +601,12 @@ class ReportFunction( SubmissionsFacade.instance.findDetailedSubmissionHistory(txn, null, actionHistory.action) } - val response = request.createResponseBuilder(httpStatus) - .header(HttpHeaders.CONTENT_TYPE, "application/json") - .body( - JacksonMapperUtilities.allowUnknownsMapper - .writeValueAsString(submission) - ) - .header( - HttpHeaders.LOCATION, - request.uri.resolve( - "/api/waters/report/${submission?.reportId}/history" - ).toString() - ) - .build() + val response = submissionResponseBuilder.buildResponse( + sender, + httpStatus, + request, + submission + ) // queue messages here after all task / action records are in actionHistory.queueMessages(workflowEngine) diff --git a/prime-router/src/main/kotlin/azure/service/SubmissionResponseBuilder.kt b/prime-router/src/main/kotlin/azure/service/SubmissionResponseBuilder.kt new file mode 100644 index 00000000000..c01f4a76fbc --- /dev/null +++ b/prime-router/src/main/kotlin/azure/service/SubmissionResponseBuilder.kt @@ -0,0 +1,137 @@ +package gov.cdc.prime.router.azure.service + +import ca.uhn.hl7v2.model.Message +import com.google.common.net.HttpHeaders +import com.microsoft.azure.functions.HttpRequestMessage +import com.microsoft.azure.functions.HttpResponseMessage +import com.microsoft.azure.functions.HttpStatus +import gov.cdc.prime.router.ActionLogger +import gov.cdc.prime.router.Sender +import gov.cdc.prime.router.azure.HttpUtilities +import gov.cdc.prime.router.azure.HttpUtilities.Companion.isSuccessful +import gov.cdc.prime.router.common.JacksonMapperUtilities +import gov.cdc.prime.router.fhirengine.translation.hl7.utils.HL7ACKUtils +import gov.cdc.prime.router.fhirengine.utils.HL7Reader +import gov.cdc.prime.router.history.DetailedSubmissionHistory +import org.apache.logging.log4j.kotlin.Logging + +/** + * Builder class to create either JSON or HL7 response types based on the contents of the + * submitted reports + */ +class SubmissionResponseBuilder( + private val hL7ACKUtils: HL7ACKUtils = HL7ACKUtils(), +) : Logging { + + /** + * Builds a response to send to the client after submitting a report + * + * This will be an HL7 ACK response given the client has enabled it and requested it. It will otherwise + * default to our default JSON response + */ + fun buildResponse( + sender: Sender, + responseStatus: HttpStatus, + request: HttpRequestMessage, + submission: DetailedSubmissionHistory?, + ): HttpResponseMessage { + // Azure handles all headers as lowercase + val contentType = request.headers[HttpHeaders.CONTENT_TYPE.lowercase()] + val requestBody = request.body + return when (val responseType = determineResponseType(sender, responseStatus, contentType, requestBody)) { + is HL7ResponseType -> { + logger.info("Returning ACK response") + val responseBody = hL7ACKUtils.generateOutgoingACKMessage(responseType.message) + request.createResponseBuilder(responseStatus) + .header(HttpHeaders.CONTENT_TYPE, HttpUtilities.hl7V2MediaType) + .body(responseBody) + .build() + } + is JsonResponseType -> { + val responseBody = JacksonMapperUtilities + .allowUnknownsMapper + .writeValueAsString(submission) + request + .createResponseBuilder(responseStatus) + .header(HttpHeaders.CONTENT_TYPE, HttpUtilities.jsonMediaType) + .body(responseBody) + .header( + HttpHeaders.LOCATION, + request.uri.resolve( + "/api/waters/report/${submission?.reportId}/history" + ).toString() + ) + .build() + } + } + } + + /** + * Figures out in what format we should respond to a submission with + * + * @return SubmissionResponseType the response type defined in this file + */ + private fun determineResponseType( + sender: Sender, + responseStatus: HttpStatus, + contentType: String?, + requestBody: String?, + ): SubmissionResponseType { + val maybeACKMessage = hl7SuccessResponseRequired(sender, responseStatus, contentType, requestBody) + return when { + maybeACKMessage != null -> HL7ResponseType(maybeACKMessage) + else -> JsonResponseType + } + } + + /** + * This function will return true if the following conditions are met: + * - The sender has the "hl7AcknowledgementEnabled" field set to true + * - The HL7 message has been processed successfully + * - The submitted HL7 contains MSH.15 == "AL" + * - The submitted HL7 is not a batch message + * + * @return HL7 message if ACK required or null otherwise + */ + private fun hl7SuccessResponseRequired( + sender: Sender, + responseStatus: HttpStatus, + contentType: String?, + requestBody: String?, + ): Message? { + val acceptAcknowledgmentTypeRespondValues = setOf("AL") // AL means "Always" + return if ( + sender.hl7AcknowledgementEnabled && + responseStatus.isSuccessful() && + contentType == HttpUtilities.hl7V2MediaType && + requestBody != null + ) { + val hl7Reader = HL7Reader(ActionLogger()) + val messages = hl7Reader.getMessages(requestBody) + val isBatch = hl7Reader.isBatch(requestBody, messages.size) + + if (!isBatch && messages.size == 1) { + val message = messages.first() + val acceptAcknowledgementType = HL7Reader.getAcceptAcknowledgmentType(message) + val ackResponseRequired = acceptAcknowledgmentTypeRespondValues.contains(acceptAcknowledgementType) + if (ackResponseRequired) { + message + } else { + null + } + } else { + null + } + } else { + null + } + } +} + +/** + * Rather than an enum, we have used a hierarchy that allows an HL7 response type to hold onto the already + * parsed message during our check of MSH.15 to avoid doing that work twice. + */ +private sealed interface SubmissionResponseType +private data class HL7ResponseType(val message: Message) : SubmissionResponseType +private data object JsonResponseType : SubmissionResponseType \ No newline at end of file diff --git a/prime-router/src/main/kotlin/common/Environment.kt b/prime-router/src/main/kotlin/common/Environment.kt index 2cae4d3c817..012305920dd 100644 --- a/prime-router/src/main/kotlin/common/Environment.kt +++ b/prime-router/src/main/kotlin/common/Environment.kt @@ -103,12 +103,22 @@ enum class Environment( /** * Checks if the current environment is the local environment. + * * @return true if local environment, false otherwise */ fun isLocal(): Boolean { return get() == LOCAL } + /** + * Checks if the current environment is the production environment. + * + * @return true if production environment, false otherwise + */ + fun isProd(): Boolean { + return get() == PROD + } + /** * Time zone to use for ReportStream. Note that Azure runs on UTC, so this forces our local runs to also be UTC. */ diff --git a/prime-router/src/main/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtils.kt b/prime-router/src/main/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtils.kt new file mode 100644 index 00000000000..57f6c632396 --- /dev/null +++ b/prime-router/src/main/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtils.kt @@ -0,0 +1,68 @@ +package gov.cdc.prime.router.fhirengine.translation.hl7.utils + +import ca.uhn.hl7v2.model.Message +import ca.uhn.hl7v2.model.v251.message.ACK +import gov.cdc.prime.router.common.Environment +import gov.cdc.prime.router.fhirengine.utils.HL7Reader +import java.time.Clock +import java.util.Calendar +import java.util.Date +import java.util.TimeZone +import java.util.UUID + +/** + * Helper class to generate HL7 ACK response + */ +class HL7ACKUtils( + private val clock: Clock = Clock.systemUTC(), +) { + + /** + * Creates the output ACK message according to the spec defined in #16394 + * + * It will read an incoming message and copy some values over to their required locations + * + * It will always output HL7 2.5.1 regardless of the version of the incoming HL7 message + */ + fun generateOutgoingACKMessage(incomingACKMessage: Message): String { + val outgoingAck = ACK() + + val ackMsh = outgoingAck.msh + ackMsh.msh1_FieldSeparator.value = "|" + ackMsh.msh2_EncodingCharacters.value = "^~\\&" + ackMsh.msh3_SendingApplication.parse("ReportStream") + ackMsh.msh4_SendingFacility.parse("CDC") + ackMsh.msh5_ReceivingApplication.parse(HL7Reader.getSendingApplication(incomingACKMessage)) + ackMsh.msh6_ReceivingFacility.parse(HL7Reader.getSendingFacility(incomingACKMessage)) + ackMsh.msh7_DateTimeOfMessage.time.setValue(getTimestamp()) + ackMsh.msh9_MessageType.parse("ACK") + ackMsh.msh10_MessageControlID.parse(UUID.randomUUID().toString()) + ackMsh.msh11_ProcessingID.parse(if (Environment.isProd()) "P" else "T") + ackMsh.msh12_VersionID.versionID.parse("2.5.1") + ackMsh.msh15_AcceptAcknowledgmentType.parse("NE") + ackMsh.msh16_ApplicationAcknowledgmentType.parse("NE") + + val ackMsa = outgoingAck.msa + ackMsa.msa1_AcknowledgmentCode.parse("CA") + ackMsa.msa2_MessageControlID.parse(HL7Reader.getMessageControlId(incomingACKMessage)) + + return outgoingAck.toString() + } + + /** + * HL7 library requires old Java date libraries, so we do the conversion here. + * + * We must directly specify the UTC timezone or else the HL7 library will use + * your machines local timezone. + */ + private fun getTimestamp(): Calendar { + val instant = clock.instant() + val date = Date.from(instant) + + val calendar = Calendar.getInstance() + calendar.time = date + calendar.timeZone = TimeZone.getTimeZone("UTC") + + return calendar + } +} \ No newline at end of file diff --git a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt index 22ea9ceadda..aa48c011d8f 100644 --- a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt +++ b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt @@ -432,5 +432,53 @@ class HL7Reader(private val actionLogger: ActionLogger) : Logging { else -> null } } + + /** + * Reads MSH.3 which is the Sending Application field + */ + fun getSendingApplication(message: Message): String? { + return when (val structure = message[MSH_SEGMENT_NAME]) { + is NIST_MSH -> structure.msh3_SendingApplication.encode() + is v27_MSH -> structure.msh3_SendingApplication.encode() + is v251_MSH -> structure.msh3_SendingApplication.encode() + else -> null + } + } + + /** + * Reads MSH.4 which is the Sending Facility field + */ + fun getSendingFacility(message: Message): String? { + return when (val structure = message[MSH_SEGMENT_NAME]) { + is NIST_MSH -> structure.msh4_SendingFacility.encode() + is v27_MSH -> structure.msh4_SendingFacility.encode() + is v251_MSH -> structure.msh4_SendingFacility.encode() + else -> null + } + } + + /** + * Reads MSH.10 which is the Message Control ID field + */ + fun getMessageControlId(message: Message): String? { + return when (val structure = message[MSH_SEGMENT_NAME]) { + is NIST_MSH -> structure.msh10_MessageControlID.encode() + is v27_MSH -> structure.msh10_MessageControlID.encode() + is v251_MSH -> structure.msh10_MessageControlID.encode() + else -> null + } + } + + /** + * Reads MSH.15 which is the Accept Acknowledgment Type field + */ + fun getAcceptAcknowledgmentType(message: Message): String? { + return when (val structure = message[MSH_SEGMENT_NAME]) { + is NIST_MSH -> structure.msh15_AcceptAcknowledgmentType.encode() + is v27_MSH -> structure.msh15_AcceptAcknowledgmentType.encode() + is v251_MSH -> structure.msh15_AcceptAcknowledgmentType.encode() + else -> null + } + } } } \ No newline at end of file diff --git a/prime-router/src/test/kotlin/azure/ReportFunctionTests.kt b/prime-router/src/test/kotlin/azure/ReportFunctionTests.kt index 33ac1482980..a1f9de7b660 100644 --- a/prime-router/src/test/kotlin/azure/ReportFunctionTests.kt +++ b/prime-router/src/test/kotlin/azure/ReportFunctionTests.kt @@ -39,7 +39,9 @@ import gov.cdc.prime.router.UniversalPipelineReceiver import gov.cdc.prime.router.UniversalPipelineSender import gov.cdc.prime.router.azure.BlobAccess.BlobContainerMetadata import gov.cdc.prime.router.azure.db.enums.TaskAction +import gov.cdc.prime.router.azure.db.tables.pojos.Action import gov.cdc.prime.router.azure.db.tables.pojos.ReportFile +import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService import gov.cdc.prime.router.cli.GetMultipleSettings import gov.cdc.prime.router.cli.PIIRemovalCommands import gov.cdc.prime.router.cli.ProcessFhirCommands @@ -50,8 +52,10 @@ import gov.cdc.prime.router.tokens.AuthenticatedClaims import gov.cdc.prime.router.tokens.AuthenticationType import gov.cdc.prime.router.unittest.UnitTestUtils import io.ktor.utils.io.core.toByteArray +import io.mockk.Runs import io.mockk.clearAllMocks import io.mockk.every +import io.mockk.just import io.mockk.mockk import io.mockk.mockkClass import io.mockk.mockkConstructor @@ -1163,7 +1167,8 @@ class ReportFunctionTests { true, Sender.SenderType.facility, Sender.PrimarySubmissionMethod.manual, - Topic.FULL_ELR + false, + Topic.FULL_ELR, ) val receiver = Receiver( "full-elr", @@ -1201,4 +1206,79 @@ class ReportFunctionTests { ) assert(receiverReturned!!.name == receiver.name) } + + @Test + fun `return ack if requested and enabled`() { + val mockEngine = mockk() + val mockActionHistory = mockk(relaxed = true) + val mockReportStreamEventService = mockk(relaxed = true) + val mockSettings = mockk() + val mockReceiver = mockk() + val mockAction = mockk() + val mockDb = mockk() + mockkObject(BlobAccess.Companion) + mockkObject(SubmissionReceiver.Companion) + + val sender = UniversalPipelineSender( + name = "Test Sender", + organizationName = "org", + format = MimeFormat.HL7, + hl7AcknowledgementEnabled = true, + topic = Topic.FULL_ELR, + ) + val report = Report( + Schema(name = "one", topic = Topic.TEST, elements = listOf(Element("a"), Element("b"))), listOf(), + sources = listOf(ClientSource("myOrg", "myClient")), + metadata = UnitTestUtils.simpleMetadata + ) + val submission = DetailedSubmissionHistory( + 1, + TaskAction.receive, + OffsetDateTime.now(), + reports = mutableListOf(), + logs = emptyList() + ) + + every { mockEngine.settings } returns mockSettings + every { mockSettings.findSender(any()) } returns sender + every { BlobAccess.Companion.getBlobConnection(any()) } returns "testconnection" + every { SubmissionReceiver.getSubmissionReceiver(any(), any(), any()) } returns mockReceiver + every { + mockReceiver.validateAndMoveToProcessing( + any(), any(), any(), any(), any(), any(), any(), any(), any() + ) + } returns report + every { mockEngine.recordAction(any()) } just Runs + every { mockActionHistory.action } returns mockAction + every { mockAction.actionId } returns 5 + every { mockEngine.db } returns mockDb + // I don't agree with ktlint on this one + every { + mockDb.transactReturning( + any< + ( + DataAccessTransaction, + ) -> DetailedSubmissionHistory? + >() + ) + } returns submission + + val reportFunction = ReportFunction(mockEngine, mockActionHistory, mockReportStreamEventService) + + val body = """ + MSH|^~\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||AL|NE + """.trimIndent() + + val req = MockHttpRequestMessage(body) + req.httpHeaders += mapOf( + "client" to "Test Sender", + "content-length" to body.length.toString(), + "content-type" to "application/hl7-v2" + ) + + val response = reportFunction.run(req) + + assertThat(response.status).isEqualTo(HttpStatus.CREATED) + assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.hl7V2MediaType) + } } \ No newline at end of file diff --git a/prime-router/src/test/kotlin/azure/service/SubmissionResponseBuilderTest.kt b/prime-router/src/test/kotlin/azure/service/SubmissionResponseBuilderTest.kt new file mode 100644 index 00000000000..08824d7c0d8 --- /dev/null +++ b/prime-router/src/test/kotlin/azure/service/SubmissionResponseBuilderTest.kt @@ -0,0 +1,112 @@ +package gov.cdc.prime.router.azure.service + +import assertk.assertThat +import assertk.assertions.isEqualTo +import com.google.common.net.HttpHeaders +import com.microsoft.azure.functions.HttpRequestMessage +import com.microsoft.azure.functions.HttpStatus +import gov.cdc.prime.router.CustomerStatus +import gov.cdc.prime.router.MimeFormat +import gov.cdc.prime.router.Topic +import gov.cdc.prime.router.UniversalPipelineSender +import gov.cdc.prime.router.azure.HttpUtilities +import gov.cdc.prime.router.azure.MockHttpRequestMessage +import gov.cdc.prime.router.azure.db.enums.TaskAction +import gov.cdc.prime.router.history.DetailedSubmissionHistory +import java.time.OffsetDateTime +import kotlin.test.Test + +class SubmissionResponseBuilderTest { + + inner class Fixture { + val sender = UniversalPipelineSender( + "test", + "phd", + MimeFormat.HL7, + CustomerStatus.ACTIVE, + topic = Topic.FULL_ELR, + hl7AcknowledgementEnabled = true + ) + val submission = DetailedSubmissionHistory( + 1, + TaskAction.receive, + OffsetDateTime.now(), + reports = mutableListOf(), + logs = emptyList() + ) + + @Suppress("ktlint:standard:max-line-length") + val ackHL7 = "MSH|^~\\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||AL|NE" + + @Suppress("ktlint:standard:max-line-length") + val noAckHL7 = "MSH|^~\\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||NE|NE" + + val batchHL7 = """ + FHS|^~\&|||0.0.0.0.1|0.0.0.0.1|202201042030-0800 + BHS|^~\&|||0.0.0.0.1|0.0.0.0.1|202201042030-0800 + $ackHL7 + """.trimIndent() + + // default clock since we are not comparing HL7 in this test file + val builder = SubmissionResponseBuilder() + + fun buildRequest( + contentType: String = HttpUtilities.hl7V2MediaType, + content: String, + ): HttpRequestMessage { + val request = MockHttpRequestMessage( + content = content + ) + request.httpHeaders[HttpHeaders.CONTENT_TYPE.lowercase()] = contentType + return request + } + } + + @Test + fun `build ACK response when enabled for sender and correct conditions `() { + val f = Fixture() + + val request = f.buildRequest(content = f.ackHL7) + + val response = f.builder.buildResponse(f.sender, HttpStatus.CREATED, request, f.submission) + + assertThat(response.status).isEqualTo(HttpStatus.CREATED) + assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.hl7V2MediaType) + } + + @Test + fun `build JSON response when enabled for sender but HL7 does not request it`() { + val f = Fixture() + + val request = f.buildRequest(content = f.noAckHL7) + + val response = f.builder.buildResponse(f.sender, HttpStatus.CREATED, request, f.submission) + + assertThat(response.status).isEqualTo(HttpStatus.CREATED) + assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.jsonMediaType) + } + + @Test + fun `build JSON response when enabled for sender but is a batch message`() { + val f = Fixture() + + val request = f.buildRequest(content = f.batchHL7) + + val response = f.builder.buildResponse(f.sender, HttpStatus.CREATED, request, f.submission) + + assertThat(response.status).isEqualTo(HttpStatus.CREATED) + assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.jsonMediaType) + } + + @Test + fun `build JSON response when processing was unsuccessful`() { + val f = Fixture() + + val request = f.buildRequest(content = f.batchHL7) + + val response = f.builder.buildResponse(f.sender, HttpStatus.BAD_REQUEST, request, f.submission) + + assertThat(response.status).isEqualTo(HttpStatus.BAD_REQUEST) + assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.jsonMediaType) + } +} \ No newline at end of file diff --git a/prime-router/src/test/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtilsTest.kt b/prime-router/src/test/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtilsTest.kt new file mode 100644 index 00000000000..a519bcf396e --- /dev/null +++ b/prime-router/src/test/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtilsTest.kt @@ -0,0 +1,66 @@ +package gov.cdc.prime.router.fhirengine.translation.hl7.utils + +import assertk.assertThat +import assertk.assertions.isEqualTo +import gov.cdc.prime.router.ActionLogger +import gov.cdc.prime.router.cli.helpers.HL7DiffHelper +import gov.cdc.prime.router.fhirengine.utils.HL7Reader +import io.mockk.every +import io.mockk.mockkStatic +import io.mockk.unmockkAll +import org.junit.jupiter.api.AfterEach +import java.time.Clock +import java.time.LocalDateTime +import java.time.ZoneId +import java.time.ZoneOffset +import java.util.UUID +import kotlin.test.Test + +class HL7ACKUtilsTest { + + inner class Fixture { + val hl7Reader = HL7Reader(ActionLogger()) + val hl7DiffHelper = HL7DiffHelper() + + private val clock = Clock.fixed( + LocalDateTime.of(2024, 9, 21, 0, 0).toInstant(ZoneOffset.UTC), + ZoneId.of("UTC") + ) + val utils = HL7ACKUtils(clock) + } + + @AfterEach + fun cleanUp() { + unmockkAll() + } + + @Test + fun `generates properly formatted ACK response`() { + val f = Fixture() + + val id = UUID.randomUUID() + mockkStatic(UUID::class) + every { UUID.randomUUID() } returns id + + val incomingMessage = """ + MSH|^~\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||AL|NE + """.trimIndent() + val parsedIncomingMessage = f.hl7Reader.getMessages(incomingMessage).first() + + val ack = f.utils.generateOutgoingACKMessage(parsedIncomingMessage) + + val expected = f.hl7Reader.getMessages( + """ + MSH|^~\&|ReportStream|CDC|Epic|Hospital|20240921000000+0000||ACK|$id|T|2.5.1|||NE|NE + MSA|CA|4AFA57FE-D41D-4631-9500-286AAAF797E4 + """ + ).first() + val actual = f.hl7Reader.getMessages(ack).first() + + val diffs = f.hl7DiffHelper.diffHl7(expected, actual) + if (diffs.isNotEmpty()) { + println(diffs) + } + assertThat(diffs.size).isEqualTo(0) + } +} \ No newline at end of file diff --git a/prime-router/src/test/kotlin/fhirengine/utils/HL7ReaderTests.kt b/prime-router/src/test/kotlin/fhirengine/utils/HL7ReaderTests.kt index b6f96931f78..aef41a860bf 100644 --- a/prime-router/src/test/kotlin/fhirengine/utils/HL7ReaderTests.kt +++ b/prime-router/src/test/kotlin/fhirengine/utils/HL7ReaderTests.kt @@ -469,4 +469,27 @@ OBX|1|test|94558-4^SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen b val obxSegment = Terser(messages[0]).getSegment("/PATIENT_RESULT/ORDER_OBSERVATION/OBSERVATION/OBX") as OBX assertThat(obxSegment.getObservationValue(0).data).isInstanceOf(CWE::class) } + + @Test + fun `extract MSH segment values`() { + val actionLogger = ActionLogger() + val hL7Reader = HL7Reader(actionLogger) + + @Suppress("ktlint:standard:max-line-length") + val rawMessage = "MSH|^~\\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||AL|NE" + val message = hL7Reader.getMessages(rawMessage).first() + + assertThat( + HL7Reader.getSendingApplication(message) + ).isEqualTo("Epic") + assertThat( + HL7Reader.getSendingFacility(message), + ).isEqualTo("Hospital") + assertThat( + HL7Reader.getMessageControlId(message) + ).isEqualTo("4AFA57FE-D41D-4631-9500-286AAAF797E4") + assertThat( + HL7Reader.getAcceptAcknowledgmentType(message) + ).isEqualTo("AL") + } } \ No newline at end of file From b1f131dc709f5a20a75a1a3fc4ed59b1d0cc8135 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 23:50:37 +0000 Subject: [PATCH 34/34] Bump the unit-testing group across 1 directory with 7 updates (#16712) * Bump the unit-testing group across 1 directory with 7 updates Bumps the unit-testing group with 7 updates in the /frontend-react directory: | Package | From | To | | --- | --- | --- | | [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.6.2` | `6.6.3` | | [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul) | `2.1.3` | `2.1.8` | | [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `2.1.3` | `2.1.8` | | [eslint-plugin-jest-dom](https://github.com/testing-library/eslint-plugin-jest-dom) | `5.4.0` | `5.5.0` | | [globals](https://github.com/sindresorhus/globals) | `15.11.0` | `15.13.0` | | [undici](https://github.com/nodejs/undici) | `6.20.1` | `7.1.0` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.3` | `2.1.8` | Updates `@testing-library/jest-dom` from 6.6.2 to 6.6.3 - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v6.6.2...v6.6.3) Updates `@vitest/coverage-istanbul` from 2.1.3 to 2.1.8 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.8/packages/coverage-istanbul) Updates `@vitest/ui` from 2.1.3 to 2.1.8 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.8/packages/ui) Updates `eslint-plugin-jest-dom` from 5.4.0 to 5.5.0 - [Release notes](https://github.com/testing-library/eslint-plugin-jest-dom/releases) - [Commits](https://github.com/testing-library/eslint-plugin-jest-dom/compare/v5.4.0...v5.5.0) Updates `globals` from 15.11.0 to 15.13.0 - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](https://github.com/sindresorhus/globals/compare/v15.11.0...v15.13.0) Updates `undici` from 6.20.1 to 7.1.0 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](https://github.com/nodejs/undici/compare/v6.20.1...v7.1.0) Updates `vitest` from 2.1.3 to 2.1.8 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.8/packages/vitest) --- updated-dependencies: - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: unit-testing - dependency-name: "@vitest/coverage-istanbul" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: unit-testing - dependency-name: "@vitest/ui" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: unit-testing - dependency-name: eslint-plugin-jest-dom dependency-type: direct:development update-type: version-update:semver-minor dependency-group: unit-testing - dependency-name: globals dependency-type: direct:development update-type: version-update:semver-minor dependency-group: unit-testing - dependency-name: undici dependency-type: direct:development update-type: version-update:semver-major dependency-group: unit-testing - dependency-name: vitest dependency-type: direct:development update-type: version-update:semver-patch dependency-group: unit-testing ... Signed-off-by: dependabot[bot] * pin undici as we need the FileReader class it removed --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com> --- frontend-react/package.json | 14 +- frontend-react/yarn.lock | 447 ++++++++++++++---------------------- 2 files changed, 177 insertions(+), 284 deletions(-) diff --git a/frontend-react/package.json b/frontend-react/package.json index 04b5cdcb1c3..56fd2bfc740 100644 --- a/frontend-react/package.json +++ b/frontend-react/package.json @@ -129,7 +129,7 @@ "@storybook/testing-library": "^0.2.2", "@storybook/theming": "^8.4.6", "@testing-library/dom": "^10.4.0", - "@testing-library/jest-dom": "^6.6.2", + "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.0.1", "@testing-library/user-event": "^14.5.2", "@types/dompurify": "^3.2.0", @@ -146,8 +146,8 @@ "@types/react-scroll-sync": "^0.9.0", "@types/sanitize-html": "^2.13.0", "@vitejs/plugin-react": "^4.3.3", - "@vitest/coverage-istanbul": "^2.1.3", - "@vitest/ui": "^2.1.3", + "@vitest/coverage-istanbul": "^2.1.8", + "@vitest/ui": "^2.1.8", "autoprefixer": "^10.4.20", "browserslist": "^4.24.2", "browserslist-useragent-regexp": "^4.1.3", @@ -158,7 +158,7 @@ "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-typescript": "^3.6.3", "eslint-plugin-import": "^2.31.0", - "eslint-plugin-jest-dom": "^5.4.0", + "eslint-plugin-jest-dom": "^5.5.0", "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-playwright": "^2.1.0", "eslint-plugin-react": "^7.37.2", @@ -167,7 +167,7 @@ "eslint-plugin-storybook": "^0.11.1", "eslint-plugin-testing-library": "^6.4.0", "eslint-plugin-vitest": "^0.5.4", - "globals": "^15.11.0", + "globals": "^15.13.0", "husky": "^9.1.6", "jsdom": "^25.0.1", "lint-staged": "^15.2.10", @@ -190,11 +190,11 @@ "tslib": "^2.8.1", "typescript": "^5.7.2", "typescript-eslint": "^8.16.0", - "undici": "^6.20.1", + "undici": "~6.20.1", "vite": "^5.4.10", "vite-plugin-checker": "^0.8.0", "vite-plugin-svgr": "^4.2.0", - "vitest": "^2.1.3" + "vitest": "^2.1.8" }, "resolutions": { "@types/react": "18.3.11", diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock index 0092bf86e7d..05b41cdfdbb 100644 --- a/frontend-react/yarn.lock +++ b/frontend-react/yarn.lock @@ -135,17 +135,17 @@ __metadata: languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helper-string-parser@npm:7.25.7" - checksum: 0835fda5efe02cdcb5144a939b639acc017ba4aa1cc80524b44032ddb714080d3e40e8f0d3240832b7bd86f5513f0b63d4fe77d8fc52d8c8720ae674182c0753 +"@babel/helper-string-parser@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-string-parser@npm:7.25.9" + checksum: 6435ee0849e101681c1849868278b5aee82686ba2c1e27280e5e8aca6233af6810d39f8e4e693d2f2a44a3728a6ccfd66f72d71826a94105b86b731697cdfa99 languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.25.7": - version: 7.25.7 - resolution: "@babel/helper-validator-identifier@npm:7.25.7" - checksum: 062f55208deead4876eb474dc6fd55155c9eada8d0a505434de3b9aa06c34195562e0f3142b22a08793a38d740238efa2fe00ff42956cdcb8ac03f0b6c542247 +"@babel/helper-validator-identifier@npm:^7.25.7, @babel/helper-validator-identifier@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-identifier@npm:7.25.9" + checksum: 5b85918cb1a92a7f3f508ea02699e8d2422fe17ea8e82acd445006c0ef7520fbf48e3dbcdaf7b0a1d571fc3a2715a29719e5226636cb6042e15fe6ed2a590944 languageName: node linkType: hard @@ -178,14 +178,14 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.4, @babel/parser@npm:^7.25.7, @babel/parser@npm:^7.25.8": - version: 7.25.8 - resolution: "@babel/parser@npm:7.25.8" +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.25.7, @babel/parser@npm:^7.25.8": + version: 7.26.3 + resolution: "@babel/parser@npm:7.26.3" dependencies: - "@babel/types": ^7.25.8 + "@babel/types": ^7.26.3 bin: parser: ./bin/babel-parser.js - checksum: c33f6d26542f156927c5dbe131265c791177d271e582338e960f803903086ec5c152bf25deae5f4c061b7bee14dc0b5fd2882ccb5a21c16ee0738d24fcc0406e + checksum: e2bff2e9fa6540ee18fecc058bc74837eda2ddcecbe13454667314a93fc0ba26c1fb862c812d84f6d5f225c3bd8d191c3a42d4296e287a882c4e1f82ff2815ff languageName: node linkType: hard @@ -255,14 +255,13 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.24.0, @babel/types@npm:^7.25.7, @babel/types@npm:^7.25.8": - version: 7.25.8 - resolution: "@babel/types@npm:7.25.8" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.25.4, @babel/types@npm:^7.25.7, @babel/types@npm:^7.25.8, @babel/types@npm:^7.26.3": + version: 7.26.3 + resolution: "@babel/types@npm:7.26.3" dependencies: - "@babel/helper-string-parser": ^7.25.7 - "@babel/helper-validator-identifier": ^7.25.7 - to-fast-properties: ^2.0.0 - checksum: 93d84858e820dbfa0fc4882b3ba6a421544d224ee61455a58eed0af9fc3518b30dc2166b8ba48cdd2e91083c5885ed773c36acf46d177b7b1fad9c35b6eb7639 + "@babel/helper-string-parser": ^7.25.9 + "@babel/helper-validator-identifier": ^7.25.9 + checksum: 195f428080dcaadbcecc9445df7f91063beeaa91b49ccd78f38a5af6b75a6a58391d0c6614edb1ea322e57889a1684a0aab8e667951f820196901dd341f931e9 languageName: node linkType: hard @@ -2529,9 +2528,9 @@ __metadata: languageName: node linkType: hard -"@testing-library/jest-dom@npm:^6.6.2": - version: 6.6.2 - resolution: "@testing-library/jest-dom@npm:6.6.2" +"@testing-library/jest-dom@npm:^6.6.3": + version: 6.6.3 + resolution: "@testing-library/jest-dom@npm:6.6.3" dependencies: "@adobe/css-tools": ^4.4.0 aria-query: ^5.0.0 @@ -2540,7 +2539,7 @@ __metadata: dom-accessibility-api: ^0.6.3 lodash: ^4.17.21 redent: ^3.0.0 - checksum: 23fc4de90035b7acaa13839adb8e31e5f5ad0306623f59be4907fe48050a5d148cd927ff6b6c13c49e392cc06bdd9f16e7d4766263dd7b42d5a342897e32bb6f + checksum: c1dc4260b05309a0084416639006cd105849acc5b102bef682a3b19bd6fce07ff6762085fc7f2599546c995a2fc66fdb1d70e50e22a634a0098524056cc9e511 languageName: node linkType: hard @@ -3145,16 +3144,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.12.2": - version: 8.12.2 - resolution: "@typescript-eslint/scope-manager@npm:8.12.2" - dependencies: - "@typescript-eslint/types": 8.12.2 - "@typescript-eslint/visitor-keys": 8.12.2 - checksum: dd960238f1cf0f24e6c16525f0cbdb6cf65bfc3cfe650f376ecda2583c378c2e3a7eb4c2d57e04e009626d009018226b722a670ca283086c2a6cc1931c2268d8 - languageName: node - linkType: hard - "@typescript-eslint/scope-manager@npm:8.16.0": version: 8.16.0 resolution: "@typescript-eslint/scope-manager@npm:8.16.0" @@ -3196,13 +3185,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:8.12.2": - version: 8.12.2 - resolution: "@typescript-eslint/types@npm:8.12.2" - checksum: b0f7effdac842428b15d76710295a8b4f1fe1ff14e40fbb10c8f571c11fd517d75d76decbecf90412bc5eabce0cd4ac0acf53d6b0d8ba2bdde86ab3b627bdac2 - languageName: node - linkType: hard - "@typescript-eslint/types@npm:8.16.0": version: 8.16.0 resolution: "@typescript-eslint/types@npm:8.16.0" @@ -3247,25 +3229,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.12.2": - version: 8.12.2 - resolution: "@typescript-eslint/typescript-estree@npm:8.12.2" - dependencies: - "@typescript-eslint/types": 8.12.2 - "@typescript-eslint/visitor-keys": 8.12.2 - debug: ^4.3.4 - fast-glob: ^3.3.2 - is-glob: ^4.0.3 - minimatch: ^9.0.4 - semver: ^7.6.0 - ts-api-utils: ^1.3.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 923d297ba891cbaf4f00618db2313123238657b179f56a5d42d02a4e6433c513f73a9dd9aa62cd2c5b9fb2c5912a59319eb0a14ef2403792e15757142722309a - languageName: node - linkType: hard - "@typescript-eslint/typescript-estree@npm:8.16.0": version: 8.16.0 resolution: "@typescript-eslint/typescript-estree@npm:8.16.0" @@ -3285,7 +3248,7 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.16.0": +"@typescript-eslint/utils@npm:8.16.0, @typescript-eslint/utils@npm:^8.8.1": version: 8.16.0 resolution: "@typescript-eslint/utils@npm:8.16.0" dependencies: @@ -3334,20 +3297,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:^8.8.1": - version: 8.12.2 - resolution: "@typescript-eslint/utils@npm:8.12.2" - dependencies: - "@eslint-community/eslint-utils": ^4.4.0 - "@typescript-eslint/scope-manager": 8.12.2 - "@typescript-eslint/types": 8.12.2 - "@typescript-eslint/typescript-estree": 8.12.2 - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - checksum: 7ae4ef40d0961642fc31644c47e05f751369b47f3d9f5ea4e6c6eaa09d534efc6a2ea89f12368eed7dc8b32a7378e533f84379f70f2acd85418815f63b249b18 - languageName: node - linkType: hard - "@typescript-eslint/visitor-keys@npm:5.62.0": version: 5.62.0 resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" @@ -3368,16 +3317,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.12.2": - version: 8.12.2 - resolution: "@typescript-eslint/visitor-keys@npm:8.12.2" - dependencies: - "@typescript-eslint/types": 8.12.2 - eslint-visitor-keys: ^3.4.3 - checksum: 97b919a0f0982e16a46ed568ae195906ec4aed7db358308d2311e9829ceb7f521e4a2017b3bdedad264ee61fdf08d3d12ada7d5622f13b20ac324118fe5b8447 - languageName: node - linkType: hard - "@typescript-eslint/visitor-keys@npm:8.16.0": version: 8.16.0 resolution: "@typescript-eslint/visitor-keys@npm:8.16.0" @@ -3422,23 +3361,23 @@ __metadata: languageName: node linkType: hard -"@vitest/coverage-istanbul@npm:^2.1.3": - version: 2.1.3 - resolution: "@vitest/coverage-istanbul@npm:2.1.3" +"@vitest/coverage-istanbul@npm:^2.1.8": + version: 2.1.8 + resolution: "@vitest/coverage-istanbul@npm:2.1.8" dependencies: "@istanbuljs/schema": ^0.1.3 - debug: ^4.3.6 + debug: ^4.3.7 istanbul-lib-coverage: ^3.2.2 istanbul-lib-instrument: ^6.0.3 istanbul-lib-report: ^3.0.1 istanbul-lib-source-maps: ^5.0.6 istanbul-reports: ^3.1.7 - magicast: ^0.3.4 + magicast: ^0.3.5 test-exclude: ^7.0.1 tinyrainbow: ^1.2.0 peerDependencies: - vitest: 2.1.3 - checksum: 797acb7700845137cb14d4e74c4c7f0675ece783d680c4a73966866529218c1f3ec217d82a5b88b685cf047eb650439b6d216d2c677dcfce7acefb3431d85b2c + vitest: 2.1.8 + checksum: 037c36da814e27d477448a2ee30999412633f2c8e65a74925223596f20707a1bd86cb99a37c2b4e142f106dab42e5b5faab6bd01aa19dfcd3b71419753c4f60a languageName: node linkType: hard @@ -3454,35 +3393,34 @@ __metadata: languageName: node linkType: hard -"@vitest/expect@npm:2.1.3": - version: 2.1.3 - resolution: "@vitest/expect@npm:2.1.3" +"@vitest/expect@npm:2.1.8": + version: 2.1.8 + resolution: "@vitest/expect@npm:2.1.8" dependencies: - "@vitest/spy": 2.1.3 - "@vitest/utils": 2.1.3 - chai: ^5.1.1 + "@vitest/spy": 2.1.8 + "@vitest/utils": 2.1.8 + chai: ^5.1.2 tinyrainbow: ^1.2.0 - checksum: c0651cb19d50733169bbc0477ea84d063272200de73bcaf0b13436000c1c5b334589d9dbe2d4245619b3c283e9b477ae24f49117a40eb6eb83adc79f18fe2f63 + checksum: 3e81e61dfb5222797ab5e6a70bee2d032fb382c9e7ddc4abe03114f0efbc4cc3b56fc2648e89ae26f5d9261554ea7c696b3a329c8ccea2c702cb87476e4a6842 languageName: node linkType: hard -"@vitest/mocker@npm:2.1.3": - version: 2.1.3 - resolution: "@vitest/mocker@npm:2.1.3" +"@vitest/mocker@npm:2.1.8": + version: 2.1.8 + resolution: "@vitest/mocker@npm:2.1.8" dependencies: - "@vitest/spy": 2.1.3 + "@vitest/spy": 2.1.8 estree-walker: ^3.0.3 - magic-string: ^0.30.11 + magic-string: ^0.30.12 peerDependencies: - "@vitest/spy": 2.1.3 - msw: ^2.3.5 + msw: ^2.4.9 vite: ^5.0.0 peerDependenciesMeta: msw: optional: true vite: optional: true - checksum: acc8ef2b5ef391e6012198b109bf772d0a1d251c75aecb349f76e8312825513f66fb64fc9fb538398cd199553030c614b07f1305948806cc1c4785d082fd587a + checksum: 0022d76ff78043c0788380b4e530a03690f8a89a14d1d07c4c069c8fd828a4741d2777ebc486ca0f89b2fb8cf880a7880d6891dd7cfb8cf4339f040131a8bda2 languageName: node linkType: hard @@ -3495,16 +3433,7 @@ __metadata: languageName: node linkType: hard -"@vitest/pretty-format@npm:2.1.3, @vitest/pretty-format@npm:^2.1.3": - version: 2.1.3 - resolution: "@vitest/pretty-format@npm:2.1.3" - dependencies: - tinyrainbow: ^1.2.0 - checksum: ff4aa144a49c0ee579bfae940745b70a0ca3c504f52c23f1e8f5c0642824785232f844040d31b48eea71b5a80519809810359a75d29186ab40341174c50a4a0d - languageName: node - linkType: hard - -"@vitest/pretty-format@npm:2.1.8": +"@vitest/pretty-format@npm:2.1.8, @vitest/pretty-format@npm:^2.1.8": version: 2.1.8 resolution: "@vitest/pretty-format@npm:2.1.8" dependencies: @@ -3513,24 +3442,24 @@ __metadata: languageName: node linkType: hard -"@vitest/runner@npm:2.1.3": - version: 2.1.3 - resolution: "@vitest/runner@npm:2.1.3" +"@vitest/runner@npm:2.1.8": + version: 2.1.8 + resolution: "@vitest/runner@npm:2.1.8" dependencies: - "@vitest/utils": 2.1.3 + "@vitest/utils": 2.1.8 pathe: ^1.1.2 - checksum: 96cc7abdad85fc20834ee0a6ba9073e2d68d06c9d1407251bc614d1627e30f5e5a1ceb65d10024b163271bb4093d1181729f6f1d00db2c258c5a0794a00a9518 + checksum: 50625597a01fbb55e7edf303b2ce6df7a46347bf05017ce7c4b4ce491ac6d85380aa5dd80127307f2621dc4b3b4081ef8ba1f3f825335f0af812a8e4e08d4aa2 languageName: node linkType: hard -"@vitest/snapshot@npm:2.1.3": - version: 2.1.3 - resolution: "@vitest/snapshot@npm:2.1.3" +"@vitest/snapshot@npm:2.1.8": + version: 2.1.8 + resolution: "@vitest/snapshot@npm:2.1.8" dependencies: - "@vitest/pretty-format": 2.1.3 - magic-string: ^0.30.11 + "@vitest/pretty-format": 2.1.8 + magic-string: ^0.30.12 pathe: ^1.1.2 - checksum: 94087e04f0d9bb5e11033ca11c6545b9b27b1f4b21d7cd56bd91ae2d6e06be5eed7f2e66d1544a0a866801180d4c5057c3ff5c0ce8c97abfeb979a76a150eb10 + checksum: ff6a6033fe891c9b19fc33ef2518c29e8afca17c02c463b6b1f40e7e7d51867d5c0bb9b49f524b7c0889337a2c0cae7dcc864851a59a28d3a6e0488cecc45040 languageName: node linkType: hard @@ -3543,29 +3472,29 @@ __metadata: languageName: node linkType: hard -"@vitest/spy@npm:2.1.3": - version: 2.1.3 - resolution: "@vitest/spy@npm:2.1.3" +"@vitest/spy@npm:2.1.8": + version: 2.1.8 + resolution: "@vitest/spy@npm:2.1.8" dependencies: - tinyspy: ^3.0.0 - checksum: b04aad8e458087202b7a16d332365a142be055db8c4653d916ebb8d47eacf23c3edef23b3918490eed9f8cb69da240d72844c3570f38521fbe7e0647e01d0271 + tinyspy: ^3.0.2 + checksum: 0e497e7a7f3170f761c0dbdf983f13d09616b2bae7f640c216644f8d3d1f1a6b6e59aa1e6b75ca2a773355811f0ad6b9d7b6b14596d9b99378040917cada5d49 languageName: node linkType: hard -"@vitest/ui@npm:^2.1.3": - version: 2.1.3 - resolution: "@vitest/ui@npm:2.1.3" +"@vitest/ui@npm:^2.1.8": + version: 2.1.8 + resolution: "@vitest/ui@npm:2.1.8" dependencies: - "@vitest/utils": 2.1.3 + "@vitest/utils": 2.1.8 fflate: ^0.8.2 flatted: ^3.3.1 pathe: ^1.1.2 - sirv: ^2.0.4 - tinyglobby: ^0.2.6 + sirv: ^3.0.0 + tinyglobby: ^0.2.10 tinyrainbow: ^1.2.0 peerDependencies: - vitest: 2.1.3 - checksum: 992639327210b70fce9f6ab6a0ea733afabf6da7ff0ebf12d3c2eaa81eccce456c9786801fa597779bf57197e4d52dfc01f5ac9f514fae9753bd41c3b3383522 + vitest: 2.1.8 + checksum: 0bd1f4d1d134dcdea4fc0dbd2d36fbcd40f4c76da2a3fae55d97f72bd0edf838e0898427dcbe7d318385c8ff33609a93c8e83b341d6bdb604d96d763afd97738 languageName: node linkType: hard @@ -3581,18 +3510,7 @@ __metadata: languageName: node linkType: hard -"@vitest/utils@npm:2.1.3": - version: 2.1.3 - resolution: "@vitest/utils@npm:2.1.3" - dependencies: - "@vitest/pretty-format": 2.1.3 - loupe: ^3.1.1 - tinyrainbow: ^1.2.0 - checksum: 0c1e262600bc329fab43bb19d575326a6d38175c2bdc345bc5326b81cf34303f22a1b67a0197dc6a935c3019e2f21c4da52a49c609967bea9cb4790a44a347ce - languageName: node - linkType: hard - -"@vitest/utils@npm:^2.1.1": +"@vitest/utils@npm:2.1.8, @vitest/utils@npm:^2.1.1": version: 2.1.8 resolution: "@vitest/utils@npm:2.1.8" dependencies: @@ -4260,16 +4178,16 @@ __metadata: languageName: node linkType: hard -"chai@npm:^5.1.1": - version: 5.1.1 - resolution: "chai@npm:5.1.1" +"chai@npm:^5.1.1, chai@npm:^5.1.2": + version: 5.1.2 + resolution: "chai@npm:5.1.2" dependencies: assertion-error: ^2.0.1 check-error: ^2.1.1 deep-eql: ^5.0.1 loupe: ^3.1.0 pathval: ^2.0.0 - checksum: 1e0a5e1b5febdfa8ceb97b9aff608286861ecb86533863119b2f39f07c08fb59f3c1791ab554947f009b9d71d509b9e4e734fb12133cb81f231c2c2ee7c1e738 + checksum: f2341967ab5632612548d372c27b46219adad3af35021d8cba2ae3c262f588de2c60cb3f004e6ad40e363a9cad6d20d0de51f00e7e9ac31cce17fb05d4efa316 languageName: node linkType: hard @@ -4809,7 +4727,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.6, debug@npm:~4.3.6": +"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.7, debug@npm:~4.3.6": version: 4.3.7 resolution: "debug@npm:4.3.7" dependencies: @@ -5327,6 +5245,13 @@ __metadata: languageName: node linkType: hard +"es-module-lexer@npm:^1.5.4": + version: 1.5.4 + resolution: "es-module-lexer@npm:1.5.4" + checksum: a0cf04fb92d052647ac7d818d1913b98d3d3d0f5b9d88f0eafb993436e4c3e2c958599db68839d57f2dfa281fdf0f60e18d448eb78fc292c33c0f25635b6854f + languageName: node + linkType: hard + "es-object-atoms@npm:^1.0.0": version: 1.0.0 resolution: "es-object-atoms@npm:1.0.0" @@ -5740,9 +5665,9 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-jest-dom@npm:^5.4.0": - version: 5.4.0 - resolution: "eslint-plugin-jest-dom@npm:5.4.0" +"eslint-plugin-jest-dom@npm:^5.5.0": + version: 5.5.0 + resolution: "eslint-plugin-jest-dom@npm:5.5.0" dependencies: "@babel/runtime": ^7.16.3 requireindex: ^1.2.0 @@ -5752,7 +5677,7 @@ __metadata: peerDependenciesMeta: "@testing-library/dom": optional: true - checksum: 0e1d27ca040a7d7e698b7f1d4a480be4821ccad03f322360fb75723e558b4d00d86fdbf4aaf5f07f4bc259fd35a91fd14ea0f8ca788cc3e28db399c8ff653a6f + checksum: 4423ef06fae815d8278c0310b83dd7c97e44282a858fe259dca95affdb1ef53661c22eaa566f0202d391bf6fd07f57346aa26f3c2d36f34e7581394cf2e70221 languageName: node linkType: hard @@ -6145,6 +6070,13 @@ __metadata: languageName: node linkType: hard +"expect-type@npm:^1.1.0": + version: 1.1.0 + resolution: "expect-type@npm:1.1.0" + checksum: 65d25ec10bca32bcf650dcfe734532acc4b7a73677c656f299a7cbed273b5c4d6a3dab11af76f452645d54a95c4ef39fc73772f2c8eb6684ba35672958d6f3b3 + languageName: node + linkType: hard + "exponential-backoff@npm:^3.1.1": version: 3.1.1 resolution: "exponential-backoff@npm:3.1.1" @@ -6225,7 +6157,7 @@ __metadata: languageName: node linkType: hard -"fdir@npm:^6.4.0": +"fdir@npm:^6.4.2": version: 6.4.2 resolution: "fdir@npm:6.4.2" peerDependencies: @@ -6543,13 +6475,6 @@ __metadata: languageName: node linkType: hard -"get-func-name@npm:^2.0.1": - version: 2.0.2 - resolution: "get-func-name@npm:2.0.2" - checksum: 3f62f4c23647de9d46e6f76d2b3eafe58933a9b3830c60669e4180d6c601ce1b4aa310ba8366143f55e52b139f992087a9f0647274e8745621fa2af7e0acf13b - languageName: node - linkType: hard - "get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.3, get-intrinsic@npm:^1.2.4": version: 1.2.4 resolution: "get-intrinsic@npm:1.2.4" @@ -6666,10 +6591,10 @@ __metadata: languageName: node linkType: hard -"globals@npm:^15.11.0": - version: 15.11.0 - resolution: "globals@npm:15.11.0" - checksum: ef32d5ef987f3d4b47fc2e389a0b235f6a46f605160c4e405722fd7b576106ca407cb867e66fd1e0fc43b631800e2e2e71847f37691026d813f96f40339da702 +"globals@npm:^15.13.0": + version: 15.13.0 + resolution: "globals@npm:15.13.0" + checksum: 3f98514ce25a21150b246fbd63aeaeb271a93b3340cf7f4f6e9934d3b37dbb4b0fddef9c470183097dcfd2e8757bb86bbae701588f0e376667d8d9d6f665db3b languageName: node linkType: hard @@ -8064,16 +7989,7 @@ __metadata: languageName: node linkType: hard -"loupe@npm:^3.1.0, loupe@npm:^3.1.1": - version: 3.1.1 - resolution: "loupe@npm:3.1.1" - dependencies: - get-func-name: ^2.0.1 - checksum: c7efa6bc6d71f25ca03eb13c9a069e35ed86799e308ca27a7a3eff8cdf9500e7c22d1f2411468d154a8e960e91e5e685e0c6c83e96db748f177c1adf30811153 - languageName: node - linkType: hard - -"loupe@npm:^3.1.2": +"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2": version: 3.1.2 resolution: "loupe@npm:3.1.2" checksum: 4a75bbe8877a1ced3603e08b1095cd6f4c987c50fe63719fdc3009029560f91e07a915e7f6eff1322bb62bfb2a2beeef06b13ccb3c12f81bda9f3674434dcab9 @@ -8130,23 +8046,23 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:^0.30.0, magic-string@npm:^0.30.11": - version: 0.30.12 - resolution: "magic-string@npm:0.30.12" +"magic-string@npm:^0.30.0, magic-string@npm:^0.30.12": + version: 0.30.14 + resolution: "magic-string@npm:0.30.14" dependencies: "@jridgewell/sourcemap-codec": ^1.5.0 - checksum: 3f0d23b74371765f0e6cad4284eebba0ac029c7a55e39292de5aa92281afb827138cb2323d24d2924f6b31f138c3783596c5ccaa98653fe9cf122e1f81325b59 + checksum: 67b3b2d817a7c4e94cb63e2dcaffbeee3b76ff0798eeaee8159a6ff4faee30db824375b2cadbf43807b56c6802fe6373b40d02567d489593017012d74ec0b719 languageName: node linkType: hard -"magicast@npm:^0.3.4": - version: 0.3.4 - resolution: "magicast@npm:0.3.4" +"magicast@npm:^0.3.5": + version: 0.3.5 + resolution: "magicast@npm:0.3.5" dependencies: - "@babel/parser": ^7.24.4 - "@babel/types": ^7.24.0 + "@babel/parser": ^7.25.4 + "@babel/types": ^7.25.4 source-map-js: ^1.2.0 - checksum: 9cc84b8424d2c9b03533c16abec5b29f3897619a07714232c602382660867140858f54f482da2b9968ba4b89e198e66578f483415256c4eb2656ae7265bbb2de + checksum: 668f07ade907a44bccfc9a9321588473f6d5fa25329aa26b9ad9a3bf87cc2e6f9c482cbdd3e33c0b9ab9b79c065630c599cc055a12f881c8c924ee0d7282cdce languageName: node linkType: hard @@ -9760,18 +9676,7 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.3.11, postcss@npm:^8.4.43": - version: 8.4.47 - resolution: "postcss@npm:8.4.47" - dependencies: - nanoid: ^3.3.7 - picocolors: ^1.1.0 - source-map-js: ^1.2.1 - checksum: f78440a9d8f97431dd2ab1ab8e1de64f12f3eff38a3d8d4a33919b96c381046a314658d2de213a5fa5eb296b656de76a3ec269fdea27f16d5ab465b916a0f52c - languageName: node - linkType: hard - -"postcss@npm:^8.4.49": +"postcss@npm:^8.3.11, postcss@npm:^8.4.43, postcss@npm:^8.4.49": version: 8.4.49 resolution: "postcss@npm:8.4.49" dependencies: @@ -10001,7 +9906,7 @@ __metadata: "@tanstack/react-query": ^5.62.2 "@tanstack/react-query-devtools": ^5.62.2 "@testing-library/dom": ^10.4.0 - "@testing-library/jest-dom": ^6.6.2 + "@testing-library/jest-dom": ^6.6.3 "@testing-library/react": ^16.0.1 "@testing-library/user-event": ^14.5.2 "@trussworks/react-uswds": ^9.1.0 @@ -10020,8 +9925,8 @@ __metadata: "@types/sanitize-html": ^2.13.0 "@uswds/uswds": 3.7.1 "@vitejs/plugin-react": ^4.3.3 - "@vitest/coverage-istanbul": ^2.1.3 - "@vitest/ui": ^2.1.3 + "@vitest/coverage-istanbul": ^2.1.8 + "@vitest/ui": ^2.1.8 autoprefixer: ^10.4.20 axios: ^1.7.8 browserslist: ^4.24.2 @@ -10037,7 +9942,7 @@ __metadata: eslint-config-prettier: ^9.1.0 eslint-import-resolver-typescript: ^3.6.3 eslint-plugin-import: ^2.31.0 - eslint-plugin-jest-dom: ^5.4.0 + eslint-plugin-jest-dom: ^5.5.0 eslint-plugin-jsx-a11y: ^6.10.2 eslint-plugin-playwright: ^2.1.0 eslint-plugin-react: ^7.37.2 @@ -10048,7 +9953,7 @@ __metadata: eslint-plugin-vitest: ^0.5.4 export-to-csv-fix-source-map: ^0.2.1 focus-trap-react: ^10.3.0 - globals: ^15.11.0 + globals: ^15.13.0 history: ^5.3.0 html-to-text: ^9.0.5 husky: ^9.1.6 @@ -10091,13 +9996,13 @@ __metadata: tsx: ^4.19.2 typescript: ^5.7.2 typescript-eslint: ^8.16.0 - undici: ^6.20.1 + undici: ~6.20.1 use-deep-compare-effect: ^1.8.1 uuid: ^11.0.3 vite: ^5.4.10 vite-plugin-checker: ^0.8.0 vite-plugin-svgr: ^4.2.0 - vitest: ^2.1.3 + vitest: ^2.1.8 web-vitals: ^3.4.0 languageName: unknown linkType: soft @@ -10969,14 +10874,14 @@ __metadata: languageName: node linkType: hard -"sirv@npm:^2.0.4": - version: 2.0.4 - resolution: "sirv@npm:2.0.4" +"sirv@npm:^3.0.0": + version: 3.0.0 + resolution: "sirv@npm:3.0.0" dependencies: "@polka/url": ^1.0.0-next.24 mrmime: ^2.0.0 totalist: ^3.0.0 - checksum: 6853384a51d6ee9377dd657e2b257e0e98b29abbfbfa6333e105197f0f100c8c56a4520b47028b04ab1833cf2312526206f38fcd4f891c6df453f40da1a15a57 + checksum: 04b8036cab13971737dbb12b184a88f3d9aba955eed5600d27250f3dfd0a0ad1ff7a343537511b54d4fda36f629e2ffe25813f900d84cf4e3c08a7292f458af1 languageName: node linkType: hard @@ -11144,10 +11049,10 @@ __metadata: languageName: node linkType: hard -"std-env@npm:^3.7.0": - version: 3.7.0 - resolution: "std-env@npm:3.7.0" - checksum: 4f489d13ff2ab838c9acd4ed6b786b51aa52ecacdfeaefe9275fcb220ff2ac80c6e95674723508fd29850a694569563a8caaaea738eb82ca16429b3a0b50e510 +"std-env@npm:^3.8.0": + version: 3.8.0 + resolution: "std-env@npm:3.8.0" + checksum: ad4554485c2d09138a1d0f03944245e169510e6f5200b7d30fcdd4536e27a2a9a2fd934caff7ef58ebbe21993fa0e2b9e5b1979f431743c925305863b7ff36d5 languageName: node linkType: hard @@ -11562,27 +11467,27 @@ __metadata: languageName: node linkType: hard -"tinyexec@npm:^0.3.0": +"tinyexec@npm:^0.3.1": version: 0.3.1 resolution: "tinyexec@npm:0.3.1" checksum: 691b531d464bdc09eeba934e43d8ac2a74c9d22a4bec9cd7f4991375c64e22712f7e5a95ba243a9369a478afd34d41171359012a2248ea49615cd2816ab12959 languageName: node linkType: hard -"tinyglobby@npm:^0.2.6": - version: 0.2.9 - resolution: "tinyglobby@npm:0.2.9" +"tinyglobby@npm:^0.2.10": + version: 0.2.10 + resolution: "tinyglobby@npm:0.2.10" dependencies: - fdir: ^6.4.0 + fdir: ^6.4.2 picomatch: ^4.0.2 - checksum: 6fa652880c963324dbb66ee39ae9e8d809bec8d9ac4f100ee420d31df12b3d1c4bb438684ac8ade040a6916131511495db2cf3259bb067cd0af27ba1552d5efc + checksum: 7e2ffe262ebc149036bdef37c56b32d02d52cf09efa7d43dbdab2ea3c12844a4da881058835ce4c74d1891190e5ad5ec5133560a11ec8314849b68ad0d99d3f4 languageName: node linkType: hard -"tinypool@npm:^1.0.0": - version: 1.0.0 - resolution: "tinypool@npm:1.0.0" - checksum: 59dab87b0811da2dc1ecbac9a99cde93d45450744d4a9fca628d805c452bbb5e5f214fd191127f665d062cae9cc159225dea5508d766e40a0c6c33f573e5c3b6 +"tinypool@npm:^1.0.1": + version: 1.0.2 + resolution: "tinypool@npm:1.0.2" + checksum: 752f23114d8fc95a9497fc812231d6d0a63728376aa11e6e8499c10423a91112e760e388887ea7854f1b16977c321f07c0eab061ec2f60f6761e58b184aac880 languageName: node linkType: hard @@ -11593,10 +11498,10 @@ __metadata: languageName: node linkType: hard -"tinyspy@npm:^3.0.0": - version: 3.0.0 - resolution: "tinyspy@npm:3.0.0" - checksum: b5b686acff2b88de60ff8ecf89a2042320406aaeee2fba1828a7ea8a925fad3ed9f5e4d7a068154a9134473c472aa03da8ca92ee994bc57a741c5ede5fa7de4d +"tinyspy@npm:^3.0.0, tinyspy@npm:^3.0.2": + version: 3.0.2 + resolution: "tinyspy@npm:3.0.2" + checksum: 5db671b2ff5cd309de650c8c4761ca945459d7204afb1776db9a04fb4efa28a75f08517a8620c01ee32a577748802231ad92f7d5b194dc003ee7f987a2a06337 languageName: node linkType: hard @@ -11627,13 +11532,6 @@ __metadata: languageName: node linkType: hard -"to-fast-properties@npm:^2.0.0": - version: 2.0.0 - resolution: "to-fast-properties@npm:2.0.0" - checksum: be2de62fe58ead94e3e592680052683b1ec986c72d589e7b21e5697f8744cdbf48c266fa72f6c15932894c10187b5f54573a3bcf7da0bfd964d5caf23d436168 - languageName: node - linkType: hard - "to-regex-range@npm:^5.0.1": version: 5.0.1 resolution: "to-regex-range@npm:5.0.1" @@ -11799,14 +11697,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.4.0, tslib@npm:^2.5.0": - version: 2.8.0 - resolution: "tslib@npm:2.8.0" - checksum: de852ecd81adfdb4870927e250763345f07dc13fe7f395ce261424966bb122a0992ad844c3ec875c9e63e72afe2220a150712984e44dfd1a8a7e538a064e3d46 - languageName: node - linkType: hard - -"tslib@npm:^2.8.1": +"tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.8.1": version: 2.8.1 resolution: "tslib@npm:2.8.1" checksum: e4aba30e632b8c8902b47587fd13345e2827fa639e7c3121074d5ee0880723282411a8838f830b55100cbe4517672f84a2472667d355b81e8af165a55dc6203a @@ -12021,7 +11912,7 @@ __metadata: languageName: node linkType: hard -"undici@npm:^6.20.1": +"undici@npm:~6.20.1": version: 6.20.1 resolution: "undici@npm:6.20.1" checksum: 3bb1405b406fa0e913ff4ec6fd310c9b4d950b7064ba5949b2f616c1f13070d26f5558aefb4b56b2eafb555925443ce44cb801e143d2417ecf12ddf8d5c05cf6 @@ -12368,17 +12259,18 @@ __metadata: languageName: node linkType: hard -"vite-node@npm:2.1.3": - version: 2.1.3 - resolution: "vite-node@npm:2.1.3" +"vite-node@npm:2.1.8": + version: 2.1.8 + resolution: "vite-node@npm:2.1.8" dependencies: cac: ^6.7.14 - debug: ^4.3.6 + debug: ^4.3.7 + es-module-lexer: ^1.5.4 pathe: ^1.1.2 vite: ^5.0.0 bin: vite-node: vite-node.mjs - checksum: b048a845fb3f70b9b45174a6989b3c0179a375c486118ae72c4a30af0d052a0da5e5fba1df034ec4c179c5d7bc6ebc9a604bdbe316c6cd2fc6caeeda8af56274 + checksum: 17914342d05f9ace35c1574555c59dd4116148b71a22bf330f019681d7238a2244b6c2b4a8930d03d5f78e24666d81806c68b84a8db42d7e84165cb10d1c756a languageName: node linkType: hard @@ -12490,34 +12382,35 @@ __metadata: languageName: node linkType: hard -"vitest@npm:^2.1.3": - version: 2.1.3 - resolution: "vitest@npm:2.1.3" - dependencies: - "@vitest/expect": 2.1.3 - "@vitest/mocker": 2.1.3 - "@vitest/pretty-format": ^2.1.3 - "@vitest/runner": 2.1.3 - "@vitest/snapshot": 2.1.3 - "@vitest/spy": 2.1.3 - "@vitest/utils": 2.1.3 - chai: ^5.1.1 - debug: ^4.3.6 - magic-string: ^0.30.11 +"vitest@npm:^2.1.8": + version: 2.1.8 + resolution: "vitest@npm:2.1.8" + dependencies: + "@vitest/expect": 2.1.8 + "@vitest/mocker": 2.1.8 + "@vitest/pretty-format": ^2.1.8 + "@vitest/runner": 2.1.8 + "@vitest/snapshot": 2.1.8 + "@vitest/spy": 2.1.8 + "@vitest/utils": 2.1.8 + chai: ^5.1.2 + debug: ^4.3.7 + expect-type: ^1.1.0 + magic-string: ^0.30.12 pathe: ^1.1.2 - std-env: ^3.7.0 + std-env: ^3.8.0 tinybench: ^2.9.0 - tinyexec: ^0.3.0 - tinypool: ^1.0.0 + tinyexec: ^0.3.1 + tinypool: ^1.0.1 tinyrainbow: ^1.2.0 vite: ^5.0.0 - vite-node: 2.1.3 + vite-node: 2.1.8 why-is-node-running: ^2.3.0 peerDependencies: "@edge-runtime/vm": "*" "@types/node": ^18.0.0 || >=20.0.0 - "@vitest/browser": 2.1.3 - "@vitest/ui": 2.1.3 + "@vitest/browser": 2.1.8 + "@vitest/ui": 2.1.8 happy-dom: "*" jsdom: "*" peerDependenciesMeta: @@ -12535,7 +12428,7 @@ __metadata: optional: true bin: vitest: vitest.mjs - checksum: c2e7159cfeb837d16dfd03acdcaff85c3bd234f1fd6a258dbd5202455b8e04b1c9f932567396b00cfe8d6fdba61857fa5f6663874fe56bf4cd084f516da1a86d + checksum: 2d2f69364556829123c3ff704b36dfd7a2f11cc05fad8a7caf9f0b8c74205caee92f892d4bd5b92a9c2a48267e9b0865a171b2f40fcd593d681f980c3486b299 languageName: node linkType: hard