For a complete reference and usage of the Patient resource, please visit https://www.hl7.org/fhir/patient.html
Identifiers
The id found at the root of the Patient object is an internal identifier known as the Resource ID and is auto-generated by the FHIR server when a record is created. This Resource ID is used to reference a specific record and does not change. All other identifiers, such as Medical Record Numbers, are listed in the identifier property of the Patient object. A patient can have multiple identifiers to identify the patient across different systems.
Search
We support all search parameters defined by the FHIR specification for Patient resources.
Finding a patient by MRN
https://fhir.docsink.com/baseDstu3/Patient?subject=238943
{
"resourceType": "Patient",
"identifier": [
{
"system": "urn:oid:2.16.840.1.113883.3.7742",
"value": "238943"
}
],
"name": [
{
"family": "McFly",
"given": [
"Marty"
]
}
],
"telecom": [
{
"system": "phone",
"value": "4523894563"
}
],
"gender": "male",
"birthDate": "1985-11-05",
"address": [
{
"line": [
"1098 Time St."
],
"city": "Hill Valley",
"state": "California",
"postalCode": "75614",
"country": "USA"
}
]
}