Patient Registration
FHIR: Patient
FHIR Patient Resource
This form generates a valid FHIR R4 Patient resource. Upon saving, you can inspect the raw JSON via the FHIR API.
{
"resourceType": "Patient",
"id": "<uuid>",
"name": [{
"use": "official",
"family": "Smith",
"given": ["John"]
}],
"gender": "male",
"birthDate": "1990-05-20",
"telecom": [{
"system": "phone",
"value": "+61 400 000 000"
}]
}