Created
August 26, 2025 09:25
-
-
Save brianraila/d54ed279157e48498d635676df050518 to your computer and use it in GitHub Desktop.
S
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "resourceType": "Patient", | |
| "id": "patient-kisumu-001", | |
| "identifier": [ | |
| { | |
| "system": "https://hie.kisumu.go.ke/IdentifierSystem/PASSPORT", | |
| "value": "123456" | |
| } | |
| ], | |
| "name": [ | |
| { | |
| "use": "official", | |
| "family": "Odhiambo", | |
| "given": ["Agnes", "Achieng"] | |
| } | |
| ], | |
| "birthDate": "2002-06-07", | |
| "telecom": [ | |
| { | |
| "system": "phone", | |
| "value": "+254712345678", | |
| "use": "mobile" | |
| } | |
| ], | |
| "managingOrganization": { | |
| "reference": "Organization/IntellisoftKisumuClinic", | |
| "display": "Intellisoft Kisumu Clinic" | |
| }, | |
| "contact": [ | |
| { | |
| "relationship": [ | |
| { | |
| "coding": [ | |
| { | |
| "system": "http://terminology.hl7.org/CodeSystem/v2-0131", | |
| "code": "E", | |
| "display": "Emergency Contact" | |
| } | |
| ] | |
| } | |
| ], | |
| "name": { | |
| "use": "official", | |
| "family": "Achieng", | |
| "given": ["Mary"] | |
| }, | |
| "telecom": [ | |
| { | |
| "system": "phone", | |
| "value": "+254711112222", | |
| "use": "mobile" | |
| } | |
| ], | |
| "address": { | |
| "use": "home", | |
| "text": "Kisumu City, Kenya", | |
| "city": "Kisumu", | |
| "state": "Kisumu County", | |
| "country": "KE" | |
| } | |
| } | |
| ], | |
| "maritalStatus": { | |
| "coding": [ | |
| { | |
| "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", | |
| "code": "S", | |
| "display": "Never Married" | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment