--- title: Module Pendaftaran Pasien tags: fhir-module-id satu-sehat disqus: victoriatjia --- Module Pendaftaran Pasien === ###### tags: `fhir-module-id` `satu-sehat` ## Table of Contents [TOC] ## Pendahuluan Informasi data pasien ## Specs Data Format ### 1. [FHIR Patient](https://www.hl7.org/fhir/patient.html) #### 1.1. Deskripsi Informasi data pasien #### 1.2. Spesifikasi data format -> [link](https://github.com/victoriatjia/Guideline/blob/master/SatuSehat/Specs%20Format%20FHIR/custom/Patient.xlsx) #### 1.3. Scenario <table> <tr> <td><b>Scenario 1</b></td> <td>Identifikasi pasien</td> </tr> </table> **Example SC1**: Hannah Mid Vlixie https://hapi.fhir.org/baseR4/Patient/7058523 ```gherkin= { "resourceType": "Patient", "id": "7058523", "extension": [ { "url": "https://fhir.kemkes.go.id/r4/StructureDefinition/birthPlace", "valueAddress": { "city": "Jakarta", "country": "ID" } } ], "identifier": [ { "use": "official", "type": { "coding": [ { "system": "http://tzuchihospital.co.id/cs/identifier", "code": "BIO_RowId" } ] }, "value": "8" }, { "use": "usual", "type": { "coding": [ { "system": "http://tzuchihospital.co.id/cs/identifier", "code": "BIO_MRNo" } ] }, "value": "0000000101" }, { "use": "official", "system": "https://fhir.kemkes.go.id/id/nik", "value": "123" } ], "active": true, "name": [ { "use": "official", "text": "Hannah Mid Vlixie", "family": "Vlixie", "given": [ "Hannah", "Mid" ] } ], "telecom": [ { "system": "phone", "value": "087720061996", "use": "mobile" }, { "system": "email", "value": "hannah@gmail.com", "use": "home" } ], "gender": "female", "birthDate": "1999-01-01", "deceasedBoolean": false, "address": [ { "extension": [ { "url": null, "extension": [ { "url": "province", "valueCode": "DKI Jakarta" }, { "url": "city", "valueCode": "Jakarta Barat" }, { "url": "district", "valueCode": "Cengkareng Timur" }, { "url": "village", "valueCode": "Cengkareng" }, { "url": "rt", "valueCode": "1" }, { "url": "rw", "valueCode": "2" } ] } ], "use": "home", "line": [ "Jl. Lingkar Luar Kamal Raya (Outer Ring Road)", "Perumahan Cinta Kasih Tzu Chi" ], "city": "Jakarta", "postalCode": "12950", "country": "ID" } ], "maritalStatus": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married" } ], "text": "Married" }, "communication": [ { "language": { "coding": [ { "code": "id", "display": "Indonesian" } ], "text": "Indonesian" }, "preferred": true } ], "managingOrganization": { "reference": "Organization/tch" } } ``` ---