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

Book Appointment

Creates a FHIR R4 Appointment resource.

Appointment Form FHIR: Appointment
FHIR: participant[].actor.reference
FHIR: start
FHIR: status
FHIR: reasonCode[].text
FHIR: comment
Cancel
FHIR Appointment Resource

Appointments are linked to patients via reference. Service type is coded with SNOMED CT AU 408467006 (Dentistry).

{
  "resourceType": "Appointment",
  "status": "booked",
  "serviceType": [{
    "coding": [{
      "system": "http://snomed.info/sct",
      "code": "408467006",
      "display": "Dentistry"
    }]
  }],
  "start": "2026-03-25T10:00:00Z",
  "participant": [{
    "actor": {
      "reference": "Patient/<id>"
    },
    "status": "accepted"
  }]
}