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

Capture patient's mother's maiden name and religion #109

Closed
cragun47 opened this issue Jun 17, 2021 · 1 comment
Closed

Capture patient's mother's maiden name and religion #109

cragun47 opened this issue Jun 17, 2021 · 1 comment
Assignees
Labels
enhancement New feature or request FIXED

Comments

@cragun47
Copy link
Contributor

cragun47 commented Jun 17, 2021

Describe the bug
Create FHIR Patient.extension.patient-mothersMaidenName (well-known extension) from PID-6.1

Create FHIR Patient.extension.patient-religion (well-known extension) from PID-17, use coding in table 0006

To Reproduce
Create a sample HL7V2.6 patient PID segment with aforementioned patient information.

Expected behavior
Patient information should be detected and added to corresponding fields in HL7 FHIR resources.

Example FHIR for mother's maiden name:

extension": [
 {
    "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
    "valueString": "BEILY"
 }

Example FHIR for religion:

      "extension": [ {
        "url": "http://hl7.org/fhir/StructureDefinition/patient-religion",
        "valueCodeableConcept": {
          "coding": [ {
            "system": "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation",
            "code": "1028",
            "display": "Lutheran"
          } ],
          "text": "Lutheran"
        }
      }

Additional context
Religion in HL7 V2.6 is from table 0006. It does not have a perfect correlation to FHIR extension for religion Map clear matches from V2.6 to FHIR, but be conservative in a first pass, and unclear matches should be left unmatched.

@cragun47 cragun47 self-assigned this Jun 17, 2021
@LisaWellman LisaWellman added the enhancement New feature or request label Jun 17, 2021
@LisaWellman LisaWellman changed the title Capture patient's mother's maiden name. Capture patient's mother's maiden name and religion Jun 29, 2021
@LisaWellman
Copy link
Collaborator

In Release 1.0.9

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request FIXED
Projects
None yet
Development

No branches or pull requests

2 participants