FHIR © HL7.org  |  FHIRsmith 4.0.1  |  Server Home  |  XIG Home  |  XIG Stats  | 

FHIR IG analytics

Packagehie-fhir-ig-profile
Resource TypePatient
IdPatient-HIEPatient-example.json
FHIR VersionR4B

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

Note: links and images are rebased to the (stated) source

Patient Summary

NameJane Patient
IdentifierMRN-12345 (http://example.org/mrn)
Activetrue
Genderfemale
Date of birth1990-04-05
Marital statusMarried
Managing organizationAcme Health Center (Organization/org-001)
General practitionerDr. John Clinician (HIEPractitioner/pr-001)

Telecom

  • Phone, mobile, rank 1: +254700000001
  • Email, home: jane.patient@example.org

Contacts

NameRelationshipTelecomOrganization
Mary PatientMother+254700000002 (mobile)Acme Health Center (Organization/org-001)

Communication

  • Language: English, preferred

Links

  • Refer: Patient/p-duplicate-001 (Duplicate index record)

Source1

{
  "resourceType": "Patient",
  "id": "HIEPatient-example",
  "meta": {
    "profile": [
      "https://nshr.dha.go.ke/fhir/StructureDefinition/patient"
    ]
  },
  "text": {
    "status": "generated",
    "div": "<!-- snip (see above) -->"
  },
  "identifier": [
    {
      "use": "official",
      "type": {
        "coding": [
          {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code": "MR",
            "display": "Medical record number"
          }
        ]
      },
      "system": "http://example.org/mrn",
      "value": "MRN-12345"
    }
  ],
  "active": true,
  "name": [
    {
      "use": "official",
      "text": "Jane Patient",
      "family": "Patient",
      "given": [
        "Jane"
      ]
    }
  ],
  "telecom": [
    {
      "system": "phone",
      "value": "+254700000001",
      "use": "mobile",
      "rank": 1
    },
    {
      "system": "email",
      "value": "jane.patient@example.org",
      "use": "home"
    }
  ],
  "gender": "female",
  "birthDate": "1990-04-05",
  "maritalStatus": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
        "code": "M",
        "display": "Married"
      }
    ]
  },
  "contact": [
    {
      "relationship": [
        {
          "coding": [
            {
              "system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
              "code": "MTH",
              "display": "Mother"
            }
          ]
        }
      ],
      "name": {
        "text": "Mary Patient"
      },
      "telecom": [
        {
          "system": "phone",
          "value": "+254700000002",
          "use": "mobile"
        }
      ],
      "organization": {
        "reference": "Organization/org-001",
        "display": "Acme Health Center"
      }
    }
  ],
  "communication": [
    {
      "language": {
        "coding": [
          {
            "system": "urn:ietf:bcp:47",
            "code": "en",
            "display": "English"
          }
        ]
      },
      "preferred": true
    }
  ],
  "generalPractitioner": [
    {
      "reference": "HIEPractitioner/pr-001",
      "display": "Dr. John Clinician"
    }
  ],
  "managingOrganization": {
    "reference": "Organization/org-001",
    "display": "Acme Health Center"
  },
  "link": [
    {
      "other": {
        "reference": "Patient/p-duplicate-001",
        "display": "Duplicate index record"
      },
      "type": "refer"
    }
  ]
}