# patient

Pengiriman data kesehatan memerlukan identitas pasien berupa Nomor SATUSEHAT Pasien atau `{patient-ihs-number}` dari pasien yang bersangkutan, yang dapat diperoleh dari ***Master Patient Index*****&#x20;(MPI) Kementerian Kesehatan**.

**Master Patient Index (MPI)** menyimpan data-data demografi pasien berskala nasional, mulai dari nama, tanggal lahir, alamat, IDentitas resmi yang diterbitkan pemerintah, dan lain lain.

Setiap fasyankes dapat memperoleh Nomor SATUSEHAT Pasien dan kemudian menyimpan data tersebut pada sistem internal fasyankes maupun partner non-Fasyankes.&#x20;

Berikut pemetaan nilai untuk [Patient](https://simplifier.net/guide/SATUSEHAT-FHIR-R4-Implementation-Guide/Home/FHIRProfiles/Patient.page.md?version=current) yang direpresentasikan dalam peta referensi *(path)* ke properti *(element id)* terkait, untuk konteks data pasien:

## \*Patient.identifier\[i] <a href="#patient-identifier" id="patient-identifier"></a>

Berisi satu atau lebih daftar data mengenai informasi terkait kode atau nomor pasien yang dimiliki oleh lokasi induk yang setiap datanya direpresentasikan dengan tipe data `Identifier`.

<table><thead><tr><th width="405">Elemen</th><th>Nilai Elemen</th></tr></thead><tbody><tr><td><h4 id="observation-identifier-use">Patient.identifier[i].use</h4></td><td>Berisi data dengan tipe data <code>code</code>, yang nilainya mengacu pada data terminologi <a href="http://hl7.org/fhir/identifier-use">IdentifierUse</a>.</td></tr><tr><td>Patient.identifier[i].system</td><td><a href="https://fhir.kemkes.go.id/id/patient-ihs-number">https://fhir.kemkes.go.id/id/patient-ihs-number</a></td></tr><tr><td>Patient.identifier[i].value</td><td>Berisi kode atau nomor pasien.</td></tr></tbody></table>

### Patient.identifier\[i].use

| Code      | Display   | Definition                                                                                                                                                                                                                                           |
| --------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| usual     | Usual     | The identifier recommended for display and use in real-world interactions which should be used when such identifier is different from the "official" identifier.                                                                                     |
| official  | Official  | The identifier considered to be most trusted for the identification of this item. Sometimes also known as "primary" and "main". The determination of "official" is subjective and implementation guides often provide additional guidelines for use. |
| temp      | Temp      | A temporary identifier.                                                                                                                                                                                                                              |
| secondary | Secondary | An identifier that was assigned in secondary use - it serves to identify the object in a relative context, but cannot be consistently assigned to the same object again in a different context.                                                      |
| old       | Old       | The identifier id no longer considered valid, but may be relevant for search purposes. E.g. Changes to identifier schemes, account merges, etc.                                                                                                      |

{% code title="Contoh JSON" %}

```json
[
  {
    "use": "official",
    "system": "https://fhir.kemkes.go.id/id/nik",
    "value": "################"
  }
]

```

{% endcode %}

## \*Patient.name\[i] <a href="#patient-name" id="patient-name"></a>

Berisi satu atau lebih daftar data mengenai nama pasien dengan tipe data [`HumanName`](https://www.hl7.org/fhir/datatypes.html#HumanName).

| Elemen                | Nilai Elemen                                               |
| --------------------- | ---------------------------------------------------------- |
| Patient.name\[i].use  | Berisi data nama pasien dengan tipe data `code`.           |
| Patient.name\[i].text | Berisi data nama lengkap pasien dengan tipe data `string`. |

<pre class="language-json" data-title="Contoh JSON"><code class="lang-json"><strong>[
</strong>  {
    "use": "official",
    "text": "John Smith"
  }
]
</code></pre>

### Patient.telecom\[i] <a href="#patient-telecom" id="patient-telecom"></a>

Berisi satu atau lebih detail kontak untuk individu dengan tipe data `ContactPoint`.

{% code title="Contoh JSON" %}

```json
[
  {
    "system": "phone",
    "value": "08123456789",
    "use": "mobile"
  }
]
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dokumentasisatusehat-stg.dto.kemkes.go.id/resource-and-terminologi/daftar-resources-and-terminologi/patient.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
