---
title: 3.2. Register Healthcare Facility Location Structure
code: fhir-tutorial fhir-tutorial-en3
tags: fhir-project-ig
---
# Register Healthcare Facility Location Structure
## Table of Contents
[TOC]
## Introduction
## Scope
The FHIR Location can be used to describe data in different scenario as seen below:
<table>
<tr>
<td><b>Scenario 1</b></td>
<td>Specialty Clinic Location</td>
</tr>
</table>
## Data Specification
The column SC1, SC2, ..., SCn refers to the mandatory field status in each scenario mentioned in [Scope](https://hackmd.io/qb-3lk2WTLqGTw2zgCiC_Q?both#Scope) part.
| NO | VARIABLE | DATA TYPE | SC1 |DEFINITION | NOTES |
|-|-|-|-|-|-|
| 1 | Location.identifier | [Identifier](https://hl7.org/fhir/datatypes.html#Identifier) | R | Dapat diisi dengan informasi terkait kode/nomor internal lokasi yang dimiliki oleh organisasi | |
| 2 | Location.status | [code](https://hl7.org/fhir/datatypes.html#code) | R | Status lokasi | |
| 3 | Location.name | [string](https://hl7.org/fhir/datatypes.html#string) | R | Nama lokasi | |
| 4 | Location.managingOrganization | Reference(Organization) | O | Nama Department dari lokasi (Apabila ada) | |
| 5 | Location.physicalType | [CodeableConcept](https://hl7.org/fhir/datatypes.html#code) | R | Tipe fisik lokasi | [https://hl7.org/fhir/valueset-location-physical-type.html](https://hl7.org/fhir/valueset-location-physical-type.html) |
## Payload
:::spoiler [Example SC1-1: Lokasi klinik spesialis pulmonologi di lobby](https://hapi.fhir.org/baseR4/Location/6c2b79ce-c78c-4ef6-bd43-0eaf4bbe9ef8)
JSON example
```gherkin=
{
"resourceType": "Location",
"id": "6c2b79ce-c78c-4ef6-bd43-0eaf4bbe9ef8",
"meta": {
"versionId": "1",
"lastUpdated": "2023-02-21T11:06:26.513+00:00",
"source": "#pv4mdSoYQzKBTrdg"
},
"identifier": [ {
"system": "DEPT_RowId",
"value": "50"
}, {
"system": "DEPT_Code",
"value": "TCHTB"
} ],
"status": "active",
"name": "Pulmonology TB Clinic (Lobby)",
"managingOrganization": {
"reference": "Organization/9f436ce4-f176-4f5d-8ea0-664fbca07f52"
}
}
```
:::
<br>
**Example SC1-2**: Lokasi klinik spesialis kulit di lt. 5
[Public server API](https://hapi.fhir.org/baseR4/Location/5d47b02b-3c89-4845-bf64-b364851bef61)