Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add equipment uid type to bundle #6840

Merged
merged 4 commits into from
Oct 30, 2023
Merged

Conversation

fzhao99
Copy link
Contributor

@fzhao99 fzhao99 commented Oct 24, 2023

BACKEND PULL REQUEST

Related Issue

Changes Proposed

  • Adds the equipment UID type as a codeable concept type into the device identifier array (under Device.identifier.type.coding.code.

Testing

This branch that has an extra log statement is deployed on dev2

Upload a bulk upload and observe that the identifier array has the equipment UID type included in the array.

Example CSV (DII is equipment UID type for the specified device)

patient_id,patient_last_name,patient_first_name,patient_middle_name,patient_street,patient_street2,patient_city,patient_state,accession_number,patient_zip_code,patient_county,patient_phone_number,patient_dob,patient_gender,patient_race,patient_ethnicity,patient_preferred_language,patient_email,equipment_model_name,test_performed_code,test_result,order_test_date,specimen_collection_date,testing_lab_specimen_received_date,test_result_date,date_result_released,specimen_type,ordering_provider_id,ordering_provider_last_name,ordering_provider_first_name,ordering_provider_middle_name,ordering_provider_street,ordering_provider_street2,ordering_provider_city,ordering_provider_state,ordering_provider_zip_code,ordering_provider_phone_number,testing_lab_clia,testing_lab_name,testing_lab_street,testing_lab_street2,testing_lab_city,testing_lab_state,testing_lab_zip_code,testing_lab_phone_number,pregnant,employed_in_healthcare,symptomatic_for_disease,illness_onset_date,resident_congregate_setting,residence_type,hospitalized,icu,ordering_facility_name,ordering_facility_street,ordering_facility_street2,ordering_facility_city,ordering_facility_state,ordering_facility_zip_code,ordering_facility_phone_number,comment,test_result_status
1234,Doe,Jane,,123 Main St,,Birmingham,AL,ID12345-6759,35226,Jefferson,205-999-2800,1/20/1962,F,White,Not Hispanic or Latino,,,LDT: SARS-CoV-2 RNA DETECTR Assay,94533-7,Detected,12/20/2021 14:00,12/20/2021 14:00,12/20/2021 14:00,12/20/2021 14:00,12/20/2021 14:00,258529004,1013012657,Smith MD,John,,400 Main Street,,Birmingham,AL,35228,205-888-2000,01D1058442,My Urgent Care,400 Main Street,,Birmingham,AL,35228,205-888-2000,N,N,N,,N,,N,N,My Urgent Care,400 Main Street,Suite 100,Birmingham,AL,35228,205-888-2000,Test Comment,
1234,Doe,Jane,,123 Main St,,Birmingham,AL,ID12345-6789,35226,Jefferson,205-999-2800,1/20/1962,F,White,Not Hispanic or Latino,,,LDT: SARS-CoV-2 RNA DETECTR Assay,94533-7,Detected,12/20/2021 14:00,12/20/2021 14:00,12/20/2021 14:00,12/20/2021 14:00,12/20/2021 14:00,258529004,1013012657,Smith MD,John,,400 Main Street,,Birmingham,AL,35228,205-888-2000,01D1058442,My Urgent Care,400 Main Street,,Birmingham,AL,35228,205-888-2000,N,N,N,,N,,N,N,My Urgent Care,400 Main Street,Suite 100,Birmingham,AL,35228,205-888-2000,Test Comment,

Azure output (observe DII in the device json identifier)

Expand me for a long FHIR bundle
CONVERTED BUNDLE: {
  "resourceType": "Bundle",
  "identifier": {
    "value": "ID12345-6759"
  },
  "type": "message",
  "timestamp": "2023-10-27T19:31:09.914Z",
  "entry": [ {
    "fullUrl": "MessageHeader/d892bd16-a2b4-407e-94bd-cadc7a0b7077",
    "resource": {
      "resourceType": "MessageHeader",
      "id": "d892bd16-a2b4-407e-94bd-cadc7a0b7077",
      "meta": {
        "tag": [ {
          "system": "http://terminology.hl7.org/CodeSystem/v2-0103",
          "code": "P",
          "display": "Production"
        } ]
      },
      "eventCoding": {
        "system": "http://terminology.hl7.org/CodeSystem/v2-0003",
        "code": "R01",
        "display": "ORU/ACK - Unsolicited transmission of an observation message"
      },
      "destination": [ {
        "name": "PRIME ReportStream",
        "endpoint": "https://prime.cdc.gov/api/reports?option=SkipInvalidItems"
      } ],
      "sender": {
        "reference": "Organization/ba33c700-adf1-43a3-9fb5-cda2c5a1b954"
      },
      "source": {
        "extension": [ {
          "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id",
          "valueString": "7a3567e"
        }, {
          "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date",
          "valueInstant": "2023-10-27T18:36:43Z"
        }, {
          "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org",
          "valueReference": {
            "reference": "Organization/07640c5d-87cd-488b-9343-a226c5166539"
          }
        } ],
        "software": "PRIME SimpleReport",
        "version": "7a3567e",
        "endpoint": "https://simplereport.gov"
      },
      "focus": [ {
        "reference": "Provenance/5065a799-471e-4e40-acb1-af65437566df"
      }, {
        "reference": "DiagnosticReport/ID12345-6759"
      } ]
    }
  }, {
    "fullUrl": "Provenance/5065a799-471e-4e40-acb1-af65437566df",
    "resource": {
      "resourceType": "Provenance",
      "id": "5065a799-471e-4e40-acb1-af65437566df",
      "recorded": "2023-10-27T19:31:09.914Z",
      "activity": {
        "coding": [ {
          "system": "http://terminology.hl7.org/CodeSystem/v2-0003",
          "code": "R01",
          "display": "ORU/ACK - Unsolicited transmission of an observation message"
        } ]
      },
      "agent": [ {
        "who": {
          "reference": "Organization/ba33c700-adf1-43a3-9fb5-cda2c5a1b954"
        }
      } ]
    }
  }, {
    "fullUrl": "DiagnosticReport/ID12345-6759",
    "resource": {
      "resourceType": "DiagnosticReport",
      "id": "ID12345-6759",
      "identifier": [ {
        "value": "ID12345-6759"
      } ],
      "basedOn": [ {
        "reference": "ServiceRequest/79280342-aa2c-49ac-83e7-b93b02b10114"
      } ],
      "status": "final",
      "code": {
        "coding": [ {
          "system": "http://loinc.org",
          "code": "94533-7"
        } ]
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "effectiveDateTime": "2021-12-20T14:00:00-05:00",
      "issued": "2021-12-20T14:00:00-05:00",
      "specimen": [ {
        "reference": "Specimen/ff8213ed-ca6f-4664-a9ff-5f352045ac97"
      } ],
      "result": [ {
        "reference": "Observation/83472769-4634-4c6d-bf18-1440cfb85718"
      } ]
    }
  }, {
    "fullUrl": "Patient/1234",
    "resource": {
      "resourceType": "Patient",
      "id": "1234",
      "extension": [ {
        "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd",
        "valueCodeableConcept": {
          "coding": [ {
            "system": "http://terminology.hl7.org/CodeSystem/v3-Race",
            "code": "2106-3"
          } ],
          "text": "White"
        }
      }, {
        "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group",
        "valueCodeableConcept": {
          "coding": [ {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0189",
            "code": "N",
            "display": "Not Hispanic or Latino"
          } ],
          "text": "Not Hispanic or Latino"
        }
      } ],
      "identifier": [ {
        "value": "1234"
      } ],
      "name": [ {
        "family": "Doe",
        "given": [ "Jane" ]
      } ],
      "telecom": [ {
        "system": "phone",
        "value": "(205) 999 2800",
        "use": "mobile"
      } ],
      "gender": "female",
      "birthDate": "1962-01-20",
      "address": [ {
        "line": [ "123 Main St" ],
        "city": "Birmingham",
        "district": "Jefferson",
        "state": "AL",
        "postalCode": "35226",
        "country": "USA"
      } ],
      "managingOrganization": {
        "reference": "Organization/ba33c700-adf1-43a3-9fb5-cda2c5a1b954"
      }
    }
  }, {
    "fullUrl": "Organization/ba33c700-adf1-43a3-9fb5-cda2c5a1b954",
    "resource": {
      "resourceType": "Organization",
      "id": "ba33c700-adf1-43a3-9fb5-cda2c5a1b954",
      "identifier": [ {
        "use": "official",
        "type": {
          "coding": [ {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0301",
            "code": "CLIA"
          } ]
        },
        "value": "01D1058442"
      } ],
      "name": "My Urgent Care",
      "telecom": [ {
        "system": "phone",
        "value": "(205) 888 2000",
        "use": "work"
      } ],
      "address": [ {
        "line": [ "400 Main Street" ],
        "city": "Birmingham",
        "state": "AL",
        "postalCode": "35228",
        "country": "USA"
      } ]
    }
  }, {
    "fullUrl": "Organization/3314d622-7b6e-4cc8-94ef-3769b63a3baa",
    "resource": {
      "resourceType": "Organization",
      "id": "3314d622-7b6e-4cc8-94ef-3769b63a3baa",
      "identifier": [ {
        "use": "official",
        "type": {
          "coding": [ {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0301",
            "code": "CLIA"
          } ]
        },
        "value": "01D1058442"
      } ],
      "name": "My Urgent Care",
      "telecom": [ {
        "system": "phone",
        "value": "(205) 888 2000",
        "use": "work"
      } ],
      "address": [ {
        "line": [ "400 Main Street", "Suite 100" ],
        "city": "Birmingham",
        "state": "AL",
        "postalCode": "35228",
        "country": "USA"
      } ]
    }
  }, {
    "fullUrl": "Practitioner/1013012657",
    "resource": {
      "resourceType": "Practitioner",
      "id": "1013012657",
      "identifier": [ {
        "system": "http://hl7.org/fhir/sid/us-npi",
        "value": "1013012657"
      } ],
      "name": [ {
        "family": "Smith MD",
        "given": [ "John" ]
      } ],
      "telecom": [ {
        "system": "phone",
        "value": "(205) 888 2000",
        "use": "work"
      } ],
      "address": [ {
        "line": [ "400 Main Street" ],
        "city": "Birmingham",
        "state": "AL",
        "postalCode": "35228",
        "country": "USA"
      } ]
    }
  }, {
    "fullUrl": "Specimen/ff8213ed-ca6f-4664-a9ff-5f352045ac97",
    "resource": {
      "resourceType": "Specimen",
      "id": "ff8213ed-ca6f-4664-a9ff-5f352045ac97",
      "identifier": [ {
        "value": "47442226-2a96-454f-a17e-09232e3bed67"
      } ],
      "type": {
        "coding": [ {
          "system": "http://snomed.info/sct",
          "code": "258529004"
        } ],
        "text": "Oropharyngeal Swab"
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "receivedTime": "2021-12-20T14:00:00-05:00",
      "collection": {
        "collectedDateTime": "2021-12-20T14:00:00-05:00"
      }
    }
  }, {
    "fullUrl": "ServiceRequest/79280342-aa2c-49ac-83e7-b93b02b10114",
    "resource": {
      "resourceType": "ServiceRequest",
      "id": "79280342-aa2c-49ac-83e7-b93b02b10114",
      "extension": [ {
        "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/order-control",
        "valueCodeableConcept": {
          "coding": [ {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0119",
            "code": "RE"
          } ]
        }
      }, {
        "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/order-effective-date",
        "valueDateTime": "2021-12-20T14:00:00-05:00"
      } ],
      "status": "completed",
      "intent": "order",
      "code": {
        "coding": [ {
          "system": "http://loinc.org",
          "code": "94533-7"
        } ]
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "requester": {
        "reference": "PractitionerRole/ae921502-7e9a-4e98-9d09-3bcf3fc2d083"
      },
      "performer": [ {
        "reference": "Organization/ba33c700-adf1-43a3-9fb5-cda2c5a1b954"
      } ],
      "supportingInfo": [ {
        "reference": "Observation/cb7b9119-f918-35b4-9168-17baef26d037"
      }, {
        "reference": "Observation/eb87c81b-d638-3f9c-9127-bca8cde6f2de"
      }, {
        "reference": "Observation/b7eb2eb3-0686-3668-9675-19d848777c82"
      }, {
        "reference": "Observation/50053847-c77c-32bd-97e8-49e12dbb707e"
      }, {
        "reference": "Observation/6502c379-ef0b-3b34-b386-b3d3ff71f389"
      }, {
        "reference": "Observation/198201c2-0231-3b87-8bd2-b0bafb3fd285"
      } ],
      "note": [ {
        "extension": [ {
          "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
          "valueCodeableConcept": {
            "coding": [ {
              "extension": [ {
                "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name",
                "valueString": "identifier"
              } ],
              "system": "HL70364",
              "version": "2.5.1",
              "code": "RE",
              "display": "Remark"
            } ]
          }
        } ],
        "text": "Test Comment"
      } ]
    }
  }, {
    "fullUrl": "Device/7d294344-a706-4723-9422-8d0b1962585e",
    "resource": {
      "resourceType": "Device",
      "id": "7d294344-a706-4723-9422-8d0b1962585e",
      "identifier": [ {
        "value": "10190302000222"
      }, {
        "type": {
          "coding": [ {
            "code": "DII"
          } ]
        }
      } ],
      "manufacturer": "UCSF Health Clinical Laboratories, UCSF Clinical Labs at China Basin",
      "deviceName": [ {
        "name": "LDT: SARS-CoV-2 RNA DETECTR Assay",
        "type": "model-name"
      } ]
    }
  }, {
    "fullUrl": "PractitionerRole/ae921502-7e9a-4e98-9d09-3bcf3fc2d083",
    "resource": {
      "resourceType": "PractitionerRole",
      "id": "ae921502-7e9a-4e98-9d09-3bcf3fc2d083",
      "practitioner": {
        "reference": "Practitioner/1013012657"
      },
      "organization": {
        "reference": "Organization/3314d622-7b6e-4cc8-94ef-3769b63a3baa"
      }
    }
  }, {
    "fullUrl": "Organization/07640c5d-87cd-488b-9343-a226c5166539",
    "resource": {
      "resourceType": "Organization",
      "id": "07640c5d-87cd-488b-9343-a226c5166539",
      "name": "SimpleReport"
    }
  }, {
    "fullUrl": "Observation/83472769-4634-4c6d-bf18-1440cfb85718",
    "resource": {
      "resourceType": "Observation",
      "id": "83472769-4634-4c6d-bf18-1440cfb85718",
      "status": "final",
      "code": {
        "coding": [ {
          "system": "http://loinc.org",
          "code": "94533-7"
        } ],
        "text": "COVID-19"
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "issued": "2021-12-20T19:00:00.000Z",
      "performer": [ {
        "reference": "Organization/ba33c700-adf1-43a3-9fb5-cda2c5a1b954"
      } ],
      "valueCodeableConcept": {
        "coding": [ {
          "system": "http://snomed.info/sct",
          "code": "260373001",
          "display": "Detected"
        } ]
      },
      "interpretation": [ {
        "coding": [ {
          "system": "http://terminology.hl7.org/CodeSystem/v2-0078",
          "code": "A",
          "display": "Abnormal"
        } ]
      } ],
      "method": {
        "extension": [ {
          "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/testkit-name-id",
          "valueCoding": {
            "code": "SARS-CoV-2 RNA DETECTR Assay_UCSF Health Clinical Laboratories, UCSF Clinical Labs at China Basin"
          }
        } ],
        "coding": [ {
          "display": "LDT: SARS-CoV-2 RNA DETECTR Assay"
        } ]
      },
      "specimen": {
        "reference": "Specimen/ff8213ed-ca6f-4664-a9ff-5f352045ac97"
      },
      "device": {
        "reference": "Device/7d294344-a706-4723-9422-8d0b1962585e"
      }
    }
  }, {
    "fullUrl": "Observation/cb7b9119-f918-35b4-9168-17baef26d037",
    "resource": {
      "resourceType": "Observation",
      "id": "cb7b9119-f918-35b4-9168-17baef26d037",
      "identifier": [ {
        "use": "official",
        "type": {
          "coding": [ {
            "system": "http://loinc.org",
            "code": "81959-9",
            "display": "Public health laboratory ask at order entry panel"
          } ]
        }
      } ],
      "status": "final",
      "code": {
        "coding": [ {
          "system": "http://loinc.org",
          "code": "95419-8",
          "display": "Has symptoms related to condition of interest"
        } ],
        "text": "Has symptoms related to condition of interest"
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "valueCodeableConcept": {
        "coding": [ {
          "system": "http://terminology.hl7.org/ValueSet/v2-0136",
          "code": "N",
          "display": "No"
        } ]
      }
    }
  }, {
    "fullUrl": "Observation/eb87c81b-d638-3f9c-9127-bca8cde6f2de",
    "resource": {
      "resourceType": "Observation",
      "id": "eb87c81b-d638-3f9c-9127-bca8cde6f2de",
      "identifier": [ {
        "use": "official",
        "type": {
          "coding": [ {
            "system": "http://loinc.org",
            "code": "81959-9",
            "display": "Public health laboratory ask at order entry panel"
          } ]
        }
      } ],
      "status": "final",
      "code": {
        "coding": [ {
          "system": "http://loinc.org",
          "code": "82810-3",
          "display": "Pregnancy status"
        } ],
        "text": "Pregnancy status"
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "valueCodeableConcept": {
        "coding": [ {
          "system": "http://snomed.info/sct",
          "code": "60001007",
          "display": "Not pregnant"
        } ]
      }
    }
  }, {
    "fullUrl": "Observation/b7eb2eb3-0686-3668-9675-19d848777c82",
    "resource": {
      "resourceType": "Observation",
      "id": "b7eb2eb3-0686-3668-9675-19d848777c82",
      "identifier": [ {
        "use": "official",
        "type": {
          "coding": [ {
            "system": "http://loinc.org",
            "code": "81959-9",
            "display": "Public health laboratory ask at order entry panel"
          } ]
        }
      } ],
      "status": "final",
      "code": {
        "coding": [ {
          "system": "http://loinc.org",
          "code": "95418-0",
          "display": "Employed in a healthcare setting"
        } ],
        "text": "Employed in a healthcare setting"
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "valueCodeableConcept": {
        "coding": [ {
          "system": "http://terminology.hl7.org/ValueSet/v2-0136",
          "code": "N",
          "display": "No"
        } ]
      }
    }
  }, {
    "fullUrl": "Observation/50053847-c77c-32bd-97e8-49e12dbb707e",
    "resource": {
      "resourceType": "Observation",
      "id": "50053847-c77c-32bd-97e8-49e12dbb707e",
      "identifier": [ {
        "use": "official",
        "type": {
          "coding": [ {
            "system": "http://loinc.org",
            "code": "81959-9",
            "display": "Public health laboratory ask at order entry panel"
          } ]
        }
      } ],
      "status": "final",
      "code": {
        "coding": [ {
          "system": "http://loinc.org",
          "code": "77974-4",
          "display": "Hospitalized for condition"
        } ],
        "text": "Hospitalized for condition"
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "valueCodeableConcept": {
        "coding": [ {
          "system": "http://terminology.hl7.org/ValueSet/v2-0136",
          "code": "N",
          "display": "No"
        } ]
      }
    }
  }, {
    "fullUrl": "Observation/6502c379-ef0b-3b34-b386-b3d3ff71f389",
    "resource": {
      "resourceType": "Observation",
      "id": "6502c379-ef0b-3b34-b386-b3d3ff71f389",
      "identifier": [ {
        "use": "official",
        "type": {
          "coding": [ {
            "system": "http://loinc.org",
            "code": "81959-9",
            "display": "Public health laboratory ask at order entry panel"
          } ]
        }
      } ],
      "status": "final",
      "code": {
        "coding": [ {
          "system": "http://loinc.org",
          "code": "95420-6",
          "display": "Admitted to ICU for condition"
        } ],
        "text": "Admitted to ICU for condition"
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "valueCodeableConcept": {
        "coding": [ {
          "system": "http://terminology.hl7.org/ValueSet/v2-0136",
          "code": "N",
          "display": "No"
        } ]
      }
    }
  }, {
    "fullUrl": "Observation/198201c2-0231-3b87-8bd2-b0bafb3fd285",
    "resource": {
      "resourceType": "Observation",
      "id": "198201c2-0231-3b87-8bd2-b0bafb3fd285",
      "identifier": [ {
        "use": "official",
        "type": {
          "coding": [ {
            "system": "http://loinc.org",
            "code": "81959-9",
            "display": "Public health laboratory ask at order entry panel"
          } ]
        }
      } ],
      "status": "final",
      "code": {
        "coding": [ {
          "system": "http://loinc.org",
          "code": "95421-4",
          "display": "Resides in a congregate care setting"
        } ],
        "text": "Resides in a congregate care setting"
      },
      "subject": {
        "reference": "Patient/1234"
      },
      "valueCodeableConcept": {
        "coding": [ {
          "system": "http://terminology.hl7.org/ValueSet/v2-0136",
          "code": "N",
          "display": "No"
        } ]
      }
    }
  } ]
}

@fzhao99 fzhao99 temporarily deployed to dev7 October 25, 2023 19:39 — with GitHub Actions Inactive
@fzhao99 fzhao99 temporarily deployed to dev7 October 25, 2023 19:48 — with GitHub Actions Inactive
@fzhao99 fzhao99 force-pushed the bob/6642-add-equipment-uid-type-to-fhir branch from cda1e81 to af0f533 Compare October 27, 2023 13:31
@sonarqubecloud
Copy link

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

100.0% 100.0% Coverage
0.0% 0.0% Duplication

@fzhao99 fzhao99 marked this pull request as ready for review October 27, 2023 19:38
fzhao99

This comment was marked as duplicate.

@@ -135,7 +135,7 @@ public class DeviceTypeSyncService {

public String extractSpecimenTypeCode(String specimenDescription) {
Pattern specimenCode = Pattern.compile("^(.*?)\\^");
return extractSpecimenDetails(specimenDescription, specimenCode);
return extractSpecimenDetails(specimenDescription, specimenCode).strip();
Copy link
Contributor Author

@fzhao99 fzhao99 Oct 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We needed to run a device sync to put the equipment UID type into our dev 2 db, but turns out there was an extra white space char in one of the specimen types coming from the LIVD API that was blowing up the sync (since that field requires number-only values)

Screenshot 2023-10-27 at 3 45 13 PM

Adding this here to protect against it, but lmk if we want to make this more robust / if we should follow up with RS

Copy link
Contributor

@BobanL BobanL left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Copy link
Collaborator

@emyl3 emyl3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work!!

@fzhao99 fzhao99 added this pull request to the merge queue Oct 30, 2023
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Oct 30, 2023
@fzhao99 fzhao99 added this pull request to the merge queue Oct 30, 2023
Merged via the queue into main with commit 2cf88cd Oct 30, 2023
32 checks passed
@fzhao99 fzhao99 deleted the bob/6642-add-equipment-uid-type-to-fhir branch October 30, 2023 17:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add equipment UID type to FHIR bundles
3 participants