New patient with Minimum Information Required

Use Case

Albert Einstein has returned to England after spending many years abroad. Albert has changed his name several times and can't remember any addresses he had in England. He does remember being in hospital as a child in Devon.

Amy Armstrong tries several Queries using some of the names Albert has used over the years but she can find no record for Albert. She decides to allocate an NHS Number and completes the on screen record with the mandatory information that Albert provides, address, telephone, name, gender, date of birth.

Table View

Patient.id[0]Patient-RegistrationAlbertEinsteinMinimal-Example
Patient.meta[0].profile[0]https://fhir.nhs.uk/England/StructureDefinition/England-Patient-PDS
Patient.text[0].status[0]additional
Patient.text[0].div[0]<div xmlns="http://www.w3.org/1999/xhtml">Albert Einstein has returned to England after spending many years abroad. Albert has changed his name several times and can't remember any addresses he had in England. He does remember being in hospital as a child in Devon.<br /><br /> Amy Armstrong tries several Queries using some of the names Albert has used over the years but she can find no record for Albert. She decides to allocate an NHS Number and completes the on screen record with the mandatory information that Albert provides, address, telephone, name, gender, date of birth.</div>
Patient.name[0].use[0]official
Patient.name[0].family[0]Einstein
Patient.name[0].given[0]Albert
Patient.gender[0]male
Patient.birthDate[0]1879-03-14
Patient.address[0].use[0]home
Patient.address[0].line[0]35 Market St
Patient.address[0].line[1]Kirkby Stephen
Patient.address[0].line[2]Cumbria
Patient.address[0].postalCode[0]CA17 4QN

Tree View

Patient

XML View

<Patient xmlns="http://hl7.org/fhir">
    <id value="Patient-RegistrationAlbertEinsteinMinimal-Example" />
    <meta>
        <profile value="https://fhir.nhs.uk/England/StructureDefinition/England-Patient-PDS" />
    </meta>
    <text>
        <status value="additional" />
        --- We have skipped the narrative for better readability of the resource ---
    </text>
    <name>
        <use value="official" />
        <family value="Einstein" />
        <given value="Albert" />
    </name>
    <gender value="male" />
    <birthDate value="1879-03-14" />
    <address>
        <use value="home" />
        <line value="35 Market St" />
        <line value="Kirkby Stephen" />
        <line value="Cumbria" />
        <postalCode value="CA17 4QN" />
    </address>
</Patient>

JSON View

{
    "resourceType": "Patient",
    "id": "Patient-RegistrationAlbertEinsteinMinimal-Example",
    "text": {
        "status": "additional",
        --- We have skipped the narrative for better readability of the resource ---
    },
    "meta": {
        "profile":  [
            "https://fhir.nhs.uk/England/StructureDefinition/England-Patient-PDS"
        ]
    },
    "name":  [
        {
            "use": "official",
            "family": "Einstein",
            "given":  [
                "Albert"
            ]
        }
    ],
    "gender": "male",
    "birthDate": "1879-03-14",
    "address":  [
        {
            "use": "home",
            "line":  [
                "35 Market St",
                "Kirkby Stephen",
                "Cumbria"
            ],
            "postalCode": "CA17 4QN"
        }
    ]
}