--- title: Modul Pendaftaran Kunjungan Pasien (Book Appointment) tags: fhir-module-id satu-sehat disqus: victoriatjia --- Modul Pendaftaran Kunjungan Pasien (Book Appointment) === ###### tags: `fhir-module-id` `satu-sehat` ## Table of Contents [TOC] ## Pendahuluan Bookingan appointment pasien ## Specs Data Format ### 1. [FHIR Appointment](https://www.hl7.org/fhir/appointment.html) #### 1.1. Deskripsi Bookingan appointment pasien #### 1.2. Spesifikasi data format -> [link](https://github.com/victoriatjia/Guideline/blob/master/SatuSehat/Specs%20Format%20FHIR/custom/Appointment.xlsx) #### 1.3. Scenario <table> <tr> <td><b>Scenario 1</b></td> <td>Booking konsul rawat jalan</td> </tr> </table> **Example SC1**: Booking ke [Slot/7046233](https://hapi.fhir.org/baseR4/Slot/7046233) https://hapi.fhir.org/baseR4/Appointment/7058530 ```gherkin= { "resourceType": "Appointment", "id": "7058530", "meta": { "versionId": "1", "lastUpdated": "2022-11-09T19:27:34.086+00:00", "source": "#gt2en5Ra0Ct8MjIv" }, "identifier": [ { "system": "APP_RowId", "value": "643||22732||1" }, { "system": "APP_QueueNo", "value": "5" }, { "system": "QNumber", "value": "93505" } ], "status": "booked", "appointmentType": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v2-0276", "code": "935", "display": "Appointment" } ] }, "slot": [ { "reference": "Slot/7046233" } ], "created": "2022-11-09T08:00:00+07:00", "participant": [ { "actor": { "reference": "Patient/7058523", "display": "Hannah Mid Vlixie" } } ] } ``` ---