Patient Resource
Demographic and administrative details regarding an individual receiving care.
JSON Payload / FHIR R4 Standard
{
"resourceType": "Patient",
"id": "example-01",
"meta": { "versionId": "1", "lastUpdated": "2026-07-15T09:30:00Z" },
"active": true,
"identifier": [{
"use": "official",
"system": "http://hospital.org/mrn",
"value": "MRN12345678"
}],
"name": [{
"use": "official",
"family": "Doe",
"given": ["John", "Middle"]
}],
"telecom": [{ "system": "phone", "value": "+919642373173", "use": "mobile" }],
"gender": "male",
"birthDate": "1985-04-12",
"address": [{
"line": ["123 Main Street"],
"city": "Hyderabad",
"state": "Telangana",
"postalCode": "500081",
"country": "IND"
}]
}
Field Property Breakdown
| Property Key | Type | Description |
|---|---|---|
| identifier | Identifier[] | Business identifiers (e.g., Medical Record Number, National ID). |
| name | HumanName[] | Official, nickname, or maiden name elements (family, given). |
| telecom | ContactPoint[] | Contact details including phone numbers and email addresses. |