DentaFHIR HL7 FHIR R4 · Australian Clinical Standards
SNOMED CT AU  ·  ICD-10-AM  ·  ADA CDT
Back to Patients

Register New Patient

Creates a FHIR R4 Patient resource upon submission.

Patient Registration FHIR: Patient
FHIR: name[0].given
FHIR: name[0].family
FHIR: birthDate
FHIR: gender
FHIR: telecom[system=phone]
FHIR: telecom[system=email]
FHIR: address[0].text
Cancel
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"
  }]
}