US Core Patient — line by line
Patient is the anchor of every clinical workflow. US Core requires identifier, name, gender, and Must-Supports race, ethnicity, birth sex, and more.
Patient is the subject reference for almost every other resource. Get this one right and the rest of US Core falls into place.
Required (min: 1)
- identifier — at least one. Each identifier carries a
system(the namespace, e.g. an MRN URL) and avalue. Many real Patients have several: MRN, SSN, driver's license, payer member ID. - name — at least one HumanName with
familyorgiven. - gender — administrative gender:
male | female | other | unknown. This is not clinical sex or gender identity.
Must Support
- birthDate, telecom, address, communication.language
- Race, Ethnicity, Birth Sex, Gender Identity (all extensions — see next lesson)
- Previous Name, Suffix
The "two names" pattern
US Core supports a current legal name and previous names. Use name.use:
official— the legal nameusual— what they go byold— a previous name (withperiod.endset)
{
"resourceType": "Patient",
"id": "amy-shaw",
"meta": {
"profile": [
"http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"
]
},
"extension": [
{
"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
"extension": [
{
"url": "ombCategory",
"valueCoding": {
"system": "urn:oid:2.16.840.1.113883.6.238",
"code": "2106-3",
"display": "White"
}
},
{
"url": "text",
"valueString": "White"
}
]
},
{
"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
"extension": [
{
"url": "ombCategory",
"valueCoding": {
"system": "urn:oid:2.16.840.1.113883.6.238",
"code": "2186-5",
"display": "Not Hispanic or Latino"
}
},
{
"url": "text",
"valueString": "Not Hispanic or Latino"
}
]
},
{
"url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
"valueCode": "F"
}
],
"identifier": [
{
"use": "usual",
"system": "http://hospital.example.org/mrn",
"value": "1032702"
}
],
"name": [
{
"use": "official",
"family": "Shaw",
"given": [
"Amy",
"V."
]
}
],
"telecom": [
{
"system": "phone",
"value": "555-555-1212",
"use": "home"
}
],
"gender": "female",
"birthDate": "1987-02-20",
"address": [
{
"line": [
"49 Meadow St"
],
"city": "Mounds",
"state": "OK",
"postalCode": "74047",
"country": "US"
}
],
"communication": [
{
"language": {
"coding": [
{
"system": "urn:ietf:bcp:47",
"code": "en",
"display": "English"
}
]
}
}
]
}