Appointment Form
FHIR: Appointment
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"
}]
}