Description: Patient Demographics.
Reference: Patient in FHIR specification.
Supported Profiles:
| Name | Type | Required | Description |
|---|---|---|---|
| _count | number | False | Number of resources to return. |
| _id | string | False | Logical id of the Patient. |
| birthdate | date | False | Patient's date of birth. |
| family | string | False | The individual's last name. |
| gender | string | False | Gender |
| given | string | False | The individual's first name. |
| identifier | token | False | The identifier for the Patient. |
| name | string | False | The individual's first or last name. |
* See Date Search for more information on searching by date.
Sample Request:
GET https://greathospital.com:8100/r4/sites/123/Patient?name=BISHOP&birthdate=1956
Sample Request:
GET https://greathospital.com:8100/r4/sites/123/Patient/1
Sample Request:
POST https://greathospital.com:8100/r4/sites/123/Patient
Body:
{
"resour%ceType": "Patient",
"text": {
"status": "generated",
"div": "<p><b>Patient</b></p><p><b>Name</b>: TROUBLE, Tom</p><p><b>Gender</b>: Male</p> <p><b>BirthDate</b>:1965-08-18</p><p><b>Identifiers</b>:</p><p><b>Medical record number</b>: MRN-JPVABCD</p> <p><b>Communication:</b></p><p><b>Primary Language</b>: Spanish</p> <p><b>Care Providers:</b></p>"
},
"extension": [{
"url": "http://hl7.org/fhir/StructureDefinition/us-core-ethnicity",
"valueCodeableConcept": {
"coding": [{
"system": "http://hl7.org/fhir/v3/Ethnicity",
"code": "2186-5",
"display": "Not Hispanic or Latino"
}],
"text": "Not Hispanic or Latino"
}
}],
"identifier": [{
"type": {
"coding": [{
"system": "http://hl7.org/fhir/v2/0203",
"code": "MR"
}],
"text": "Medical record number"
},
"value": "MRN-JPVABCD99"
}],
"name": [{
"use": "usual",
"family": [
"TROUBLE99"
],
"given": [
"Tom"
],
"text": "TROUBLE, Tom"
}],
"gender": "male",
"birthDate": "1965-08-18",
"communication": [{
"language": {
"text": "Spanish"
},
"preferred": true
}]
}
Sample Request:
DELETE https://greathospital.com:8100/r4/sites/123/Patient/1
Sample Request:
PUT https://greathospital.com:8100/r4/sites/123/Patient